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: Learn how to use Windows PowerShell to display registry keys.
(image) How can I use Windows PowerShell to provide a list of registry keys that I can filter, instead of using Regedit to search?
(image) Use the Get-ItemProperty cmdlet and point it to a specific registry hive. The following command looks for  ...
Summary: Learn how to use Windows PowerShell to install modules on your system.
(image) How can I use Windows PowerShell to roll out a new set of modules that are used extensively in my organization?
(image) When Windows PowerShell 5.0 is available, you can use PowerShellGet against an internal repository &...
Summary: Richard Siddaway shows how to complete the registry CDXML module.
Honorary Scripting Guy, Richard Siddaway, here today filling in for my good friend, The Scripting Guy. This is the final post in a series. To catch up, read:
So far, you’ve seen how to create a CDXML module with a single cmdlet based on the GetStringValue...
Summary: Learn how to override the modules you have imported into your Windows PowerShell session.
(image) How can I re-load the Windows PowerShell module that I am developing so I can test the changes at each stage of development?
(image) By default, if you have a module loaded into to your...
Summary: Richard Siddaway shows some advanced features in CDXML.
Honorary Scripting Guy, Richard Siddaway, here today filling in for my good friend, The Scripting Guy. This is the third post in a series. To catch up, read:
Yesterday, you saw that you can create a Windows PowerShell cmdlet from the StdRegProv CIM class by using CDXML, ...