0
我寫了一個帶有!define MUI_CUSTOMFUNCTION_ABORT _onUserAbort
中止調用的NSIS腳本。在_onUserAbort
函數裏我想刪除一些文件。NSIS:如何清理中止安裝的文件?
這裏是我的功能:
Function _onUserAbort
MessageBox MB_YESNO "Are you sure you want to abort the installation?" IDYES true IDNO false
true:
;cleanup function
Abort
false:
FunctionEnd
如果我「是」什麼都不做點擊,但如果我點擊「否」就中止安裝。請幫助我。
謝謝你,它正在工作。 –