Shut up, you. 
Anyway Discord, save this code to a file with the extension ".js". Then drop it in your \WINDOWS\Startup folder and it should execute on startup. Remember to change the URL to whatever page you need opened. If you want to verify that it works before restarting or whatever, you can execute it by double-clicking it.
Code:
var wshell = WScript.CreateObject("WScript.Shell");
wshell.Run("iexplore.exe http://forums.eyesonff.com", 6);
EDIT: Just to clarify, I minimised it not by passing a command-line parameter to iexplore.exe, but by specifiying to the Wscript.Shell object that whatever command is executed, do it minimised and without focus. Therefore, it would minimise any program started this way.