web-dev-qa-db-ja.com

PowerShellコマンド内のチームシティからPsexecを使用してリモートでbatファイルを実行する方法

TeamCityで実行するPowerShellコマンドがあります。この.psファイルのpsexecを使用してリモートでバッチファイルを実行しようとすると、リモート実行が開始されると何も起こりません。私は複数のフォーラムで議論されたいくつかの方法を試しましたが、役に立ちませんでした。

Main.ps

Invoke-Command -ScriptBlock {C:\PSInstall.bat}

PSInstall.bat

C:\Tools\psexec.exe -i -d "\\server2" -u "domain\admin" -p "abcd" -f -w cmd "C:\Install.bat"

私のビルドログ:

[11:32:02]C:\BuildAgent\work\603cfc01a3fe22bb\Tools>C:\Tools\psexec.exe -i -d "\\server2" -u "domain\admin" -p "abcd" -f -w cmd "C:\Install.bat" 
[11:32:02]
[11:32:02]PsExec v1.98 - Execute processes remotely
[11:32:02]Copyright (C) 2001-2010 Mark Russinovich
[11:32:02]PsExec executes a program on a remote system, where remotely executed console
[11:32:02]Sysinternals - www.sysinternals.com
[11:32:02]applications execute interactively.

私は何が起こっているのか手掛かりがなく、この時点で行き詰まっています。どんな助けも高く評価されます。すでにリモートマシンでEULAを設定しています。

7
user158537

例で指定したPsExecコマンド/引数の形式が正しくありません。代わりに次のコマンドを試してください:

C:\Tools\PsExec.exe \\server2 -u "domain\admin" -p "abcd" "C:\Install.bat" -i -d -f -w

また、私が以前に書いたものを改造した例と一緒にすべてをまとめます。 PSExecRetry.logにはPsExecの出力(エラーを含む)が含まれますが、後続のコマンドのStdOut/StdErr出力はそのままキャプチャされません。

PSExecRetry.ps1は、基本的な再試行ロジックを含むPowerShellスクリプトです。

#PSExecRetry.ps1

$LogFile = "PSExecRetry.log"
$defaultSleepSecs = 3
$RetryCount = 3
$StopLoop = $false
$retries = 1

try {
    # open the log file
    Start-Transcript -path $LogFile -append
    do {
        try
        {
            $Command = "C:\PSInstall.bat"
            Write-Host "Executing command" $Command ".`r"
            Invoke-Expression -Command $Command

            if ($LastExitcode -ne 0)
            {
                throw "Retry {0} of {1}" -f $retries, $RetryCount
            }
            else
            {
                $StopLoop = $true
            }
        }
        catch
        {
            if ($retries -gt $RetryCount)
            {
                Write-Host("Exception.Message={0}; InvocationInfo.ScriptName={1}" -f $_.Exception.Message, $_.InvocationInfo.ScriptName)
                Write-Host("Giving up after {0} retries.`r" -f $RetryCount)
                $StopLoop = $true
            }
            else
            {
                Write-Host("Exception.Message={0}; InvocationInfo.ScriptName={1}" -f $_.Exception.Message, $_.InvocationInfo.ScriptName)
                Write-Host("Exception, retrying in {0} seconds.`r" -f $defaultSleepSecs)
                Start-Sleep -Seconds $defaultSleepSecs
                $retries = $retries + 1        
            }
        }
    } While ($StopLoop -eq $false)
}
catch
{
    Write-Host("Exception.Message={0}; InvocationInfo.ScriptName={1}" -f $_.Exception.Message, $_.InvocationInfo.ScriptName)
}
finally
{
    Stop-Transcript
}

PSInstall.cmdは次のように変更されます。

#PSInstall.cmd

C:\PsExec.exe \\server2 -u "domain\admin" -p "abcd" "C:\Install.bat" -i -d -f -w

Install.batスタブ:

#Install.bat

echo Hello world!
1
ab77