Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

PowerTip: Use PowerShell to Mount ISO Image

Summary: Learn how to use Windows PowerShell to mount ISO images. (image)  How can I use Windows PowerShell to mount an ISO image so I can see what it contains? (image)  Use the Mount-DiskImage cmdlet and specify a path to the ISO file, for example: Mount-DiskImage -ImagePath C:\Data\...

Reverse Strings with PowerShell

Summary: Ed Wilson, Microsoft Scripting Guy, talks about using Windows PowerShell to reverse strings.(image)  Hey, Scripting Guy! I am working with Windows PowerShell, and I need to reverse a string. I am surprised there is no reverse method in the string class. It seems like a major oversight. Anyway, can you show me how to do this ...