Showing results for remoting - Scripting Blog [archived]

Nov 28, 2013
0
0

PowerTip: Remove PowerShell Web Access Authorization Rules

Doctor Scripto Doctor Scripto

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

Windows PowerShellscripting techniquesPowerTip
Nov 28, 2013
0
0

Remoting Week: Remoting Security

Doctor Scripto Doctor Scripto

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

Windows PowerShellscripting techniquesRichard Siddaway
Nov 27, 2013
0
0

PowerTip: Use PowerShell to Discover Certificate Thumbprints

Doctor Scripto Doctor Scripto

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

Windows PowerShellscripting techniquesPowerTip
Nov 27, 2013
0
0

Remoting Week: Configuring Remoting

Doctor Scripto Doctor Scripto

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

Windows PowerShellscripting techniquesRichard Siddaway
Nov 26, 2013
0
0

PowerTip: Determine Version of WSMAN on Remote Computer

Doctor Scripto Doctor Scripto

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

Windows PowerShellscripting techniquesPowerTip

Feedback