17 lines
779 B
Markdown
17 lines
779 B
Markdown
# Enable WinRM on PC
|
|
|
|
Make sure your ethernet is connected to a non public network type.
|
|
Windows 11 => open Settings => Network & Internet => Ethernet => switch to Private Network
|
|
|
|
# Powershell commands (run as Administrator)
|
|
|
|
```powershell
|
|
Set-NetConnectionProfile -InterfaceAlias Ethernet -NetworkCategory "Private"
|
|
Set-Service WinRM -StartupType Automatic -PassThru
|
|
Start-Service WinRM -PassThru
|
|
winrm quickconfig
|
|
Set-Item WSMan:\localhost\Client\TrustedHosts -Value '10.0.0.0'
|
|
$c=New-SelfSignedCertificate -DnsName "10.0.0.0" -CertStoreLocation cert:\LocalMachine\My
|
|
netsh advfirewall firewall add rule name="WinRM-HTTP" dir=in localport=5985 protocol=TCP action=allow
|
|
netsh advfirewall firewall add rule name="WinRM-HTTPS" dir=in localport=5986 protocol=TCP action=allow
|
|
``` |