write a batch file to open firefox, chrome, opera browser when system starts and open www.google.com in those browsers
write a batch file to open firefox, chrome, opera browser when system starts and open www.google.com in those browsers
Here is a basic batch file that will open the specified browsers and navigate to www.google.com:
@echo off rem Start Firefox and navigate to www.google.com "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" www.google.com rem Start Chrome and navigate to www.google.com "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" www.google.com rem Start Opera and navigate to www.google.com "C:\Program Files (x86)\Opera\launcher.exe" www.google.com
You will need to modify the file paths to point to the correct location of the browser executables on your system. You may also need to modify the file paths if you are using a 64-bit version of Windows.
Save the file with a .bat
extension and place it in your Startup folder to run it when your system starts. You can find your Startup folder by going to the Start menu and searching for "Startup".
Comments
Post a Comment