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'