9

I pressed Win and typed in "PowerShell". However, since there's already a PS console window open, the computer switched the focus to it, instead of, as I intended, open a new one.

How can I open a new instance of a PowerShell console window? Preferably from Start menu. For pedagogic reasons, I need it to be big and blue so starting PS from command prompt won't do in this case. :)

Konrad Viltersten
  • 1,313
  • 5
  • 20
  • 44

4 Answers4

6

Run at powershell:

start powershell

May use Start-Process or saps alias.

STTR
  • 6,767
  • 2
  • 18
  • 20
4

You can middle click on the already opened Windows Powershell on Windows toolbar below (It will open an new instance of that program) or you can also type powershell in start menu, but instead of hitting enter, you just right click on Windows Powershell and choose Open in new window

kv1dr
  • 155
  • 7
2

After typing PowerShell into search, hold Shift while pressing Enter to open a new instance.

Ƭᴇcʜιᴇ007
  • 111,883
  • 19
  • 201
  • 268
0

Win + R - keyboard shortcut to open run.

Then type powershell. Press enter.

Edit: Windows 10

eric f
  • 231
  • 2
  • 3
  • 8
  • 1
    This doesn't start a new instance if it's already running – Ramhound Mar 19 '15 at 20:26
  • I have 4 powershell windows open after using this method 4 times. Unless each window is a window onto the same instance, I have 4 separate instances running. `TaskManager` shows 4 separate powershell instances as well. – eric f Mar 19 '15 at 20:29