i try writing to HKLM\Software\...... with one of my installers, i have defined
but it does not work, UAC is disabled on my machine.RequestExecutionLevel admin
Anyone know a quick workaround?
Btw. here is what i use to test
Thanks in advance
; example1.nsi
;
; This script is perhaps one of the simplest NSIs you can make. All of the
; optional settings are left to their default settings. The installer simply
; prompts the user asking them where to install, and drops a copy of example1.nsi
; there.
;--------------------------------
; The name of the installer
Name "Example1"
; The file to write
OutFile "example1.exe"
; The default installation directory
InstallDir $DESKTOP\Example1
; Request application privileges for Windows Vista
RequestExecutionLevel admin
;--------------------------------
; Pages
Page directory
Page instfiles
;--------------------------------
; The stuff to install
Section "" ;No components page, name is not important
; Set output path to the installation directory.
SetOutPath $INSTDIR
; Put file there
File example1.nsi
WriteRegStr HKLM "Software\My Company\My Software" "String Value" "dead beef"
SectionEnd ; end the section
xBarns