Jump to content

100 chrome tabs using batch file

Can any body write me a batch file to open 100 new chrome tabs on a windows system? 

 

 

 

 

Link to comment
Share on other sites

Link to post
Share on other sites


@echo off

set /a i=1

:loop
if %i% LEQ 100 (
start chrome.exe "about:blank"
echo Tab Count = %i%
set /a i=i+1
timeout 1
goto :loop
)

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×