连接远程服务器,并执行脚本

问题描述:

我尝试连接远程服务器,并使用此PowerShell命令连接远程服务器,并执行脚本

Invoke-Command -ComputerName \\srvwebui3 -ScriptBlock { 
    Get-Process | Where-Object { 
     $_.Path -like "\\abd\net$\abd\versions\Bin\HttpServer.exe" 
    } | Stop-Process 
} 

它停止的过程,但我得到了执行它之后此错误消息:

Invoke-Command : One or more computer names is not valid. If you are trying to 
pass a Uri, use the -ConnectionUri parameter or pass Uri objects instead of 
strings. 
At C:\powerShell\stop-process.ps1:4 char:15 
+ Invoke-Command <<<< -ComputerName \\srvwebui3 -ScriptBlock { Get-Process | Where-Object {$_.Path -like "\\gaia\netlims$\Autolims\MainRls\Bin\HttpServer.exe"} | Stop-Process } 
    + CategoryInfo   : InvalidArgument: (System.String[]:String[]) [Invoke-Command], ArgumentException 
    + FullyQualifiedErrorId : PSSessionInvalidComputerName,Microsoft.PowerShell.Commands.InvokeCommandCommand
+1

从计算机名称中删除前导反斜杠。 –

这里有一个PowerShell代码的工作:

Invoke-Command -ComputerName <computerName> -ScriptBlock { 
    Get-Process | Where-Object { 
      $_.Path -like \\bbb\abab$\bs\MainRls\Bin\HttpServer.exe" 
    } | 
    Stop-Process -Force 
}