Windows Scripting Host will need to be installed on the client computer. (Probably is, but you can get it [here])
This site will need to be added to the Trusted Sites in IE
(Tools -> Internet Options -> Security Tab -> Trusted Sites Icon -> Sites Button)
The Security for IE must have the following setting.
(Tools -> Internet Options -> Security Tab -> Trusted Sites Icon -> Custom Level Button)
Initialize and script ActiveX controls not marked as safe "Enable" (default for Trusted Sites is "Prompt")
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>rodsdot.com :: run client side programs</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="author" content="Roderick Divilbiss"> <meta name="copyright" content="© 2005, 2006 Roderick Divilbiss"> <script type="text/javascript"> <!-- // inspired by rkannan2000 on EE function LaunchExe(strProgram, strProgramDirectoryOptional) { var wshShell = new ActiveXObject("WScript.Shell"); if (strProgramDirectoryOptional!=null) { wshShell.CurrentDirectory = strProgramDirectoryOptional; } wshShell.Run(strProgram, 1, false); wshShell = null; } //--> </script> </head> <body> <input type="button" value="Run Notepad On Client Computer" onclick="LaunchExe('notepad.exe');"><br> <br> <input type="button" value="Run Calculator On Client Computer" onclick="LaunchExe('calc.exe');"></div> </body> </html>
SANS Recommendations for Securing Internet Explorer