Created
January 14, 2023 16:51
-
-
Save oliverstech/88cd33e417bfdf3c1caa81798ab49577 to your computer and use it in GitHub Desktop.
Edge Mass Profile Opener
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set /p profilecount=Enter how many profiles you'd like to open: | |
set counter=0 | |
:loop | |
if %counter% equ %profilecount% goto :EOF | |
set /a counter+=1 | |
"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --profile-directory="Profile %counter%" | |
goto loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment