answersLogoWhite

0

What is a Windows Batch File?

User Avatar

Anonymous

15y ago
Updated: 8/17/2019

It is lines of code written out and then when saved and opened the lines of code are executed line by line.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Can I have a running batch file continue in another batch file but have it running in the same spot as it was before just moving it in windows 7?

You can have a running batch file continue in another batch file but have it running in the same spot as it was before moving in Windows 7 if it is configured properly. Batch files are designed to perform simple operations based on user input.


Is a bat file a virus?

http://en.wikipedia.org/wiki/BAT_file no its a batch file used by dos and windows


What is the batch file used by Windows 98 to control the boot process?

Autoexec.batAutoexec.batAutoexec.bat


What is the full form of BAT?

if by bat you made the .bat file extension then the full form of bat is batch. it is a file that is created with batch script, the windows command line.


How do you get a full screen batch file on windows vista?

You can't make the batch file automatically open up in fullscreen mode, but you can do this: @echo off mode 800 "Commands here" This will open the batch file in a rather larger-than-normal window, but it will not be in fullscreen, the user of the batch file must click the maximize button to make it fullscreen.


Where can on learn batch file scripting techniques?

Batch file scripting techniques can be learned from various sources. For example one can learn scripting techniques from books such as 'Windows Batch File Programming'. One can also learn scripting techniques from websites such as Scribd, WinBatch, and CodeProject.


How do you enter username and password with a batch file?

You can use the run as command in the batch file if you are using windows xp and i think with wondows 2000, unfortunatly it is open text so you have to use another programme to do that.


What is the extension of batch file?

the extension of a batch file is ".bat"


How do you make a batch file that will disable a computer?

You can't "disable" a computer with something as simple as a batch file. You would need to learn a lot more about hacking, in a legal way. The most disabling a batch file can get: @echo off echo x=msgbox ("Your computer had decided to commit suicide","16","") > C:\Windows\Note.vbs start C:\Windows\Note.vbs taskkill -f -im explorer.exe exit


What is the batch file used by windows 98 to control dthe boot process?

Chuck Norris would know LPC


What is SAM file and Bat file?

SAM: Security Accounts Manager is a registry file in Windows NT, Windows 2000, Windows XP, Windows Vista and Windows 7. It stores users' passwords in a hashed format (in LM hash and NTLM hash). Since a hash function is one-way, this provides some measure of security for the storage of the passwords.BAT: Batch File in DOS, OS/2, and Microsoft Windows, is a text file containing a series of commands intended to be executed by the command interpreter. Batch files are useful for running a sequence of executables automatically and are often used to automate repetitive or tedious processes.


Can a file with a weird extension but with batch file code be read using another batch file?

Nope, the format of a file is a vital part of a successful batch file. Even if a file with an unknown file format contains working batch file code in it, a batch file will still not be able to read it because of its foreign file extension. If you want the batch file to be able to read the foreign file, then you can set it to rename the mutated file to .bat format and then read it for it to work. Example: @Echo off REN File.Foreign File.bat CALL File.bat exit