无法使用Powershell远程执行EXE

时间:2017-08-22 17:11:46

标签: powershell powershell-remoting

备份服务器上有一个exe文件“Backupsrv”C:\Program files\Veritas\NetBackup\bin\admincmd\bpdbjobs.exe

当我使用PowerShell在“Backupsrv”上运行此exe时,它在控制台上提供了一些输出

& "C:\Program Files\Veritas\netbackup\bin\admincmd\bpdbjobs.exe" -all_columns

现在我尝试使用Invoke-Command远程从应用程序服务器运行此exe,如下所示。

$result = Invoke-Command -ComputerName "backupsrv" -Credential $cred -ErrorAction Stop -ScriptBlock {
    & "C:\Program Files\Veritas\netbackup\bin\admincmd\bpdbjobs.exe" -all_columns
}

无结果远程执行时。

enter image description here

exe正在执行但没有给出任何结果。

0 个答案:

没有答案