我正在尝试使用PowerShell脚本运行具有管理员权限的perl脚本。 我的PowerShell脚本具有以下命令:
start-process powershell -verb runas "perl script" -RedirectStandardError D:\testscripts\stderror.log -RedirectStandardoutput D:\testscripts\stdopt.log
当我运行其中包含上述命令的.ps1脚本时。我收到以下错误...
Start-Process:无法使用指定的参数集解析 命名参数。
请建议我..
答案 0 :(得分:0)
试试这个:
start-process perl script.pl -RedirectStandardError "D:\testscripts\stderror.log" -RedirectStandardoutput "D:\testscripts\stdopt.log"