NSIS/Examples/Memento.nsi
joostverburg 5470b63b04 Windows Vista UAC setting
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5495 212acab6-be3b-0410-9dea-997c60f758d6
2008-01-27 17:44:55 +00:00

79 lines
1.4 KiB
NSIS

!include LogicLib.nsh
!include Memento.nsh
Name Memento
OutFile Memento.exe
XPStyle on
ShowInstDetails show
Page components
Page instfiles
RequestExecutionLevel user
# settings
!define MEMENTO_REGISTRY_ROOT HKCU
!define MEMENTO_REGISTRY_KEY "Software\NSIS\Memento Test"
# restore
Function .onInit
${If} ${Cmd} `MessageBox MB_YESNO "Would you like to load an example state?" IDYES`
DeleteRegKey HKCU "Software\NSIS\Memento Test"
WriteRegStr HKCU "Software\NSIS\Memento Test" MementoSectionUsed ""
WriteRegDWORD HKCU "Software\NSIS\Memento Test" MementoSection_sec_horse 1
WriteRegDWORD HKCU "Software\NSIS\Memento Test" MementoSection_sec_chicken 1
WriteRegDWORD HKCU "Software\NSIS\Memento Test" MementoSection_sec_donkey 0
WriteRegDWORD HKCU "Software\NSIS\Memento Test" MementoSection_sec_croc 0
${EndIf}
${MementoSectionRestore}
FunctionEnd
# sections
${MementoSection} horse sec_horse
${MementoSectionEnd}
${MementoSection} donkey sec_donkey
${MementoSectionEnd}
${MementoSection} chicken sec_chicken
${MementoSectionEnd}
SectionGroup /e group
SectionGroup /e group
${MementoSection} croc sec_croc
${MementoSectionEnd}
${MementoSection} cow sec_cow
${MementoSectionEnd}
SectionGroupEnd
SectionGroupEnd
${MementoUnselectedSection} dinosaur sec_dinosaur
${MementoSectionEnd}
# done...
${MementoSectionDone}
# save
Function .onInstSuccess
${MementoSectionSave}
FunctionEnd