How to open a URL in a new browser window with AutoHotkey?
Solution 1:
IE:
Run, iexplore.exe https://mail.google.com/
Chrome:
Run, chrome.exe "https://mail.google.com/" " --new-window "
Firefox:
Run, firefox.exe -new-window https://mail.google.com/
Microsoft Edge:
Run, msedge.exe "https://mail.google.com/" " --new-window"