Skip to content

Instantly share code, notes, and snippets.

@oliverstech
Created January 14, 2023 16:51
Show Gist options
  • Save oliverstech/88cd33e417bfdf3c1caa81798ab49577 to your computer and use it in GitHub Desktop.
Save oliverstech/88cd33e417bfdf3c1caa81798ab49577 to your computer and use it in GitHub Desktop.
Edge Mass Profile Opener
@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