Showing results for Boe Prox - Scripting Blog [archived]

Nov 26, 2015
0
0

PowerTip: Find Current Runspaces in PowerShell

Doctor Scripto
Doctor Scripto

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  ...

Scripting Guy!Windows PowerShellPowerTip
Nov 26, 2015
0
0

Beginning Use of PowerShell Runspaces: Part 1

Doctor Scripto
Doctor Scripto

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 PowerShell and yo...

Scripting Guy!Windows PowerShellguest blogger
Nov 22, 2015
0
0

PowerTip: Find Expiring Certificates by Using PowerShell

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows how you can find certificates that are expiring.  How can I find if I have any certificates on my system that are expiring within 30 days?  Use the ExpiringInDays dynamic parameter when working with the certificate provider, for example: Get-ChildItem Cert:\LocalMachine\My\ -ExpiringInDays 30 | Select-Obj...

Scripting Guy!Windows PowerShellPowerTip
Nov 22, 2015
0
0

Weekend Scripter: Report on Network Level Authentication

Doctor Scripto
Doctor Scripto

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 Authentication. By...

Scripting Guy!Windows PowerShellguest blogger
Aug 12, 2015
0
0

PowerTip: View All Available Modules

Doctor Scripto
Doctor Scripto

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

Scripting Guy!Windows PowerShellPowerTip