answersLogoWhite

0

How do you create and launch batch file with multiple websites?

Updated: 8/17/2019
User Avatar

Frndssuman

Lvl 1
14y ago

Best Answer

Well Here is your answer: type this in Notepad: start www."website".com and save as "anything.bat"

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you create and launch batch file with multiple websites?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you create batch file to launch multiple websites?

OK well first you would need a webstie to open. Lets say it is google. This would be the script: ________________________ @echo off start www.google.com start www.google.com start www.google.com exit ________________________ That would open google three times hope that helps!


From what window is a Field Operator able to create a batch?

Batch Manager window


How do you create and run a batch program?

Easy enough to create a batch program is you know what the commands are simply goto a text file or notepad and save it as "something.bat" and click on it


A file that stores multiple DOS commands is called?

Batch File


How to create a batch file and impliment it?

To create a batch file open notepad, textedit, or whatever editor you wish to use. Once open write your program, check for errors, and "make simple text." Save this program as whateveryouwant.bat. Open the file and the batch file will execute.


How do you create ipconfig batch file?

Here is an example of a batch file that carries out the command ipconfig. @echo off ipconfig /all pause exit


Is there any batch file editor to create batch file without learning syntax?

You can't download a program that makes a batch file to do what you want to do. You will need to legally learn about hacking, and then write the file yourself.


Is there a hex editor that can make the same edit on multiple files via batch?

Cnet.com has a program called "Batch Hex Editor", check it out. Hope that is what you are looking for. It is free to try


What is a Batch process?

"Batch processing" refers to the execution of multiple commands on a computer. Batch jobs are often used to automate a process which needs to be done on many files, since they do not typically need user input once started.


How do you use Batch File in Microsoft Excel to change the file names of multiple files?

click file, then preferences, next click multiple then enter


What are batch files used for?

batch files are used to run a series of commands at once. people who work on computers daily and have a series of files or programs to start and command to run often create a batch file to do it automatically and save time.


How to create batch file to play songs?

Say you have song name "kajrare.mp3" in your D drive then you can create a batch file to play the song as follows:Go to run and type "cmd". It will open command shell.Go to the location where you want to create batch file say D drive. For this type "d:" and press enter.Now type "edit songs.bat" and press enter. It will open DOS editor. cd d:kajrare.mp3Write following entries:Now save the file by pressing Alt+F+S and exit the editor.A new batch file will create in your D drive. Just double click to run it.