I've got a simple question:
What's the best way to execute a single WshShell command from a Windows batch (.bat) script?
(hopefully it's not creating a new file with VB code)
|
|
|
You can access WshShell via VBScript or Jscript. Both can be embedded within a batch file, but JScript is much cleaner. Most people execute VBScript within batch by writing a temporary VBS file. But it is possible to do it without a temporary file. See Is it possible to embed and execute VBScript within a batch file without using a temporary file? for various options. Embedding JScript within batch is quite easy. See http://stackoverflow.com/a/5656250/1012053. I use a very slight variation of that technique.
|
|||
|
|
This is the method I use to write a Batch-JScript hybrid script:
For example:
Antonio |
|||
|
|