'I have required a batch file which can open 25 different chrome browser profiles

I have required a batch file which can open 25 different chrome browsers. When each browser opens, it would wait for 5 seconds for activating extensions. And then in all browsers profiles load the same website. I have this code.

@ECHO OFF
Set URL="https://www.youtube.com/"
SET BROWSER1=C:\Users\pc32gb\AppData\Local\CentBrowser\Application\chrome.exe --profile-directory="Profile 1"
SET BROWSER2=C:\Users\pc32gb\AppData\Local\CentBrowser\Application\chrome.exe --profile-directory="Profile 2"
START %BROWSER1% 
timeout /t3 >nul
START %URL%
timeout /t2 >nul

START %BROWSER2% 
timeout /t3 >nul
START %URL%


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source