It's suprisingly quite easy ;-)
AUTORUN.INF will only run executables (.COM, .BAT, .EXE).
So, what you do is have it run a BATCH file that loads what ever file you wish. I personally use AUTORUN.BAT but it can be named what ever you like.
Your Batch file should look something simply like this:
@ECHO OFF
START INDEX.HTML
EXIT
What's really cool about this is it works for ANY file. I used this trick to get my Autorun DivX movies to acutally autorun again. Anyway, hope this helps.
