vote up 3 vote down star
1

I have a custom PowerShell runspace from which I execute a script (simplified):

Pipeline pipeline = myRunSpace.CreatePipeline(@"c:\temp\Myscript.ps1");
Collection<PSObject> results = pipeLine.Invoke();

In the script I do:

# c:\temp\MyScript.ps1
notepad.exe

Now the Invoke() returns when notepad is closed.

Is there a way to start an app, keep the app running but finishing the script code?

flag

75% accept rate

1 Answer

vote up 5 vote down check

In the script you can do

[Diagnostics.Process]::Start("notepad.exe")
link|flag
Thanks! That solved the problem! – Serge van den Oever Feb 12 at 0:18

Your Answer

Get an OpenID
or

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