From d6d0ef0d04cb772bd9b69e0dc36bc7789793abfc Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 13 Sep 2003 10:12:01 +0000 Subject: [PATCH] backslashes instead of slashes git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2911 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/usefulinfos.but | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/src/usefulinfos.but b/Docs/src/usefulinfos.but index 7f2d2078..b2dc5ee3 100644 --- a/Docs/src/usefulinfos.but +++ b/Docs/src/usefulinfos.but @@ -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 \\HKLM/Software/Microsoft/Windows/CurrentVersion/Uninstall\\ to add entries to the "Add/Remove Programs" section in the Control Panel. +Create a key with your product name under \\HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\ 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" \\Required values\\