局域网内开启ps登录windows功能
Enable-PSRemoting -Force //设置信任的机器ip地址,* 表示全部 set-item wsman:\localhost\Client\TrustedHosts -value * //添加批量ip信任列表,中间以逗号隔开 winrm set winrm/config/client '@{TrustedHosts="127.0.0.0,192.168.1.1"}' //客户端连接命令 Enter-PSSession -ComputerName <ip> -Credential <user>