I have this wonderful script:
gci -Recurse| where {$_.LastWriteTime -gt (Get-Date).AddDays(-45)}| group Extension -NoElement
The output is:
4352 .JPG
2352 .doc
2135 .pdf
1811 .xls
1472
857 .pub
732 .xlsx
565 .docx
66 .rtf
64 .lnk
63 .ppt
61 .url
41 .png
38 .xml
28 .htm
27 .msg
what I would like is this same script to be run on every directory of the current directory (non recursive). for example if i am in directory c:\test, and that directory as the folder alex, liza, and harry, then i want this script to be applied to c:\test\alex, c:\test\liza, c:\test\harry
The output that I would want would be:
4352 .JPG directory name
2352 .doc directory name
2135 .pdf directory name
1811 .xls directory name
1472 directory name
857 .pub directory name
732 .xlsx directory name
565 .docx directory name
How can I modify the above script to do this for every directory and append the directory name?