PowerShell: Launch App, Start Process

By Xah Lee. Date: . Last updated: .
Start-Process (alias saps, start)

Start a process. e.g. launch notepad, browser.

# launch notepad
start notepad

# launch wordpad
start wordpad

# launch chrome browser
start chrome

PowerShell: Profile and Script