Force website to open in Internet Explorer

Creation date: 7/26/2023 12:46 PM    Updated: 7/26/2023 12:46 PM    internet explorer scripts vba windows
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.