Scripting Blog

A place to learn about PowerShell and share stories of automation

PowerTip: Find Current Runspaces in PowerShell

Summary: Boe Prox shows how to find the current runspaces in Windows PowerShell.  How can I list all of the currently running runspaces in Windows PowerShell? Use the Get-Runspace cmdlet in Windows PowerShell 5.0:Get-RunspaceId Name      ComputerName    Type      State...

Beginning Use of PowerShell Runspaces: Part 1

Summary: Boe Prox presents some tips about beginning use with runspaces.Honorary Scripting Guy and Cloud and Datacenter Management MVP, Boe Prox, here today filling in for my good friend, The Scripting Guy.Note   This is a four-part series that includes the following posts: Let's say you are working in ...

Weekend Scripter: Report on Network Level Authentication

Summary: Boe Prox shows how to use Windows PowerShell to report on Network Level Authentication.Honorary Scripting Guy and Windows PowerShell MVP, Boe Prox, here today filling in for my good friend, The Scripting Guy. I plan to spend this Sunday showing you how you can report on whether your systems are enabled for Network Level ...

PowerTip: View All Available Modules

Summary: Boe Prox shows how to view all available modules in Windows PowerShell. How can I view all of the available modules in my current Windows PowerShell session? Run Get-Module with the –ListAvailable parameter:Get-Module –ListAvailable...