I am currently in school and wanted to make a batch file that opens all links as follows:
@echo off
start chrome
start https:URL1
start https:URL2
start https:URL3
Now it opens a new chrome window. The problem is that it also opens an empty first tab. I tried to figure out key inputs like "^{TAB}" and "^w" in VBS but sadly couldn't. Is there a way to close the first tab with VBS or javascript from a batch-file? All help is appreciated!