Лучший способ настроить PSRemoting - через групповую политику.Вам необходимо настроить следующие параметры.
Настройка прослушивателя:
/Computer Configuration
/Administrative Templates
/Windows Components
/Windows Remote Management (WinRM)
/WinRM Service
/Allow remote server management through WinRM
- Enabled
- IPv4 filter: *
Настройка правил брандмауэра:
/Computer Configuration
/WindowsSettings
/Security Settings
/Windows Firewall with Advanced Security
/Inbound Rules
- Type: Port
- Protocol: TCP
- Port: 5985
- Allow the connection
- Profile: Domain
/Outbound Rules
- Type: Port
- Protocol: TCP
- Port: 5985
- Allow the connection
- Profile: Domain
Настройка службы:
/Computer Configuration
/WindowsSettings
/Security Settings
/System Services
/Windows Remote Management (WS-Management)
- Startup mode: Automatic
> Define this policy setting
- Service name: WinRM
- Service action: Start Service
- Set all Recovery tab actions: Restart the Service
После настройки политики WinRM должен быть в рабочем состоянии.Вы можете проверить, что удаленное взаимодействие работает, используя следующее:
# this tests against the FQDN
Test-WSMan -ComputerName [Net.Dns]::GetHostEntry($Env:COMPUTERNAME).HostName