The “Hey, Scripting Guys!” blog has been retired. There are many useful posts in this blog, so we keep the blog here for historical reference. However, some information might be very outdated and many of the links might not work anymore.
New PowerShell content is being posted to the PowerShell Community blog where members of the community can create posts by submitting content in the GitHub repository.
Summary: PowerShell MVP, Mike F Robbins, discusses case sensitivity in Windows PowerShell.
Microsoft Scripting Guy, Ed Wilson, is here. Welcome back guest blogger, Mike Robbins.
(image)
Mike F Robbins is a Microsoft MVP for Windows PowerShell and a SAPIEN Technologies MVP. He is a co-author of Windows PowerShell TFM 4th Edition, and is a ...
Summary: Use Windows PowerShell to replace non-alphabetic characters in a string.(image) How can I use Windows PowerShell to replace a string that contains non-alphabetic characters (such as commas and periods)?(image) Use the –Replace operator, and specify a regex pattern&...
Summary: Ed Wilson, Microsoft Scripting Guy, talks about identifying palindromes that are more than a single word.Microsoft Scripting Guy, Ed Wilson, is here. One of the coolest things about palindromes is that they can be formed with sentences. It is also what makes them the most subtle. For example, whereas it is pretty obvious that mom, dad...
Summary: Ed Wilson, Microsoft Scripting Guy, talks about using Windows PowerShell to find palindromes.
Microsoft Scripting Guy, Ed Wilson, is here. I enjoy playing around with words. I like words that sound similar to each other, such as to, too, and two. I also like words that look alike, and sound alike but have different meanings depending ...
Summary: Use Windows PowerShell to display ASCII characters.
(image) How can I use Windows PowerShell to quickly display printable ASCII characters when I am not connected to the Internet?
(image) Use the range operator to create a range of numbers 1 through 128, pipe it to Foreach-...