我有一个.ps1文件,需要在管理模式下运行才能工作。但不幸的是,我找不到使用詹金斯的方法。目前我正在jenkins上执行批处理命令中运行此powershell命令,其中包含所有可能的选项。但它不起作用。
通过Jenkins用Invoke-Command
执行它。
Invoke-command -FilePath Script.ps1
以“执行powershell步骤”调用
$arg = "-file C:\filename.ps1"
start-process powershell -verb runas –argumentlist $arg