Search code examples
installationnsisuninstallation

Adding custom pages to uninstaller


I am creating a custom page in my uninstaller as follows:

UninstPage custom mypageCreate
.....
.....
.....
Function mypageCreate
   ;call nsDialogs or InstallOptions functions here
FunctionEnd UninstPage custom mypageCreate

But I am getting an error- Error- resolving create-page function "mypageCreate" in uninstall pages. Help..


Solution

  • I think it must be prefixed with "un." :

    UninstPage custom un.mypageCreate
    Function un.mypageCreate
    ...