opening multiple urls using batch file

2019-09-10 03:11发布

start "" "https://www.yahoo.com/"
start "" "https://www.google.com/"

I am using above code in a batch file for opening multiple URLs at a time in different tabs of the browser. However, some URLs are skipped while running batch file. I want all of the URLs to be opened.

Can we slow down the process of opening URLs?

1条回答
唯我独甜
2楼-- · 2019-09-10 03:42

Timeout /t 1 will make the script wait one second before continuing, if that helps.

查看更多
登录 后发表回答