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.

link|improve this question
Any reason you're not using Invoke-Command which can run a script block locally or remotely with specified credentials (see example 2 in its help)? – Richard Sep 6 '11 at 11:13
Hi, Well truth is that im having an error when executing the AutoSPInstaller script, at line 2056 AutoSPInstallerFunctions.ps1. Im trying to replicate what it does, the original line is ; Start-Process $PSHOME\powershell.exe -Credential $FarmCredential -ArgumentList "-Command Start-Process $PSHOME\powershell.exe -ArgumentList "'$ScriptFile'" -Verb Runas" -Wait – chris Sep 6 '11 at 11:43
where script file is the path and file name of a script that was generated earlier in the process – chris Sep 6 '11 at 11:44
feedback

1 Answer

up vote 2 down vote accepted

Here is somthing that is working:

PS C:\> Start-Process $PSHOME\powershell.exe -ArgumentList "-NoExit","-Command  `"&{`$outvar1 = 4+4; `"write-output `$outvar1`"}`"" -Wait

-ArgumentList is an array of strinds $outvar is interpreted so I use `$outvar

link|improve this answer
Great, and then to add some text before we just escape the special chars, now i understand. cheers Start-Process $PSHOME\powershell.exe -ArgumentList "-NoExit","-Command "&{$outvar1 = 4+4; "write-output "Hello:"$outvar1`"}`"" -Wait – chris Sep 6 '11 at 11:50
2  
FYI, I prefer to use $p = Start-Process ... -PassThru; Wait-Process $p.id -Timeout xxx. Just in case the started process hangs, my script won't hang any longer than the specified timeout. – Keith Hill Sep 6 '11 at 13:44
feedback

Your Answer

 
or
required, but never shown

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