Last active
November 12, 2024 13:41
-
-
Save raresteak/5492054e350bab76cde28f28ffda46f5 to your computer and use it in GitHub Desktop.
Install and configure PowerShell Web Access
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install-windowsfeature -name WindowsPowerShellWebAccess -computername server1 -includemanagementtools -restart | |
install-pswawebapplication -usetestcertificate | |
add-pswaauthorizationrule -username * -computername * -configurationname * | |
set-item wsman:\localhost\Client\TrustedHosts -Value 'localhost,server1,10.10.10.1' -force | |
enable-psremoting -force | |
# Goto URL https://localhost/pswa | |
# Login username format | |
# localhost\theuser |
Potential fix for error https://learn.microsoft.com/en-us/answers/questions/1523303/err-ssl-key-usage-incompatible
didn't work for me
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
MS Edge produces error when going to https://thesite
ERR_SSL_KEY_USAGE_INCOMPATIBLE
I just used Firefox instead.