dear everybody
i don't create uninstall.exe by different language.
why ?
section uninstall
WriteUninstaller "$INSTDIR\Uninstall.exe"
hellp me.
Thanks guys.
Uninstall:How to create uninstall.exe by different language?
6 posts
Section "uninstall" need to uninstall product. Here you can delete installed files. To create uninstaller use one of the installer sections or functions.
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.
But it have a lot of question.
I install product by French,but when I Uninstall product , its language is english.
why?
Thanks guys.
This registry value (1033, 1036, 1049) also helps with current user lang when application is running.
!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
And don't forget
in un.onInit function.
!insertmacro MUI_UNGETLANGUAGE
Thank guys.