I have a .cmd file that I use to enter a URL and then have multiple browsers open it:
@echo off
Set /p "var=enter the URL: "
Start "" chrome "%var%"
Start "" brave "%var%"
Start "" ednge "%var%"
Is there an option to open the incognito versions of these browsers too along with the normal ones?
The goal is to have 3 browsers open the same URL both in normal and incognito mode.
CodePudding user response:
Here is a little example for what you want to achieve !
@echo off
Title In order to observe, you have to be incognito !
Set /p "var=Enter the URL: "
Start "Chrome Browser" /MAX "chrome.exe" --incognito "%var%"
Start "EDGE Browser" /MAX "msedge.exe" --inprivate "%var%"