|
Answer» Can I call a vbs script from my dos batch file? If so...how?
I am using windows XP. Thanks.Use CScript - see below
Usage: CScript scriptname.extension [OPTION...] [arguments...]
Options: /B Batch mode: Suppresses script errors and prompts from displaying /D ENABLE Active Debugging /E:engine Use engine for executing script /H:CScript CHANGES the default script host to CScript.exe /H:WScript Changes the default script host to WScript.exe (default) /I Interactive mode (default, opposite of //B) /Job:xxxx Execute a WSF job /Logo Display logo (default) /Nologo Prevent logo display: No banner will be shown at execution time /S Save CURRENT command line options for this user /T:nn Time out in seconds: Maximum time a script is permitted to run /X Execute script in debugger /U Use Unicode for redirected I/O from the console THANKS!
|