This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
isn't it a simple task
in powershell script to start a process
and pipe the StandardOutput to a variable.
How please?
Erhy
Easy:
Command with standard output:
ipconfig /all
Catch output in variable:
$myvar = ipconfig /all
Try it.
\_(ツ)_/