//flex table opened by JP

Click to See Complete Forum and Search --> : how to make autorun.inf


oscar7
03-30-2003, 03:22 PM
i'm trying to make an autorun CD that will open an html file on the disc automatically with the system's internet browser. what do i put in the autorun.inf file?

i tried:
[autorun]
open=iexplore \index.html

with iexplore.exe burned on the CD as well, but it always tries to open c:\index.html, and not the index.html on the CD.

Thanks.

qball
03-30-2003, 09:05 PM
this may be helpful...

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_basics/shell_basics_extending/autorun/autoplay_cmds.asp

as far as the correct index.html, the above will explain why " tries to open c:\index.html"

try:
open=iexplore .\index.html
OR
open=iexplore ..\index.html
OR
open=index.html
OR
open=start index.html

Eric Legge
03-31-2003, 05:00 PM
Look at this page -

http://www.karenware.com/powertools/ptautorun.asp


Eric,

http://www.legge40.freeserve.co.uk/BuyerBeware.htm

oscar7
03-31-2003, 08:29 PM
thanks for the help. i got it to work.