Is it possible to embed VBScript within a batch file?
I currently have a .CMD file that calls a .VBS file using
cscript //NoLogo MyScript.vbs
but I'd prefer to distribute just a single .CMD file.
EDIT: There is a similar question with answers on how to do this without generating an intermediate file at all: Is it possible to embed and execute VBScript within a batch file without using a temporary file?