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 launch an item from the Control Panel.
(image) How can I use Windows PowerShell to launch the Mail item on the Control Panel in Windows 8 or Windows Server 2012?
(image) Use the Get-ControlPanelItem with a wildcard character to retrieve the item, then pipe the ...
Summary: Microsoft Scripting Guy, Ed Wilson, shows how to configure Windows PowerShell to return more than one instance of a command.
(image) Hey, Scripting Guy! I have a problem. I recently upgraded to Windows 8, and now it seems that the Get-Command cmdlet does not work properly. In the past, I have used Get-Command as a ...
Summary: See a list of items found in Control Panel.
(image) How can I use Windows PowerShell to see a list of items found in Control Panel.
(image) Use the Get-ControlPanelItem cmdlet:
Get-ControlPanelItem
(image...
Summary: Microsoft Scripting Guy, Ed Wilson, talks about how to configure Windows PowerShell memory availability for specialized applications.
(image) Hey, Scripting Guy! I really need your help. We are doing something that perhaps Windows PowerShell cannot do. At least, this is the way it seems. We have a huge file share, and we are ...
Summary: Reload your Windows PowerShell profile without closing and reopening Windows PowerShell.
(image) How can I reload my Windows PowerShell profile to test some changes I made—without closing and reopening Windows PowerShell?
(image) Use the invocation operator with the automatic $profile variable:
& $...