Would any of you possibly know why this is not working?
Start-Process $PSHOME\powershell.exe -ArgumentList "-NoExit -Command & `"{$outvar1 = 4+4; `"out: $outvar1`"}`"" -Wait
The ultimate purpose for this is so that i can run a script block as another user with the addition of the -Credential option. But i can not get this simple script block to work yet. Many thanks. Chris.
Invoke-Commandwhich can run a script block locally or remotely with specified credentials (see example 2 in its help)? – Richard Sep 6 '11 at 11:13"'$ScriptFile'" -Verb Runas" -Wait – chris Sep 6 '11 at 11:43