Share via

How to invoke POWERSHELL

Phillip Richcreek 320 Reputation points
2026-03-03T16:03:24.54+00:00

I need to run a process that another user here suggestd that I run with POWERSHELL. I don't know how to invoke POWERSHELL.

Thanks for your help,
PR

Sysinternals
Sysinternals

Advanced system utilities to manage, troubleshoot, and diagnose Windows and Linux systems and applications.

0 comments No comments
{count} votes

Answer accepted by question author
  1. Q&A Assist
    2026-03-03T16:03:39.0766667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    On Windows, PowerShell can be started in several simple ways.

    1. From the Start menu
      • Open the Start menu.
      • Type Windows PowerShell.
      • Click Windows PowerShellOpen.
    2. From Command Prompt (cmd.exe)
      • Open Command Prompt.
      • Type:
             powershell
        
        and press Enter.
      • This launches a PowerShell session inside the Command Prompt window.
    3. With administrative (elevated) rights
      • Open the Start menu.
      • Type Windows PowerShell.
      • Right‑click Windows PowerShell.
      • Select Run as administrator.
      • Approve the User Account Control prompt and enter admin credentials if requested.
      • The window title will show Administrator: Windows PowerShell when elevated.
    4. PowerShell 7+ (pwsh)
      • If PowerShell 7 or later is installed, its executable is pwsh.exe.
      • From Command Prompt or an existing PowerShell window, run:
             pwsh
        
      • This starts the newer PowerShell (cross‑platform) shell.

    Once the PowerShell window is open, commands can be typed at the prompt and run by pressing Enter.


    References:

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Phillip Richcreek 320 Reputation points
    2026-03-03T16:14:15.16+00:00

    Another AI answer that is great.
    Thanks you AI!

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.