Zend certified PHP/Magento developer

Batch Script For Loop to Websites with user input

I’d like to run a batch script on Windows that will prompt users for input (a list) that is then used to open up all the websites as tabs in one window (like a for loop)

Example:
set /p What websites would you like to go to?

{ user inputs: google yahoo aol youtube }

start chrome.exe -new-window google.com yahoo.com aol.com youtube.com

{opens websites using user input added to “.com” in a new Chrome window, separate from any other open Chrome windows running}

I already use set and choice and goto to jump to different sections and then return. The problem is that whenever I open a chrome tab or multiple tabs, the selected application is now on the Chrome and I have to click on the batch file window again to switch the focus and continue input. I’ve tried to figure out the alt+tab key in the script but I’m not sure. I figure this way, even when it jumps to the chrome application, I’ll have already made a list in one go and I wouldn’t need to switch back and forth between applications.