backslashes instead of slashes

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2911 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-09-13 10:12:01 +00:00
parent 103b31643e
commit d6d0ef0d04

View file

@ -30,13 +30,13 @@ Silent installers:
\H{useful_add_uninst_infos}Add uninstall information to Add/Remove Programs
Create a key with your product name under \\<b\\>HKLM/Software/Microsoft/Windows/CurrentVersion/Uninstall\\</b\\> to add entries to the "Add/Remove Programs" section in the Control Panel.
Create a key with your product name under \\<b\\>HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\</b\\> to add entries to the "Add/Remove Programs" section in the Control Panel.
For Windows NT (NT4/2000/XP), it's also possible to create the key in the HKCU hive, so it will only appear for the current user.
There are several values you can write to key to give information about your application and the uninstaller.
Write a value using the WriteRegStr command (for strings) or WriteRegDWORD command (for DWORD values). Example:
\c WriteRegStr HKLM "Software/Microsoft/Windows/CurrentVersion/Uninstall/Product" "DisplayName" "Application Name"
\c WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Product" "DisplayName" "Application Name"
\\<b\\>Required values\\</b\\>