Skip to content
⌘ NSIS Forum Archive

Uninstall:How to create uninstall.exe by different language?

6 posts

hsl9999#

Uninstall:How to create uninstall.exe by different language?

dear everybody
i don't create uninstall.exe by different language.

why ?

section uninstall
WriteUninstaller "$INSTDIR\Uninstall.exe"

hellp me.
Thanks guys.
glory_man#
Section "uninstall" need to uninstall product. Here you can delete installed files. To create uninstaller use one of the installer sections or functions.
hsl9999#
Thank you.
But it have a lot of question.
I install product by French,but when I Uninstall product , its language is english.
why?
Thanks guys.
Takhir#

!define APP_NAME MyApp
!define COMP_NAME MyCompany
!define REG_PATH "Software\${COMP_NAME}\${APP_NAME}"
!define MUI_LANGDLL_REGISTRY_ROOT HKCU
!define MUI_LANGDLL_REGISTRY_KEY "${REG_PATH}"
!define MUI_LANGDLL_REGISTRY_VALUENAME Language
!insertmacro MUI_RESERVEFILE_LANGDLL
This registry value (1033, 1036, 1049) also helps with current user lang when application is running.