我正在尝试使用带有参数的PowerShell命令执行WSF脚本文件,但无法使其工作。
我试图使用的powershell脚本失败的是:
$rSession = New-PSSession -ComputerName server01
Invoke-Command -ScriptBlock { cscript "\\server1\filepath\script.wsf ARGUMEMT" ; return $LastExitCode} -Session $rSession
Remove-PSSession $rSession
现在,如果我使用参数运行上面的PowerShell脚本,脚本将按预期执行此外,如果我只是在cmd.exe中使用参数运行Cscript部分,它也可以按预期工作。
在尝试通过powershell使用参数调用WSF文件时,我对错误做了什么?
谢谢,
菲尔