I understand that a Batch Script is what you call a script made in the WinNT environment, but a batch script is also a general term for a type of script that performs a batch operation in any language.

Is there a set, Scripting Language name that you would use on a resume to explain that you can script in the WinNT environment? Because even Linux has BASH Scripting etc.

EDIT: Let me add this, pertaining to someone who can create .BAT/.COM scripts, what kind of scripting would that formally be called?

link|improve this question

Please define what you mean by "WinNT environment". Only Windows NT <= 4.0, or do you mean any Windows version which was based on that, including WinXP, Vista, Win7? – Doc Brown Nov 11 '11 at 15:17
Any windows version – Mechaflash Nov 11 '11 at 15:22
1  
Windows does not have a single scripting language. You can write scripts in VBScript, JavaScript, PowerShell, or boring Windows batch language. (I think you're asking for the name of the boring batch language. I don't think it has a name, really, but if you write "Windows batch language" people will probably understand.) – Raymond Chen Nov 11 '11 at 15:25
I would suggest "Windows command shell scripts" or something similar. (And I think you mean .cmd not .com!) – Harry Johnston Nov 13 '11 at 0:53
feedback

3 Answers

up vote 1 down vote accepted

If you leave those newer scripting languages like VBScript, Powershell or Javascript aside, there is just "Win32 Shell Scripting" or "Windows command shell" - I don't think that this "language" has a better name. Not even the Wikipedia article on cmd.exe

http://en.wikipedia.org/wiki/Command_Prompt

mentions a language name.

link|improve this answer
Nice avatar! ;) – scottm Nov 11 '11 at 15:29
@scottm: was thinking almost the same when I saw yours :-) – Doc Brown Nov 11 '11 at 15:30
maybe we should create the name for it right now. Let's create history for 11/11/11... we now dub thee... TheSuck language =D – Mechaflash Nov 11 '11 at 15:33
feedback

Depending on the version, you've got VBScript.

If you're using a newer version of Windows Server, you probably either have or could install PowerShell (which comes with its own scripting environment).

link|improve this answer
VBScript and powershell are different however. Yes they can be done in the windows environment, but when you create a script in a .BAT or .COM file, what do you call that scripting? – Mechaflash Nov 11 '11 at 15:24
feedback

You can use Javascript, also. Just run any .js file with cscript.exe

link|improve this answer
talking about windows .BAT/.COM scripts and if there is a true formal name for it for someone that creates them. – Mechaflash Nov 11 '11 at 15:25
Then you would just call it batch scripting. Because all you are doing is batching commands. en.wikipedia.org/wiki/Batch_file – scottm Nov 11 '11 at 15:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.