There are options:
1. Run the program in the background (background): Start /b
2. Open Chrome in windows, tabs in or both not in private/ incognito mode:
start "" /b chrome --new-window
for %%i in (pt.stackoverflow,stackoverflow,superuser,windows,google)do start "" /b chrome --new-window %%~i.com & timeout 5
start "" /b chrome --new-tab
for %%i in (pt.stackoverflow,stackoverflow,superuser,windows,google)do start "" /b chrome --new-tab %%~i.com & timeout 5
start "" /b chrome --incognito
for %i in (pt.stackoverflow,stackoverflow,superuser,windows,google)do start "" /b chrome --incognito %~i.com & timeout 5
start "" /b chrome --new-window --incognito
for %%i in (pt.stackoverflow,stackoverflow,superuser,windows,google)do start "" /b chrome --new-window %%~i.com & timeout 5
start "" /b chrome --new-tab --incognito
for %i in (pt.stackoverflow,stackoverflow,superuser,windows,google)do start "" /b chrome --new-tab --incognito %~i.com & timeout 5
Obg. = ) Helped a lot.
– Gabriel Ricardo