How to Open URL Using Powershell Start-Process in Different Ways (Very Easy)

Опубликовано: 22 Март 2026
на канале: JameSparKing
8,784
87

Very easy way to open URL using powershell. You can open the URL in Microsoft Edge, Google Chrome, Firefox, or any other browser you desire. You can open URL in a new window and also in incognito/private mode.

#powershellurl #start-process #powershell

Code used in this video:

$URL = "   / jamesparking  "

#Start-Process msedge.exe $URL

#[System.Diagnostics.Process]::Start("msedge", $URL)

#Start-Process msedge.exe '-new-window    / jamesparking'  

Start-Process msedge.exe '-inprivate    / jamesparking'