Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Count Types of Photos

$
0
0

Summary: Use Windows PowerShell to count the different types of photo files on your computer.

Hey, Scripting Guy! Question How can I use Windows PowerShell to figure out how many of each type of photo file I have on my computer?

Hey, Scripting Guy! Answer Use the Get-ChildItem cmdlet to retrieve specific types of photograph files, and then pipe the results to the 
          Group-Object cmdlet, group on the Extension property, and use the –NoElement switch to remove
           individual file information:

Get-ChildItem -Recurse -Include *.jpg, *.cr2, *.png, *.bmp -Path e:\ | Group-Object extension -NoElement


Viewing all articles
Browse latest Browse all 3333

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>