Send Us a Message
Contact Details
- Address: 57 Leonard Igorevich St, New York, NY 10013, USA
- Working Hours: Mon – Fri : 8AM to 6PM
- Email: admin@megatroy.com
@echo off
setlocal enabledelayedexpansion
rem Set Chrome path and target URL
set "CHROME=C:\Program Files\Google\Chrome\Application\chrome.exe"
set "URL=https://viidedss.com/dc/?blockID=380582"
echo Closing all Chrome instances...
:kill_loop
taskkill /F /IM chrome.exe >nul 2>&1
timeout /t 1 >nul
tasklist | find /i "chrome.exe" >nul
if not errorlevel 1 (
echo Waiting for Chrome to fully exit...
goto kill_loop
)
echo All Chrome processes closed.
rem Build the list of 20 repeated URLs
set "TABS="
for /L %%I in (1,1,15) do (
set "TABS=!TABS! %URL%"
)
echo Launching profiles with 20 tabs each...
start "" "%CHROME%" --profile-directory="Profile 13" -incognito !TABS!
start "" "%CHROME%" --profile-directory="Profile 8" -incognito !TABS!
start "" "%CHROME%" --profile-directory="Profile 9" -incognito !TABS!
start "" "%CHROME%" --profile-directory="Profile 10" -incognito !TABS!
start "" "%CHROME%" --profile-directory="Profile 7" -incognito !TABS!
echo Done.
endlocal