In the autorun of a CD, I would like to open Internet Explorer with a specific HTML file on the disc
I prefer to organise all of that in a batch file (command line in Windows)
I need to open a different file based on the version of the IE installed
so the batch file shoudl contain the following logic (pseudocode)
if IE version (found in registry) >= 6
open iexplore test.htm
else
open iexplore test2.htm
end
Two issues here
- how do I write the batch file
- how can I launch Iexplore with a local file
I know that "start test.html" works, but opens the default browser, not necessarily IE
I found that start iexplore
http://blablabla.com/test.htm" works, but I can't combine the two
Thanks for your help
Geert
Start Free Trial