-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e43ee8e
commit ac9228b
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
!include nsDialogs.nsh | ||
|
||
XPStyle on | ||
|
||
!macro customUnInstall | ||
; Uninstall process execution | ||
${ifNot} ${isUpdated} | ||
# If you tick Delete fixed folder | ||
MessageBox MB_OKCANCEL "Do you also want to delete jan data at $PROFILE\jan?" IDOK label_ok IDCANCEL label_cancel | ||
label_ok: | ||
# Delete user data folder | ||
RMDir /r $PROFILE\jan | ||
Goto end | ||
label_cancel: | ||
Goto end | ||
end: | ||
${endIf} | ||
!macroend |