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: Find out information about where a Windows PowerShell command comes from by looking at the module information.
(image) I need to find out who authored a cmdlet. How do I go about finding out this information?
(image) The first thing you need to do is to find the module that supplies the cmdlet. You can use the ...
Summary: Guest bloggers Microsoft PFEs Adam Haynes and Shubert Somer continue their .NET Framework Essentials post by talking about assemblies.
Microsoft Scripting Guy, Ed Wilson, is here. Today is part 4 of a 5-part series written by guest blogger Adam Haynes with help from his friend Shubert Somer. You will want to go back and read part 1, ...
Summary: Use a Windows PowerShell cmdlet to find all enabled Group Policy objects in an Active Directory domain.
(image) How can I easily find all enabled Group Policy objects in an Active Directory domain?
(image) Use the Get-Gpo cmdlet, specify the domain, and use the –all switch. Pipe the resulting...
Summary: Guest bloggers Microsoft PFEs Adam Haynes and Shubert Somer talk about using .NET Framework enumerations with Active Directory.
Microsoft Scripting Guy, Ed Wilson, is here. Today is part 3 of a 5-part series by guest blogger Adam Haynes with help along the way from his friend Shubert Somer. You will want to go back to read part 1 and ...
Summary: Use a Windows 8 cmdlet to detect Secure Boot policy.
(image) How can I check my Secure Boot policy on Windows 8?
(image) Use the Get-SecureBootPolicy cmdlet. This cmdlet must run with Admin rights. If your computer does not support Secure Boot, an error returns.
(image...