From cfdf6f5bfab56806b63b9a5ebaefaa2cdceb0537 Mon Sep 17 00:00:00 2001 From: NiceDevil Date: Tue, 19 Dec 2023 09:51:59 +0000 Subject: [PATCH] Delete Windows/WinRM/install.md --- Windows/WinRM/install.md | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Windows/WinRM/install.md diff --git a/Windows/WinRM/install.md b/Windows/WinRM/install.md deleted file mode 100644 index d38bff7..0000000 --- a/Windows/WinRM/install.md +++ /dev/null @@ -1,16 +0,0 @@ -# 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-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 -``` \ No newline at end of file