-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSB2ToolBeta4.0.nsi
386 lines (367 loc) · 15.5 KB
/
SB2ToolBeta4.0.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
; Script generated by the HM NIS Edit Script Wizard.
Unicode True
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "식붕이툴"
!define PRODUCT_VERSION "Beta4.0"
!define PRODUCT_PUBLISHER "고리성운"
!define PRODUCT_WEB_SITE "https://blog.naver.com/dnjsfh611/"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\SB2Tool.exe"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
; MUI 1.67 compatible ------
!include "MUI.nsh"
; MUI Settings
!define MUI_ABORTWARNING
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
!define MUI_WELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\sb2tl_welcome.bmp"
!define MUI_WELCOMEFINISHPAGE_UNBITMAP "${NSISDIR}\Contrib\Graphics\Wizard\sb2tl_welcome.bmp"
; Welcome page
!insertmacro MUI_PAGE_WELCOME
; Directory page
!insertmacro MUI_PAGE_DIRECTORY
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
!define MUI_FINISHPAGE_RUN "$INSTDIR\SB2Tool.exe"
!insertmacro MUI_PAGE_FINISH
; Uninstaller pages
!insertmacro MUI_UNPAGE_INSTFILES
; Language files
!insertmacro MUI_LANGUAGE "Korean"
; MUI end ------
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "식붕이툴-Beta4.0_Setup.exe"
InstallDir "$PROGRAMFILES\SB2Tool"
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
ShowUnInstDetails show
Section "MainSection" SEC01
SetOutPath "$INSTDIR"
File "dist\SB2Tool\base_library.zip"
SetOutPath "$INSTDIR\icons"
File "dist\SB2Tool\icons\advset.png"
File "dist\SB2Tool\icons\after.png"
File "dist\SB2Tool\icons\auto.png"
File "dist\SB2Tool\icons\background.png"
File "dist\SB2Tool\icons\before.png"
File "dist\SB2Tool\icons\bold.png"
File "dist\SB2Tool\icons\bookmark.png"
File "dist\SB2Tool\icons\change.png"
File "dist\SB2Tool\icons\chgthrpnt.png"
File "dist\SB2Tool\icons\conversation.png"
File "dist\SB2Tool\icons\ctrlv.png"
File "dist\SB2Tool\icons\effect.png"
File "dist\SB2Tool\icons\emphasis.png"
File "dist\SB2Tool\icons\find.png"
File "dist\SB2Tool\icons\italic.png"
File "dist\SB2Tool\icons\link.png"
File "dist\SB2Tool\icons\macromode.png"
File "dist\SB2Tool\icons\narration.png"
File "dist\SB2Tool\icons\none.png"
File "dist\SB2Tool\icons\open.png"
File "dist\SB2Tool\icons\paste.png"
File "dist\SB2Tool\icons\psmode.png"
File "dist\SB2Tool\icons\record.png"
File "dist\SB2Tool\icons\reset.png"
File "dist\SB2Tool\icons\sbticon.png"
File "dist\SB2Tool\icons\setmacro.png"
File "dist\SB2Tool\icons\setpro.png"
File "dist\SB2Tool\icons\setpsmode.png"
File "dist\SB2Tool\icons\text.png"
File "dist\SB2Tool\icons\think.png"
File "dist\SB2Tool\icons\unlink.png"
SetOutPath "$INSTDIR"
File "dist\SB2Tool\libcrypto-1_1.dll"
File "dist\SB2Tool\libffi-7.dll"
File "dist\SB2Tool\libssl-1_1.dll"
File "dist\SB2Tool\mfc140u.dll"
SetOutPath "$INSTDIR\psutil"
File "dist\SB2Tool\psutil\_psutil_windows.cp38-win_amd64.pyd"
SetOutPath "$INSTDIR"
File "dist\SB2Tool\pyexpat.pyd"
SetOutPath "$INSTDIR\PyQt5\Qt\bin"
File "dist\SB2Tool\PyQt5\Qt\bin\d3dcompiler_47.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\libEGL.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\libGLESv2.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\MSVCP140.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\MSVCP140_1.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\opengl32sw.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5Core.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5DBus.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5Gui.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5Network.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5Qml.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5QmlModels.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5Quick.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5Svg.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5WebSockets.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\Qt5Widgets.dll"
File "dist\SB2Tool\PyQt5\Qt\bin\VCRUNTIME140_1.dll"
SetOutPath "$INSTDIR\PyQt5\Qt\plugins\generic"
File "dist\SB2Tool\PyQt5\Qt\plugins\generic\qtuiotouchplugin.dll"
SetOutPath "$INSTDIR\PyQt5\Qt\plugins\iconengines"
File "dist\SB2Tool\PyQt5\Qt\plugins\iconengines\qsvgicon.dll"
SetOutPath "$INSTDIR\PyQt5\Qt\plugins\imageformats"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qgif.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qicns.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qico.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qjpeg.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qsvg.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qtga.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qtiff.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qwbmp.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\imageformats\qwebp.dll"
SetOutPath "$INSTDIR\PyQt5\Qt\plugins\platforms"
File "dist\SB2Tool\PyQt5\Qt\plugins\platforms\qminimal.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\platforms\qoffscreen.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\platforms\qwebgl.dll"
File "dist\SB2Tool\PyQt5\Qt\plugins\platforms\qwindows.dll"
SetOutPath "$INSTDIR\PyQt5\Qt\plugins\platformthemes"
File "dist\SB2Tool\PyQt5\Qt\plugins\platformthemes\qxdgdesktopportal.dll"
SetOutPath "$INSTDIR\PyQt5\Qt\plugins\styles"
File "dist\SB2Tool\PyQt5\Qt\plugins\styles\qwindowsvistastyle.dll"
SetOutPath "$INSTDIR\PyQt5\Qt\translations"
File "dist\SB2Tool\PyQt5\Qt\translations\qtbase_en.qm"
File "dist\SB2Tool\PyQt5\Qt\translations\qtbase_ja.qm"
File "dist\SB2Tool\PyQt5\Qt\translations\qtbase_ko.qm"
File "dist\SB2Tool\PyQt5\Qt\translations\qtbase_tr.qm"
SetOutPath "$INSTDIR\PyQt5"
File "dist\SB2Tool\PyQt5\QtCore.pyd"
File "dist\SB2Tool\PyQt5\QtGui.pyd"
File "dist\SB2Tool\PyQt5\QtWidgets.pyd"
File "dist\SB2Tool\PyQt5\sip.cp38-win_amd64.pyd"
SetOutPath "$INSTDIR"
File "dist\SB2Tool\python3.dll"
File "dist\SB2Tool\python38.dll"
File "dist\SB2Tool\pythoncom38.dll"
File "dist\SB2Tool\pywintypes38.dll"
File "dist\SB2Tool\SB2Tool.exe"
CreateDirectory "$SMPROGRAMS\식붕이툴"
CreateShortCut "$SMPROGRAMS\식붕이툴\식붕이툴.lnk" "$INSTDIR\SB2Tool.exe"
CreateShortCut "$DESKTOP\식붕이툴.lnk" "$INSTDIR\SB2Tool.exe"
File "dist\SB2Tool\select.pyd"
SetOutPath "$INSTDIR\tcl"
File "dist\SB2Tool\tcl\dummy.txt"
SetOutPath "$INSTDIR\tcl8\8.4\platform"
File "dist\SB2Tool\tcl8\8.4\platform\shell-1.1.4.tm"
SetOutPath "$INSTDIR\tcl8\8.4"
File "dist\SB2Tool\tcl8\8.4\platform-1.0.14.tm"
SetOutPath "$INSTDIR\tcl8\8.5"
File "dist\SB2Tool\tcl8\8.5\msgcat-1.6.1.tm"
File "dist\SB2Tool\tcl8\8.5\tcltest-2.5.0.tm"
SetOutPath "$INSTDIR\tcl8\8.6"
File "dist\SB2Tool\tcl8\8.6\http-2.9.0.tm"
SetOutPath "$INSTDIR\tk"
File "dist\SB2Tool\tk\dummy.txt"
SetOutPath "$INSTDIR"
File "dist\SB2Tool\unicodedata.pyd"
File "dist\SB2Tool\VCRUNTIME140.dll"
File "dist\SB2Tool\VCRUNTIME140_1.dll"
SetOutPath "$INSTDIR\wheel-0.38.4.dist-info"
File "dist\SB2Tool\wheel-0.38.4.dist-info\entry_points.txt"
File "dist\SB2Tool\wheel-0.38.4.dist-info\INSTALLER"
File "dist\SB2Tool\wheel-0.38.4.dist-info\LICENSE.txt"
File "dist\SB2Tool\wheel-0.38.4.dist-info\METADATA"
File "dist\SB2Tool\wheel-0.38.4.dist-info\RECORD"
File "dist\SB2Tool\wheel-0.38.4.dist-info\top_level.txt"
File "dist\SB2Tool\wheel-0.38.4.dist-info\WHEEL"
SetOutPath "$INSTDIR"
File "dist\SB2Tool\win32api.pyd"
File "dist\SB2Tool\win32gui.pyd"
File "dist\SB2Tool\win32process.pyd"
File "dist\SB2Tool\win32trace.pyd"
File "dist\SB2Tool\win32ui.pyd"
File "dist\SB2Tool\win32wnet.pyd"
File "dist\SB2Tool\_asyncio.pyd"
File "dist\SB2Tool\_bz2.pyd"
File "dist\SB2Tool\_ctypes.pyd"
File "dist\SB2Tool\_decimal.pyd"
File "dist\SB2Tool\_elementtree.pyd"
File "dist\SB2Tool\_hashlib.pyd"
File "dist\SB2Tool\_lzma.pyd"
File "dist\SB2Tool\_multiprocessing.pyd"
File "dist\SB2Tool\_overlapped.pyd"
File "dist\SB2Tool\_queue.pyd"
File "dist\SB2Tool\_socket.pyd"
File "dist\SB2Tool\_ssl.pyd"
File "dist\SB2Tool\_tkinter.pyd"
File "dist\SB2Tool\_win32sysloader.pyd"
SectionEnd
Section -AdditionalIcons
WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
CreateShortCut "$SMPROGRAMS\식붕이툴\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url"
CreateShortCut "$SMPROGRAMS\식붕이툴\Uninstall.lnk" "$INSTDIR\uninst.exe"
SectionEnd
Section -Post
WriteUninstaller "$INSTDIR\uninst.exe"
WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\SB2Tool.exe"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\SB2Tool.exe"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
SectionEnd
Function un.onUninstSuccess
HideWindow
MessageBox MB_ICONINFORMATION|MB_OK "식붕이툴은 완전히 제거되었습니다."
FunctionEnd
Function un.onInit
MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "식붕이툴을 제거하시겠습니까?" IDYES +2
Abort
FunctionEnd
Section Uninstall
Delete "$INSTDIR\${PRODUCT_NAME}.url"
Delete "$INSTDIR\uninst.exe"
Delete "$INSTDIR\_win32sysloader.pyd"
Delete "$INSTDIR\_tkinter.pyd"
Delete "$INSTDIR\_ssl.pyd"
Delete "$INSTDIR\_socket.pyd"
Delete "$INSTDIR\_queue.pyd"
Delete "$INSTDIR\_overlapped.pyd"
Delete "$INSTDIR\_multiprocessing.pyd"
Delete "$INSTDIR\_lzma.pyd"
Delete "$INSTDIR\_hashlib.pyd"
Delete "$INSTDIR\_elementtree.pyd"
Delete "$INSTDIR\_decimal.pyd"
Delete "$INSTDIR\_ctypes.pyd"
Delete "$INSTDIR\_bz2.pyd"
Delete "$INSTDIR\_asyncio.pyd"
Delete "$INSTDIR\win32wnet.pyd"
Delete "$INSTDIR\win32ui.pyd"
Delete "$INSTDIR\win32trace.pyd"
Delete "$INSTDIR\win32process.pyd"
Delete "$INSTDIR\win32gui.pyd"
Delete "$INSTDIR\win32api.pyd"
Delete "$INSTDIR\wheel-0.38.4.dist-info\WHEEL"
Delete "$INSTDIR\wheel-0.38.4.dist-info\top_level.txt"
Delete "$INSTDIR\wheel-0.38.4.dist-info\RECORD"
Delete "$INSTDIR\wheel-0.38.4.dist-info\METADATA"
Delete "$INSTDIR\wheel-0.38.4.dist-info\LICENSE.txt"
Delete "$INSTDIR\wheel-0.38.4.dist-info\INSTALLER"
Delete "$INSTDIR\wheel-0.38.4.dist-info\entry_points.txt"
Delete "$INSTDIR\VCRUNTIME140_1.dll"
Delete "$INSTDIR\VCRUNTIME140.dll"
Delete "$INSTDIR\unicodedata.pyd"
Delete "$INSTDIR\tk\dummy.txt"
Delete "$INSTDIR\tcl8\8.6\http-2.9.0.tm"
Delete "$INSTDIR\tcl8\8.5\tcltest-2.5.0.tm"
Delete "$INSTDIR\tcl8\8.5\msgcat-1.6.1.tm"
Delete "$INSTDIR\tcl8\8.4\platform-1.0.14.tm"
Delete "$INSTDIR\tcl8\8.4\platform\shell-1.1.4.tm"
Delete "$INSTDIR\tcl\dummy.txt"
Delete "$INSTDIR\select.pyd"
Delete "$INSTDIR\SB2Tool.exe"
Delete "$INSTDIR\pywintypes38.dll"
Delete "$INSTDIR\pythoncom38.dll"
Delete "$INSTDIR\python38.dll"
Delete "$INSTDIR\python3.dll"
Delete "$INSTDIR\PyQt5\sip.cp38-win_amd64.pyd"
Delete "$INSTDIR\PyQt5\QtWidgets.pyd"
Delete "$INSTDIR\PyQt5\QtGui.pyd"
Delete "$INSTDIR\PyQt5\QtCore.pyd"
Delete "$INSTDIR\PyQt5\Qt\translations\qtbase_tr.qm"
Delete "$INSTDIR\PyQt5\Qt\translations\qtbase_ko.qm"
Delete "$INSTDIR\PyQt5\Qt\translations\qtbase_ja.qm"
Delete "$INSTDIR\PyQt5\Qt\translations\qtbase_en.qm"
Delete "$INSTDIR\PyQt5\Qt\plugins\styles\qwindowsvistastyle.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\platformthemes\qxdgdesktopportal.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\platforms\qwindows.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\platforms\qwebgl.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\platforms\qoffscreen.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\platforms\qminimal.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qwebp.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qwbmp.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qtiff.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qtga.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qsvg.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qjpeg.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qico.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qicns.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\imageformats\qgif.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\iconengines\qsvgicon.dll"
Delete "$INSTDIR\PyQt5\Qt\plugins\generic\qtuiotouchplugin.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\VCRUNTIME140_1.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5Widgets.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5WebSockets.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5Svg.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5Quick.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5QmlModels.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5Qml.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5Network.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5Gui.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5DBus.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\Qt5Core.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\opengl32sw.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\MSVCP140_1.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\MSVCP140.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\libGLESv2.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\libEGL.dll"
Delete "$INSTDIR\PyQt5\Qt\bin\d3dcompiler_47.dll"
Delete "$INSTDIR\pyexpat.pyd"
Delete "$INSTDIR\psutil\_psutil_windows.cp38-win_amd64.pyd"
Delete "$INSTDIR\mfc140u.dll"
Delete "$INSTDIR\libssl-1_1.dll"
Delete "$INSTDIR\libffi-7.dll"
Delete "$INSTDIR\libcrypto-1_1.dll"
Delete "$INSTDIR\icons\unlink.png"
Delete "$INSTDIR\icons\think.png"
Delete "$INSTDIR\icons\text.png"
Delete "$INSTDIR\icons\setpsmode.png"
Delete "$INSTDIR\icons\setpro.png"
Delete "$INSTDIR\icons\setmacro.png"
Delete "$INSTDIR\icons\sbticon.png"
Delete "$INSTDIR\icons\reset.png"
Delete "$INSTDIR\icons\record.png"
Delete "$INSTDIR\icons\psmode.png"
Delete "$INSTDIR\icons\paste.png"
Delete "$INSTDIR\icons\open.png"
Delete "$INSTDIR\icons\none.png"
Delete "$INSTDIR\icons\narration.png"
Delete "$INSTDIR\icons\macromode.png"
Delete "$INSTDIR\icons\link.png"
Delete "$INSTDIR\icons\italic.png"
Delete "$INSTDIR\icons\find.png"
Delete "$INSTDIR\icons\emphasis.png"
Delete "$INSTDIR\icons\effect.png"
Delete "$INSTDIR\icons\ctrlv.png"
Delete "$INSTDIR\icons\conversation.png"
Delete "$INSTDIR\icons\chgthrpnt.png"
Delete "$INSTDIR\icons\change.png"
Delete "$INSTDIR\icons\bookmark.png"
Delete "$INSTDIR\icons\bold.png"
Delete "$INSTDIR\icons\before.png"
Delete "$INSTDIR\icons\background.png"
Delete "$INSTDIR\icons\auto.png"
Delete "$INSTDIR\icons\after.png"
Delete "$INSTDIR\icons\advset.png"
Delete "$INSTDIR\base_library.zip"
Delete "$SMPROGRAMS\식붕이툴\Uninstall.lnk"
Delete "$SMPROGRAMS\식붕이툴\Website.lnk"
Delete "$DESKTOP\식붕이툴.lnk"
Delete "$SMPROGRAMS\식붕이툴\식붕이툴.lnk"
RMDir "$SMPROGRAMS\식붕이툴"
RMDir "$INSTDIR\wheel-0.38.4.dist-info"
RMDir "$INSTDIR\tk"
RMDir "$INSTDIR\tcl8\8.6"
RMDir "$INSTDIR\tcl8\8.5"
RMDir "$INSTDIR\tcl8\8.4\platform"
RMDir "$INSTDIR\tcl8\8.4"
RMDir "$INSTDIR\tcl"
RMDir "$INSTDIR\PyQt5\Qt\translations"
RMDir "$INSTDIR\PyQt5\Qt\plugins\styles"
RMDir "$INSTDIR\PyQt5\Qt\plugins\platformthemes"
RMDir "$INSTDIR\PyQt5\Qt\plugins\platforms"
RMDir "$INSTDIR\PyQt5\Qt\plugins\imageformats"
RMDir "$INSTDIR\PyQt5\Qt\plugins\iconengines"
RMDir "$INSTDIR\PyQt5\Qt\plugins\generic"
RMDir "$INSTDIR\PyQt5\Qt\bin"
RMDir "$INSTDIR\PyQt5"
RMDir "$INSTDIR\psutil"
RMDir "$INSTDIR\icons"
RMDir "$INSTDIR"
DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
SetAutoClose true
SectionEnd