标签: c# winrm
我有一个使用winrm连接到其他计算机的c#应用程序。 为了使它工作,我需要运行powershell命令:
Set-Item WSMan:\localhost\Client\TrustedHosts -Value $ip -Force
或winrm命令:
winrm set winrm/config/client '@{TrustedHosts="10.0.5.35"}'
我想知道c#中的等价物是什么?