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.
You can make a folder with batch by using the command: md Foldername Example: @echo off md WikiAnswers exit The batch file would make a folder named WikiAnswers, and it would appear on your desktop