PowerShell 命令 Start-Process 未在远程执行
PowerShell command Start-Process not getting executed on remote
我有下面的 PowerShell
脚本,它 运行 在 windows server 2019
的节点上形成 Jenkins
(它假设 运行 deploy
sql server
):
$Username = $args[0]
$Password = $args[1]
$Env= $args[2]
$pass = ConvertTo-SecureString -AsPlainText $Password -Force
$Cred = New-Object System.Management.Automation.PSCredential -ArgumentList $Username,$pass
echo "******** Start SQL Deploy ********"
echo "----- B4 Start-Process Powershell.exe -----"
Start-Process -FilePath "msbuild" -ArgumentList '"Database Services\Database Services.sqlproj"','/t:deploy','/p:Configuration=Release','/p:TargetConnectionString=$Env','/p:BlockOnPossibleDataLoss=True','/p:TargetDatabase="test"','-fl','-flp:logfile=msbuild.log' -wait -LoadUserProfile -credential $cred
echo "----- After Start-Process Powershell.exe -----"
我的输出是:
******** Start SQL Deploy ********
----- B4 Start-Process Powershell.exe -----
----- After Start-Process Powershell.exe -----
我们可以清楚地看到Start-Process
没有被执行。
重要的是说它在本地对我有用,只有当我开始使用 node
工作时,它才开始发生。
我在 jenkins 论坛上看到类似的问题,但没有人对此发表评论:
JENKINS-63978
我有下面的 PowerShell
脚本,它 运行 在 windows server 2019
的节点上形成 Jenkins
(它假设 运行 deploy
sql server
):
$Username = $args[0]
$Password = $args[1]
$Env= $args[2]
$pass = ConvertTo-SecureString -AsPlainText $Password -Force
$Cred = New-Object System.Management.Automation.PSCredential -ArgumentList $Username,$pass
echo "******** Start SQL Deploy ********"
echo "----- B4 Start-Process Powershell.exe -----"
Start-Process -FilePath "msbuild" -ArgumentList '"Database Services\Database Services.sqlproj"','/t:deploy','/p:Configuration=Release','/p:TargetConnectionString=$Env','/p:BlockOnPossibleDataLoss=True','/p:TargetDatabase="test"','-fl','-flp:logfile=msbuild.log' -wait -LoadUserProfile -credential $cred
echo "----- After Start-Process Powershell.exe -----"
我的输出是:
******** Start SQL Deploy ********
----- B4 Start-Process Powershell.exe -----
----- After Start-Process Powershell.exe -----
我们可以清楚地看到Start-Process
没有被执行。
重要的是说它在本地对我有用,只有当我开始使用 node
工作时,它才开始发生。
我在 jenkins 论坛上看到类似的问题,但没有人对此发表评论: JENKINS-63978