9

If I'm working within a single powershell console, and say I want to spawn another powershell console window.

Is there a way to do this?

If you type "powershell" at the prompt - it doesn't launch a new window, just starts a new powershell instance within the current console window.

Any thoughts?

3 Answers 3

12
Start-Process powershell 
4
  • both works. but this 1 is easier to type/remember. Commented May 23, 2010 at 16:30
  • That'll do... Now what causes the background on the original console to be blue - but the "start-process powershell" console has a black background? (It's nice to have the differences) Commented May 23, 2010 at 18:41
  • Yeap, insert mode is disabled too. Pretty weird! Commented May 23, 2010 at 21:39
  • The console background color is tied to the shortut that started the process. Since you're using Start-Process you launch the actual executable instead of the shortcut you don't get the background color or the other settings that are set via the shortcut. No good idea how to circumvent that. Commented May 28, 2010 at 14:01
4

Quick Google search would have helped:

Invoke-item "$pshome\powershell.exe" 
2

For admin console:

start-process powershell -verb runAs 
3
  • 2
    Can you explain how this adds to or improves the accepted answer? Commented Jan 1, 2016 at 13:52
  • @Dave M - Can you explain how its different from the accepted answer? Commented Jul 11, 2017 at 14:52
  • @ StingyJack Not sure what you are asking from me. I asked if jakobii could add detail to answer to explain why it adds to or improved accepted answer. Commented Jul 11, 2017 at 17:36

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.