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.
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.