1

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

4

3 回答 3

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

UninstPage custom un.mypageCreate
于 2009-09-02T00:21:56.963 回答
5

例子:

UninstPage custom un.mypage

Function un.mypage
    ;func body here
FunctionEnd

“联合国。” 是卸载功能所必需的。

于 2010-10-12T15:35:13.603 回答
0

函数必须以 un 开头。(例如“un.myPageCreate”)虽然我不确定这是错误消息所指的问题。

于 2010-04-09T15:59:42.387 回答