I would like to have an uninstaller with custom NS pages. How do I do that with NSIS?
A:
Function mypageCreate
;call nsDialogs or InstallOptions functions here
FunctionEnd
UninstPage custom mypageCreate
Anders
2009-09-02 00:21:56
Cool. Thank you.
2009-09-02 01:25:29
A:
I did the same. But I am getting- Error- resolving create-page funtion "mypageCreate" in uninstall pages. Help...
Pia
2009-12-09 06:17:00
A:
The Function has to begin with un. (e.g. "un.myPageCreate") though I'm not sure that is the problem the error message is referring to.
Russell Gallop
2010-04-09 15:59:42
A:
Example:
UninstPage custom un.mypage
Function un.mypage
;func body here
FunctionEnd
"un." is required for uninstall functions.
Rover
2010-10-12 15:35:13