How to Run cmd.exe with parameters from javascript

How to Run cmd.exe with parameters from javascript


var objShell = new ActiveXObject("Shell.Application");
        objShell.ShellExecute("cmd.exe", "C: cd C:\pr main.exe blablafile.txt auto", "C:\WINDOWS\system32", "open", "1");
 
var run=new ActiveXObject('WSCRIPT.Shell').Run("commands to run");
 
iRetVal = Shell.ShellExecute(
  sFile,
  [ vArguments ],
  [ vDirectory ],
  [ vOperation ],
  [ vShow ]
)
 
var objShell = new ActiveXObject("shell.application");
 
objShell.ShellExecute("cmd.exe", "cd C: C:\cd c:\ext_file main.exe test.txt", "C:\WINDOWS\system32", "open", 1);

No comments:

Post a Comment