Running Windows Scripting host files from ASPWe were given a great tip by the webmaster of networkdynamix.com. This tip shows how-to execute a windows scripting host file from within an asp page. Here is the code! Set WshShell = Server.CreateObject ("WScript.Shell") WshShell.Run "D:/InetPub/mysite/mybatchfile.vbs " Set WshShell = Nothing |