如何运行具有不同凭据的.exe文件?

时间:2015-07-24 09:32:29

标签: powershell credentials

我使用了以下代码,但它给出了一个错误,例如“找不到文件”。 如果我删除了最后一个-Credential ($credentials)部分代码正常工作。

任何人都可以提出解决方案吗?

$username = "abcd"
$password = "dcab"

$credentials = New-Object System.Management.Automation.PSCredential -ArgumentList @($username,(ConvertTo-SecureString -String $password -AsPlainText -Force))

Start-Process CopyApplication.exe -WorkingDirectory "G:\abcd\CopyApplication\CopyApplication\bin\Debug" -Credential ($credentials)

0 个答案:

没有答案