Last active
September 12, 2024 03:12
-
-
Save willwm/e740f694cf0876d701bc671d4a110d6e to your computer and use it in GitHub Desktop.
Includes fix for "WinRM firewall exception will not work since one of the network connection types on this machine is set to Public."
This file contains 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
# https://4sysops.com/archives/enabling-powershell-remoting-fails-due-to-public-network-connection-type/#changing-the-network-connection-type-with-powershell | |
Set-NetConnectionProfile -NetworkCategory Private | |
Enable-PSRemoting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to: Enabling PowerShell remoting fails due to Public network connection type – 4sysops