Showing results for March 2015 - Page 5 of 12 - Scripting Blog [archived]

Mar 21, 2015
0
0

PowerTip: Use PowerShell to Count Types of Images

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to count different types of image files.  How can I use Windows PowerShell to see a count of the different types of image files on my computer?  Use the Get-ChildItem cmdlet to find the image files and then pipe the results to the Group-Object cmdlet,           &...

Scripting Guy!Windows PowerShellPowerTip
Mar 21, 2015
0
1

PSImaging Part 3: Group-ImageFile

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Ben Vierck, talks about grouping similar images with Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. Today we have Ben Vierck back for Part 3 in his series about images. Before you begin, you might like to read: In first two blog posts of this series, we wrote the Windows PowerShell functions Test-Image ...

Scripting Guy!Windows PowerShellguest blogger
Mar 20, 2015
0
0

PowerTip: Use PowerShell to Count Images

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to count images.  How can I use Windows PowerShell to count images on a drive?  Use the Get-ChildItem cmdlet, specify the path, and send the results to the Measure-Object cmdlet,            for example: dir -Recurse -ea 0 -File -path e:\data -in...

Scripting Guy!Windows PowerShellPowerTip
Mar 20, 2015
1
0

PSImaging Part 2: Export-Text from Images

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Ben Vierck, talks about using Windows PowerShell to export text from an image. Microsoft Scripting Guy, Ed Wilson, is here. Welcome back guest blogger Ben Vierck, for Part 2 of PSImaging. Read Part 1 before diving into today’s post: PSImaging Part 1: Test-Image. Now, here’s Ben... In first blog post of this serie...

Scripting Guy!Windows PowerShellguest blogger
Mar 19, 2015
0
0

PowerTip: Read .exe Magic Number with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to see an .exe magic number.  How can I use Windows PowerShell to see the "magic number" associated with an executable file in Windows?  The term magic number refers to the bytes that occur at the beginning of every file and identify the format of file.         &nb...

Scripting Guy!Windows PowerShellPowerTip