Start-Process未运行

时间:2016-07-27 14:12:00

标签: powershell start-process

我一直在尝试重新编写以下PowerShell代码,因为我需要它等到完成之后继续执行所以假设使用-Wait的Start-Process就足够了但是我似乎无法让它实际运行。 ..

原始代码有效,但在继续使用脚本之前不会等到它完成。

function ZipAndDeleteFile([string] $file, [string] $saveLocation)
{
    Start-Process -FilePath $winrarPath -ArgumentList "a -ep -df $saveLocation $file" -Wait
}

我重写的尝试没有按预期运行,到目前为止没有任何作用......

position: absolute

1 个答案:

答案 0 :(得分:0)

修正以下内容......知道这是愚蠢的事。

Start-Process -FilePath $winrarPath -ArgumentList "a -ep -df `"$saveLocation`" `"$file`"" -Wait