Alacarde
08-22-2005, 07:57 PM
I am writing a 'program' of sorts, that will execute programs from within HTML after they click on a link. The html page directs them to a page with the link to the file, in this case it is Internet Explorer 6, then it redirects them back to the other page. The script looks like this:
<script language="VBScript">
Dim objShell
Set objShell = CreateObject("WScript.Shell")
objShell.Run "cmd /c cd D:\Documents and Settings\M.R.Burnett\Desktop\Burnett Technologies\Loader\internet & ie6.exe"
WScript.Quit
</script>
<font family="Tahoma" size="2">Do not press any buttons, this page will automatically redirect you!</font>
<meta HTTP-EQUIV="REFRESH" content="5; url=browsers.htm">
This works in Internet Explorer, but not in FireFox. Anyone know how to make it work in FireFox?
<script language="VBScript">
Dim objShell
Set objShell = CreateObject("WScript.Shell")
objShell.Run "cmd /c cd D:\Documents and Settings\M.R.Burnett\Desktop\Burnett Technologies\Loader\internet & ie6.exe"
WScript.Quit
</script>
<font family="Tahoma" size="2">Do not press any buttons, this page will automatically redirect you!</font>
<meta HTTP-EQUIV="REFRESH" content="5; url=browsers.htm">
This works in Internet Explorer, but not in FireFox. Anyone know how to make it work in FireFox?