Logging output from PsExec started from powershell

1.2k Views Asked by At

I'm starting PsExec from powershell which works fine. All great. But i can't get it to log anything. It creates a file which is empty.

$InstallerFolder = "\\dc01\e"
$Domain = "domain"
$DomainUser = "admin"
$Password = "password"



$nodes = Get-Content "$InstallerFolder\Side-Scripts\nodes.txt"

foreach ($node in $nodes) {
$Arguments = @()
$Arguments += "\\$node"
$Arguments += "-u"
$Arguments += "$Domain\$DomainUser"
$Arguments += "-p"
$Arguments += "$Password"
$Arguments += "-h"
$Arguments += "`"$InstallerFolder\Side-Scripts\start.bat`""
$Arguments += ">>`"$InstallerFolder\logs\$node.txt`""
$Arguments += "-n"
$Arguments += "120"

Start-Process -Filepath "$InstallerFolder\Side-Scripts\PsExec.exe" $Arguments -NoNewWindow


}
exit;

I have also tried with 1> 2> > Same results.

Thanks in advance.

1

There are 1 best solutions below

1
On

Instead of placing the redirect in the psexec line you can try sending it's output to a variable and then sending that output to a file like in the following.

$InstallerFolder = "\\dc01\e"
$Domain = "domain"
$DomainUser = "admin"
$Password = "password"

$psexec = "$InstallerFolder\Side-Scripts\PsExec.exe"

$nodes = Get-Content "$InstallerFolder\Side-Scripts\nodes.txt"

foreach ($node in $nodes) {
    $commandOutput = ((&$psexec \\$node `"$InstallerFolder\Side-Scripts\start.bat`" -u $Domain\$DomainUser -p $Password -h -n 120) | Out-String)
    $commandOutput | out-file "$InstallerFolder\logs\$node.txt"
}