How can I execute an HTML file which is held on my local machine?
Exec "$INSTDIR\screen.htm"
Does not work :-(
Execute a HTML file
5 posts
Did you try the ExecShell?
you can make a test.cmd with the code:
start %1 and call this withExec '"$INSTDIR\test.cmd" "$INSTDIR\screen.htm"' or you call the IE Exec '"$PROGRAMFILES\Internet Explorer\IEXPLORE.EXE" "$INSTDIR\screen.htm"' i hope this works...You don't have to make it that difficult, just use ExecShell.
ExecShell worked a treat :-)