Summary: Learn how to display your Windows PowerShell Help in a new window.
How can I keep my Windows PowerShell Help open so I can look at it while I am trying my new code?
Use the ShowWindow parameter. It will open a new window that contains your Help and allow you to move it ...
Summary: Ed Wilson, Microsoft Scripting Guy, talks about Windows PowerShell 5 classes in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. It is an interesting morning. We are up early, looking around, and trying to decide if the latest tropical storm is going to become a hurricane...and if it is going to hit or miss Florida.Of course, ...
Summary: Learn how to use Windows PowerShell to retrieve the last token and avoid retyping. I used Get-Process to view a process I launched, and later I wanted to stop the process. How can I do this without doing a lot of typing or creating new variables? The $$ automatic ...
Summary: Microsoft Scripting Guy, Ed Wilson, presents a video where he recaps his blog posts about Windows PowerShell 5.0 enums.Microsoft Scripting Guy, Ed Wilson, is here. Today I decided to make a video to summarize my technique for working with enums in Windows PowerShell 5.0 in Windows 10.Note For more information, refer to New ...
Summary: Learn how to easily find specific Help articles with Windows PowerShell.
How can I use Windows PowerShell to find a Help article about automatic variables, if I am not sure of the title?
Use the Get-Help cmdlet and begin with about_ , then press Tab expansion. It will cycle through matches.  ...