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


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.


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.



!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.

And don't forget


!insertmacro MUI_UNGETLANGUAGE

in un.onInit function.

Thank guys.