Executing HTA files
I'm trying to execute an HTA file, but the compiler just seems to skip over this command, any reason why?
ExecWait '"$INSTDIR\refresh.hta"'
Archive: Executing HTA files
Executing HTA files
I'm trying to execute an HTA file, but the compiler just seems to skip over this command, any reason why?
ExecWait '"$INSTDIR\refresh.hta"'
either use ExecShell, or if you need to wait, execwait '"$sysdir\mshta.exe" "$INSTDIR\refresh.hta"'
Works like a dream, thanks for the speedy reply