When using NSIS, how do I create an uninstaller with custom pages?

I would like to have an uninstaller with custom NS pages. How to do this with NSIS?

+1
source share
3 answers
Function un.mypageCreate ;call nsDialogs or InstallOptions functions here FunctionEnd UninstPage custom un.mypageCreate 
+5
source

Example:

 UninstPage custom un.mypage Function un.mypage ;func body here FunctionEnd 

"un." required to remove features.

+5
source

The function must begin with un. (for example, "un.myPageCreate"), although I'm not sure the problem is with the error message.

0
source

Source: https://habr.com/ru/post/1394240/


All Articles