tags:

views:

55

answers:

1

Hi!

Is it possible to execute command within Unicode NSIS script. Execution works ok, if 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

A: 

I found workaround. I used UAC plugin (Unicode version) and executed !insertmacro UAC_AsUser_ExecShell "" "$TEMP\myFile.exe" "" "" ""

Jure Polutnik