Executing an INF file?
I am having trouble executing an INF file from the installer or batch file. Anyone know how to do this?
6 posts
For People without notepad or an ini/inf configuration editor,
Exec '"$WINDIR\Notepad.exe" "$INSTDIR\myconfig.inf"'
or for fun,
ExecShell open '"$INSTDIR\myconfig.inf"'
Hope That Helps.
IfFileExists $WINDIR\Notepad.exe 0 nonote
Exec '"$WINDIR\Notepad.exe" "$INSTDIR\myconfig.inf"'
Goto pass
nonote:
ExecShell open '"$INSTDIR\myconfig.inf"'
pass: