html autorun CD problem?

simbachambers

New member
I'm trying to create an autorun CD that will play my HTML webnpage. I'm currently using the following:
autorun.inf

As well as the following code:
[autorun]
OPEN=iexplore.exe access-index.html

It does open, but can not find my page to display. Any idea's on whats wrong?
 
It's looking for the web page in the same directory as iexplore.exe

Simply have a batch file that runs from autorun instead.

autorun.bat:
start access-index.html

[autorun]
OPEN=autorun.bat

Note: this will run the HTML file in the default browser, not specifically IE.
 
Back
Top