PDF download Download Article
Open and run .exe files with PowerShell for Windows
PDF download Download Article

If you need to launch an executable file from PowerShell, you have several options. If you're in the same directory as the EXE file, type .\ before its filename (e.g., .\notepad.exe ) and press Enter. You can run the EXE from a different directory using the PowerShell call operator (&), the Start-Process cmdlet, or the Invoke-Expression cmdlet. Each PowerShell run option is easy and can be used at the command line and in your PowerShell scripts.

Things You Should Know

  • Use .\filename.exe to run an EXE from the current directory in PowerShell.
  • To run an EXE from another directory, you can use & "C:\Windows\notepad.exe"
  • To use the Start-Process cmdlet to run the program, type Start-Process -FilePath "filename.exe"
Section 1 of 4:

Using .\ (Dot Slash)

PDF download Download Article
  1. For example, if you want to run notepad.exe from PowerShell , type cd "C:\Windows\" and press Enter .
  2. To run an EXE file from the current directory in PowerShell, you'll need to preface the filename with .\ . For example, to run notepad.exe, type .\notepad.exe and press Enter .
    • Typing the .\ before the filename tells PowerShell you want to run the EXE file from the current directory.
    • If you want to run the EXE file from a different directory, use the call operator (&) .
    Advertisement
  3. If you get an error that says, "The term (EXE file name) is not recognized as a name of a cmdlet, function, script file, or executable program," you're either entering the wrong file name or in the wrong directory. Get-ChildItem shows you all files and permissions in the current directory.
    • To show only EXE files, use Get-ChildItem *.exe . [1]
    • You can also use Get-ChildItem to list files in other directories. For example, to show all executable files in C:\Program Files\Ableton\Live 11 Lite\Program, you'd use "C:\Program Files\Ableton\Live 11 Lite\Program\*.exe" .
  4. Advertisement
Section 3 of 4:

Using Start-Process Cmdlet

PDF download Download Article
  1. . This command will run the executable file called filename.exe from the current directory. If you're not already in the same directory as the EXE file, use the full path to the file, e.g., Start-Process -FilePath "C:\path to\filename.exe" .
    • If you need to run an EXE with parameters, enter the parameters after the executable's name. For example, to open Notepad with the window maximized , you'd use Start-Process -FilePath "C:\Windows\notepad.exe" -Wait -WindowStyle Maximized . [3]
  2. Advertisement
Section 4 of 4:

Using Invoke-Expression Cmdlet

PDF download Download Article
  1. \path to\filename.exe" . Invoke-Expression is typically used in PowerShell scripts to evaluate expressions, run scripts, and run commands in variables. You can also use it to run any EXE file at the prompt.
    • Microsoft cautions against using Invoke-Expression in PowerShell scripts that accept user input unless the script can verify that the command is safe to run. [4]

Expert Q&A

Ask a Question
      Advertisement

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!

      About This Article

      Thanks to all authors for creating a page that has been read 72,839 times.

      Is this article up to date?

      Advertisement