Powershell in NonInteractive mode

前端 未结 2 1339
一个人的身影
一个人的身影 2021-02-12 05:39

I use Octopus for our deployments. I have a problem with one of the Powershell scripts to control the deployment:

# stops running processes
$processes = @(\"Note         


        
2条回答
  •  离开以前
    2021-02-12 06:12

    Run with -Force:

    Stop-Process -InputObject $prc -ErrorAction SilentlyContinue -Force

    As C.B. suggested in the comment: -confirm:$false should also work. Rationale for this is as follows: -Confirm is a switch parameter. Switch parameters can only take arguments if you specify the parameter with a trailing colon and a value.

提交回复
热议问题