使用NSIS时,如何使用自定义页面创建卸载程序?

1 nsis uninstallation

我想有一个自定义NS页面的卸载程序.我如何使用NSIS做到这一点?

And*_*ers 5

Function un.mypageCreate
;call nsDialogs or InstallOptions functions here
FunctionEnd

UninstPage custom un.mypageCreate
Run Code Online (Sandbox Code Playgroud)


Rov*_*ver 5

例:

UninstPage custom un.mypage

Function un.mypage
    ;func body here
FunctionEnd
Run Code Online (Sandbox Code Playgroud)

"联合国." 是卸载功能所必需的.