i had a small issue with the "unblock.js"-file that is running if you start the instantsupport.exe.
In your Code you try to start that script, but you don't tell windows which programm should execute the script. So windows use the program that is associated with the filetype. Thats in 90% of all cases the right program (wscript.exe), but i associated *.js files with an texteditor
Every time i start the instantsupport.exe, this texteditor starts and shows me the unblock.js file
Fix:
Change Line 118 in the InstantSupport.au3
- Code: Select all
ShellExecuteWait($WorkingPath & "\unblock.js", "", @ScriptDir, "")
with that line
- Code: Select all
ShellExecuteWait("wscript.exe", $WorkingPath & "\unblock.js", @ScriptDir, "")
and it should execute the right executable with the right script.
Long text for such an easy task ... sorry


