PowerShell: Launch App, Open File

By Xah Lee. Date: .
Invoke-Item (alias ii)
open item with default app. (image, pdf, folder, etc.)
# open the current dir in file explorer
ii .
# open a photo
ii photo.jpg
Start-Process (alias saps, start)
Start a processes. e.g. launch notepad, browser.
start notepad
start chrome

PowerShell: Launch, Open, Eval