Skip to content

17 Ways to Open PowerShell in Windows 10 & 11

Windows PowerShell is a next-generation version of the CMD. It is a powerful shell program for power users. It can be used to execute a host of basic and complicated tasks. While you can do many things normally, for administrative tasks you must run PowerShell as an administrator. In this detailed article, we’ll be checking out all possible ways to open PowerShell in Windows 10 and Windows 11.

If you want to access all the settings shortcuts quickly without digging into layers of the Control Panel, you should try the Windows God Mode folder.

Command Prompt vs PowerShell

Several people take the Command Prompt or CMD and PowerShell to be the same. So, is PowerShell the same as the Command Prompt? Both the shells look pretty similar in appearance and functionality. However, they are different in many ways. Windows PowerShell can do things the Command Prompt can’t. For example-

  • It can process variables with multiple data types.
  • In PowerShell, the output of the commands is not limited to just text but also a collection of objects.
  • You have to parse the output while using the Command Prompt but PowerShell does that itself.
  • It can import additional functionality from external libraries while CMD cannot.
  • It can automate processes and OS-related things more easily.
  • PowerShell runtime can easily be integrated into .NET applications so that you can use all the classes defined in .NET.

Windows Command Prompt or CMD is the original shell for MS-DOS while Microsoft introduced PowerShell as an upgraded and more sophisticated version of CMD. The Command Prompt used to be the default shell on Windows PCs. However, with the Windows 10 build 14791 update, Microsoft replaced CMD with PowerShell as the new default shell for the OS. PowerShell has all the functionality of the Command Prompt but it has also been enhanced with system administration functionality.

Before you check out the ways to open PowerShell, do not forget to head over to my article describing 18 ways to open the Command Prompt in Windows 10.

1. Open PowerShell as Administrator from Power User Menu

Windows has a Power User Menu with advanced options. You can easily open PowerShell normally or as an administrator from here. There are 2 easy ways to access the Power User Menu in Windows.

  1. Right-click the Start menu or Windows icon at the bottom left corner of your computer’s screen.
  2. Press Windows + X keyboard shortcut.

windows power user menu

Once the Power User Menu pops up, choose Windows PowerShell or Windows PowerShell (Admin) to launch the program as administrator.

2. Run PowerShell from Start Menu

Windows 10 and 11 users can also open Powershell from the Start Menu. Click the Start icon and Scroll down to a folder called ‘Windows PowerShell‘. Click it and choose Windows PowerShell to run the program.

open powershell from start menu

To run PowerShell from Start Menu as admin, right-click Windows PowerShell > More > Run as administrator.

3. Pin PowerShell to the Taskbar

If you want to open PowerShell with a single click of your mouse, pinning it to the Taskbar of your Windows PC is a great idea. Click the Start icon, scroll down to  ‘Windows PowerShell‘ and click it. Right-click Windows PowerShell, and click the More >Pin to Taskbar option. The PowerShell shortcut will be pinned to the Windows Taskbar.

pin windows powershell to taskbar

4. Open PowerShell using Windows Terminal

Microsoft introduced a new, modern, feature-rich terminal console called Terminal with Windows 11. It packs together 3 command-line tools: Command Prompt, PowerShell, and Azure Cloud Shell. Windows 10 users can install Windows Terminal from the Microsoft Store.

When you launch Windows Terminal, it’ll load PowerShell by default. However, if you want to open Command Prompt or Azure Cloud Shell, click the reversed caret icon and make a selection. Alternatively, you can also switch between different shells by using Ctrl + Shift + 1/2/3 keyboard shortcut. We have a list of more than 250 keyboard shortcuts for Windows 10 and 11 for you to check out.

powershell in windows terminal

Once you install the Windows Terminal app, a new item named Open in Terminal will be added to your Context Menu. Thus, you get one more way to open PowerShell in Windows 10 at your disposal.

windows terminal shortcut in context menu

5. Open PowerShell from Search

You can also open PowerShell using the Windows search functionality which allows you to search any file, document, or app on your computer. Click the Search icon > Search Box and type “PowerShell“. Either click Windows PowerShell on the left pane or the Open or Run as Administrator option in the right pane or the search window.

open powershell from windows search

6. Open PowerShell Using Voice Command

Every OS has its own digital assistant these days. Windows has one too and it’s called Cortana. You can open PowerShell in Windows 10 and 11 simply by giving a voice command to Cortana. Just launch the voice assistant by clicking the Cortana icon. Now click the microphone icon in the bottom-right corner of the app window, and say “open powershell“. Cortana will open a PowerShell window for you.

open powershell from cortana in windows 10

7. Run PowerShell from powershell.exe

There’s an executable file (.exe) for every app installed on a Windows PC. Just navigate to the Windows > System32 directory on your computer, look for ‘powershell.exe‘, and double-click it to launch PowerShell. You can open it as an administrator by performing a right-click action on the executable file. The powershell.exe location path on Windows 10 and 11 is as follows:

  • C:/Windows/System32/WindowsPowerShell/v1.0/powershell.exe
  • C:/Windows/SysWOW64/WindowsPowerShell/v1.0/powershell.exe

Do not forget to check out my tutorial on finding the file and folder path in Windows 10 and 11.

powershell.exe location windows10

8. Open PowerShell as an Administrator from CMD

You can launch an instance of PowerShell from the Command Prompt, or just open PowerShell as an administrator from the CMD window itself. To run PowerShell while using the Command Prompt, just type start powershell.exe in the CMD window and press the Enter key.

However, if you want to open PowerShell from CMD as an admin, try the steps given below:

  1. Open the Command Prompt, type ‘powershell‘, and hit the Enter key.type powershell in command prompt
  2. The Command Prompt will turn into a PowerShell window.turn command prompt into powershell
  3. Now, type or paste start-process PowerShell -verb runas and press the Enter key.open powershell as admin from command prompt
  4. Doing so will open PowerShell as an administrator.

To open PowerShell as an administrator from CMD using a single line of command, you can execute the following command:

powershell -Command "Start-Process PowerShell -Verb RunAs"

9. Open PowerShell Admin from PowerShell

In case you want to open another instance of PowerShell from the current Powershell window, type start powershell.exe , and press the Enter key.

However, you can also open a new instance of PowerShell with administrative privileges using the following methods:

Method 1:

  1. Open Windows PowerShell, type ‘powershell‘ and press the Enter key to start a PowerShell session.
  2. Now, type Start-Process PowerShell -Verb RunAs and press Enter.
  3. This will bring up a new PowerShell window with admin privileges.powershell with administrative privileges

Method 2:

You can also use one of the following single-line commands to open PowerShell as an administrator from PowerShell itself.

start-process PowerShell -verb runas  OR

powershell -Command "Start-Process PowerShell -Verb RunAs"

Method 3:

Alternatively, you can also launch PowerShell as admin from a normal PowerShell window as follows:

  1. Open PowerShell and execute the following command with your own username.
    runas /user:admin username powershell
  2. When prompted, enter your computer’s password.

That’s it!

10. Run PowerShell from File Explorer Address Bar

If you want to open a PowerShell with a folder path, there is an easier way to do so in Windows 11, 10, or older. Open File Explorer on your PC, click the address bar, type “powershell” and press the Enter key. A PowerShell window will be launched.

open powershell from file explorer address bar

11. Open PowerShell as Admin from File Explorer Menu

There is another way to launch Windows PowerShell in a folder in Windows 10 and 11. This method also offers a way to run PowerShell with the folder path as an administrator. Just open a folder window, click File > Open PowerShell, or Open Command Prompt as administrator.

open powershell admin from file explorer menu

12. Open PowerShell in a Folder in Windows 10/11

If you want to open PowerShell in a folder, there is yet another way to do it. You can use this method to run PowerShell with a file or folder path in Windows. Open the folder or directory where you want to open a PowerShell window. Make sure to placethe mouse pointer in a blank spot in the folder window, then press the Shift key + right-click. Choose the Open PowerShell window here. option in the context menu.

open powershell window in a folder

13. Open PowerShell from Task Manager

You can also open PowerShell in Windows 10 or 11 from the Task Manager. You can launch Task Manager using Ctrl + Shift + Esc keyboard shortcut. Click More details from the bottom-left corner of the Task Manager window. Click on File > Run new task. Now, type “powershell” in the text box of the Create New Task pop-up and click OK. You can select “Create this task with administrative privileges” option if you want to run PowerShell as an admin.

open prowershell admin via task manager

14. Create a PowerShell Shortcut

You can also create a PowerShell shortcut on the desktop to launch it whenever you want. To do that, right-click on the desktop or the location where you want to create a shortcut. Choose New > Shortcut from the Context Menu. Click the Browse option and navigate to C:\Windows\System32 or C:\Windows\SysWOW64, choose powershell.exe. and click OK.

create powershell shortcut in windows

Now, choose Next and assign a name to the newly created shortcut and click Finish. In case you wish the shortcut to open PowerShell in admin mode, right-click on the shortcut icon, choose Properties > Advanced, select Run as administrator, and click OK.

There is a simpler way to create a shortcut on the desktop for PowerShell. Open Start Menu, go to You can also create a PowerShell shortcut simply by dragging PowerShell to your computer’s desktop from Start Menu > Windows PowerShell folder and drag and drop the PowerShell shortcut on the desktop.

create powershell shortcut on desktop

15. Open PowerShell from Microsoft Edge

There is yet another way to open PowerShell in Windows 10 and 11. Launch the Microsoft Edge browser on your PC. Now type or paste the location path of the powershell.exe in the URL box.

  • file://C:/Windows/System32/WindowsPowerShell/v1.0/powershell.exe
  • file://C:/Windows/SysWOW64/WindowsPowerShell/v1.0/powershell.exe

powershell.exe location windows 10

Then press the Enter key. A dialog box below the Downloads icon of the web browser will appear. Click the Open file option to open PowerShell.

open powershell in microsoft edge

16. Open PowerShell via the Run Box

You must be familiar with the Run app in Windows. It can be used to open a document, file, folder, and even a program. Press Windows + R on your keyboard to launch the Run app quickly. Type “powershell” in the text box and click OK. Doing so will open the PowerShell window.

open powershell via run in windows

17. Open PowerShell from Context Menu

There are a couple of ways to customize the Context Menu on Windows 10 and 11 using Registry Editor and Context Menu editor programs. You can easily add the option to open PowerShell via the context menu using the detailed steps described in our tutorial.

I think I have mentioned all possible ways to open the PowerShell in Windows 10 and Windows 11. In case you know any method that I might have missed here, feel free to share it with us.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.