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!
Well Here is your answer: type this in Notepad: start www."website".com and save as "anything.bat"
Batch Manager window
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
Batch File
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.
Here is an example of a batch file that carries out the command ipconfig. @echo off ipconfig /all pause exit
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.
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
"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.
click file, then preferences, next click multiple then enter
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.
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.