Run a PowerShell script

David Y.

The Problem

I have a PowerShell script named MyScript.ps1. How do I execute it?

The Solution

You can execute a PowerShell script by following these steps:

  1. Launch Windows PowerShell as an Administrator. You should see a command-line window with a PS> prompt.
  2. Navigate to the directory containing the script. For example:
    Click to Copy
    cd "C:\My Scripts"
  3. Execute the script using .\ syntax to tell PowerShell to look for the script in the current directory:
    Click to Copy
    .\MyScript.ps1

To run the script with a single PowerShell command from anywhere in the file system, you can specify the full path:

Click to Copy
& "C:\My Scripts\MyScript.ps1"

Note that the path must be surrounded by quotation marks if it contains one or more spaces.

To run the script from Windows CMD or the Windows Run dialog, enter the following:

Click to Copy
powershell -noexit "& ""C:\My Scripts\MyScript.ps1"""

Note that & in the above is the call operator, which invokes the script.

If any of these methods produces an error indicating that the execution of scripts is disabled on your system, please see this answer.

Loved by over 4 million developers and more than 90,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

Share on Twitter
Bookmark this page
Ask a questionJoin the discussion

Related Answers

A better experience for your users. An easier life for your developers.

    TwitterGitHubDribbbleLinkedinDiscord
© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.