WScript and VBScript

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How is it possible to call the WScript object? I haven't found it in any
namespace... is it only for VBScript? If yes, is it possible to launch a .vbs
programmatically from c#?

Thanks,
Daniele
 
Not sure calling wscript component works, but you can use Process.Start to
run the script engine (script.exe or wscript.exe) and pass your script as
argument.

Willy.
 
Back
Top