Summary: Learn how to remove Windows PowerShell Web Access authorization rules. How can I remove Windows PowerShell Web Access authorization rules that are no longer required? If you can identify the rule, use Remove-PswaAuthorizationRule from the PowerShellWebAccess module:Remove-PswaAuthorizationRule -Id 1~or~...
Summary: Richard Siddaway explains how to secure Windows PowerShell remoting sessions.
Hey, Scripting Guy! I’ve just starting learning Windows PowerShell, and I understand how to use it as a scripting language and shell on the local machine. How do I work with remote machines?
—AP
Hello AP,
Honorary Scripting Guy, ...
Summary: Use Windows PowerShell to discover certificate thumbprints. How can I use Windows PowerShell to discover the thumbprints of certificates that are installed on my machine? Interrogate the certificate store, which is exposed as the cert: drive:Get-ChildItem -Path cert: -Recurse | select Subject, FriendlyName, ...
Summary: Richard Siddaway explains how to configure remoting.
Hey, Scripting Guy! I’ve just starting learning WindowsPowerShell, and I understand how to use it as a scripting language and shell on the local machine. How do I work with remote machines?
—AP
Hello AP,
Honorary Scripting Guy, Richard Siddaway, here today ...
Summary: Use Windows PowerShell to determine the version of WSMAN running on a remote computer. How can I use Windows PowerShell to determine the version of WSMAN that is running on remote computers? Use Test-WSMAN:Test-WSMan -ComputerName myserverwsmid : ...