Azure – Start-Process : This command cannot be run due to the error: Access is denied
I am trying to start NodeJS package from Azure DevOps with a inline powershell script. Here is the script I've setup on Azure DevOps : $backendFolder = "C:pathtobackend" $nodejsExecutable = "C:Program Filesnodejs" Set-location $backendFolder Start-Process -FilePath $nodejsExecutable -ArgumentList "run","build" -wait…