Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When set up of remote PowerShell session is impossible for me I'm using the psexec tool for launching scripts remotely. I'm asking for correct exit code of psexec in loop. Syntax of psexec which I'm using is this:

./psexec.exe \\$Hostname -u $Username -p $Password -i ("c:\something.bat")

Is there any possibility to hide output in PowerShell console of psexec in each loop? I would like to see only the last success one.

I tried Out-Null, calling with [void] or $null redirection, but it seems as this is cmd command this don't work.

share|improve this question

1 Answer

Try using the [void] accelerator, like so: [void] ./psexec.exe `$hostname...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.