I know we can launch .exe file using following code snippet. but this only works for IE. My client very often use Chorome and Firefox as well. How can I modify this snippet to launch the exe from other browsers as well.
var oShell = new ActiveXObject("Shell.Application");
var commandtoRun = "C:\User\Desktop\test.exe"; `oShell.ShellExecute(commandtoRun,"","","open","1");`
Also, there any mean to pass any argument to that opening .exe file?