From the horse's mouth [scroll down all the way to the bottom]:
http://www.microsoft.com/technet/prodtechn...rk/appxc_c.mspxQUOTE
Command-Line Parameters for Starting Internet Explorer
In addition to using command-line switches to customize Setup, you can use command-line parameters to customize how Internet Explorer is started.
For example, you can start Internet Explorer in Kiosk or full-screen mode by adding a parameter to the Internet Explorer executable file name by using the following syntax:
iexplore.exe -k
The following is a list of parameters you can use for starting Internet Explorer:
-new = Launches the browser window in a new browsing process.
-remote = Starts a remote instance of Internet Explorer on UNIX platforms only.
-k = Starts the browser in Kiosk or full-screen mode.
-nohome = Starts Internet Explorer without its home page.
-embedding = Starts the Web browser control (no home page is displayed).
-channelband = Displays the channels folder.
-e = Starts Internet Explorer Help on UNIX platforms only.
-v (also -version) = Can be used to specify the version on UNIX platforms only.
Whenever doing this:
iexplore "complete_URL_name"
make sure the URL name is typed between quotes [as shown above], expecially if URL name contains any spaces.
To use iexplore with command line params from within a DOS BATch file, make sure you use START /W if other commands follow, to make sure they execute in sequence, and that iexplore command completes before next one starts [example]:
start /w iexplore "http://www.msfn.org/board/"
HTH