Unicode NSIS Exec/ExecWait
Is it possible to execute command within Unicode NSIS script. Execution works ok, if开发者_如何学C i use non Unicode NSIS version, but when i try it with Unicode version it just doest do anything.
Command: Exec '"$TEMP/myFile.exe"'
Thank you
I found workaround. I used UAC plugin (Unicode version) and executed
!insertmacro UAC_AsUser_ExecShell "$TEMP\myFile.exe"
精彩评论