To force a website to open in Internet Explorer, paste this code into notepad, then change the file type to
.vbs (Visual Basic Script)
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Navigate "<target website>"
objIE.Visible = 1
Replace <target website> with the intended site you want to open in IE. You can then double click the script file to run it.