我目前面临着以另一个用户身份运行.exe的问题。我在Internet上遵循了文档和所有给定的建议,但是仍然无法以带有参数的其他用户身份成功运行它。
需要一些有关如何解决此问题的建议。我正在使用Powershell v4。非常感谢帮助。谢谢。
$username = 'wintel\approveduser'
$password = 'password123'
$securePassword = ConvertTo-SecureString $password -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential $username, $securePassword
Start-Process -FilePath D:\testing\CICD.exe -Credential $credential -ArgumentList "-i -b CICDbranch -m Release -r -f $currentPath\Release\export.zip" -RedirectStandardOutput ".\stdout.txt"