我需要能够在另一台服务器上运行命令。此脚本充当在实际服务器上运行的另一个脚本的引导程序。这在同一域上的服务器上效果很好,但是如果我需要在远程服务器上运行这个脚本,我需要指定凭据。
该命令从 Msbuild 目标文件中启动,如下所示:
<Target Name="PreDeployment" Condition="true" BeforeTargets="MSDeployPublish">
<Exec Command="powershell.exe -ExecutionPolicy Bypass invoke-command bootstrapScript.ps1 -computername $(MyServer) -argumentlist param1, param2" />
</Target>
但是,我需要能够通过创建一个带有安全密码的新 PSCredentials 对象来提供凭据,以便我的部署脚本在远程服务器上运行:
<Target Name="PreDeployment" Condition="true" BeforeTargets="MSDeployPublish">
<Exec Command="powershell.exe -ExecutionPolicy Bypass invoke-command bootstrapScript.ps1 -computername $(MyServer) -credential New-Object System.Management.Automation.PSCredential ('admin', (convertto-securestring $(Password) -asplaintext -force)) -argumentlist param1, param2" />
</Target>
当我运行构建时,会弹出一个对话框,用户名设置为 System.Management.Automation.PSCredential。我需要能够在可执行目标上创建内联凭据。我该如何做到这一点?