我正在尝试连接到远程计算机(Windows Server 2012 R2)并从那里运行PowerShell脚本。
我尝试的方法是:
public void RunPowerShell()
{
try
{
var proce = Process.Start(@"\\{theRemoteMachine}\\c$\Windows\System32\WindowsPowerShell\v1.0\powershell.exe", @"\\{theRemoteMachine}\\c$\tes.ps1");
}
catch (Exception ex)
{
throw;
}
}
我没有收到任何错误,但是脚本也没有运行。
*当我直接从计算机上运行脚本时,它会按预期运行。 *
我已经尝试过此解决方案,但是它对我不起作用... How to execute process on remote machine, in C#