+ 21
Which coding language is used to prepare files with '.bat' extentions.
Most of the computer viruses and many files are created with ".bat" extensions. I want to know that these Giles are created using which coding language.
3 odpowiedzi
+ 9
A .bat file is a DOS/Windows shell script executed by the DOS/Windows command interpreter. When a batch script is saved to a .bat file, it is just called a batch file.
The language is a simple interpreted scripting language.
Batch files are very limited in functionality. Microsoft has released PowerShell, which is a much more powerful scripting language.
check this and explore:
https://superuser.com/questions/1057096/what-is-the-language-of-a-bat-batch-file-on-windows
https://www.tutorialspoint.com/batch_script/index.htm
+ 1
Well, Batch Files use ". bat" extension.
0
Look at SS64 for more detailed information on the scripting language. https://ss64.com/nt/
It explains a lot about the Windows batch language and provides real use examples of the letterpress and constructs available to you.