he wei
2022-11-17 cd327dcbaca3476df44b064e56b950dc054cbb87
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
; Script generated by the HM NIS Edit Script Wizard.
 
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "My application"
!define PRODUCT_VERSION "1.0"
!define PRODUCT_PUBLISHER "My company, Inc."
!define PRODUCT_WEB_SITE "http://www.mycompany.com"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\elevate.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"
 
; Welcome page
!insertmacro MUI_PAGE_WELCOME
; License page
!insertmacro MUI_PAGE_LICENSE "c:\path\to\licence\YourSoftwareLicence.txt"
; Directory page
!insertmacro MUI_PAGE_DIRECTORY
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
!insertmacro MUI_PAGE_FINISH
 
; Uninstaller pages
!insertmacro MUI_UNPAGE_INSTFILES
 
; Language files
!insertmacro MUI_LANGUAGE "English"
 
; MUI end ------
 
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "Setup.exe"
InstallDir "$PROGRAMFILES\My application"
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
ShowUnInstDetails show
 
Section "MainSection" SEC01
  SetOutPath "$INSTDIR"
  File "dist_electron\win-unpacked\chrome_100_percent.pak"
  File "dist_electron\win-unpacked\chrome_200_percent.pak"
  File "dist_electron\win-unpacked\d3dcompiler_47.dll"
  File "dist_electron\win-unpacked\ffmpeg.dll"
  File "dist_electron\win-unpacked\icudtl.dat"
  File "dist_electron\win-unpacked\libEGL.dll"
  File "dist_electron\win-unpacked\libGLESv2.dll"
  File "dist_electron\win-unpacked\LICENSE.electron.txt"
  File "dist_electron\win-unpacked\LICENSES.chromium.html"
  SetOutPath "$INSTDIR\locales"
  File "dist_electron\win-unpacked\locales\am.pak"
  File "dist_electron\win-unpacked\locales\ar.pak"
  File "dist_electron\win-unpacked\locales\bg.pak"
  File "dist_electron\win-unpacked\locales\bn.pak"
  File "dist_electron\win-unpacked\locales\ca.pak"
  File "dist_electron\win-unpacked\locales\cs.pak"
  File "dist_electron\win-unpacked\locales\da.pak"
  File "dist_electron\win-unpacked\locales\de.pak"
  File "dist_electron\win-unpacked\locales\el.pak"
  File "dist_electron\win-unpacked\locales\en-GB.pak"
  File "dist_electron\win-unpacked\locales\en-US.pak"
  File "dist_electron\win-unpacked\locales\es-419.pak"
  File "dist_electron\win-unpacked\locales\es.pak"
  File "dist_electron\win-unpacked\locales\et.pak"
  File "dist_electron\win-unpacked\locales\fa.pak"
  File "dist_electron\win-unpacked\locales\fi.pak"
  File "dist_electron\win-unpacked\locales\fil.pak"
  File "dist_electron\win-unpacked\locales\fr.pak"
  File "dist_electron\win-unpacked\locales\gu.pak"
  File "dist_electron\win-unpacked\locales\he.pak"
  File "dist_electron\win-unpacked\locales\hi.pak"
  File "dist_electron\win-unpacked\locales\hr.pak"
  File "dist_electron\win-unpacked\locales\hu.pak"
  File "dist_electron\win-unpacked\locales\id.pak"
  File "dist_electron\win-unpacked\locales\it.pak"
  File "dist_electron\win-unpacked\locales\ja.pak"
  File "dist_electron\win-unpacked\locales\kn.pak"
  File "dist_electron\win-unpacked\locales\ko.pak"
  File "dist_electron\win-unpacked\locales\lt.pak"
  File "dist_electron\win-unpacked\locales\lv.pak"
  File "dist_electron\win-unpacked\locales\ml.pak"
  File "dist_electron\win-unpacked\locales\mr.pak"
  File "dist_electron\win-unpacked\locales\ms.pak"
  File "dist_electron\win-unpacked\locales\nb.pak"
  File "dist_electron\win-unpacked\locales\nl.pak"
  File "dist_electron\win-unpacked\locales\pl.pak"
  File "dist_electron\win-unpacked\locales\pt-BR.pak"
  File "dist_electron\win-unpacked\locales\pt-PT.pak"
  File "dist_electron\win-unpacked\locales\ro.pak"
  File "dist_electron\win-unpacked\locales\ru.pak"
  File "dist_electron\win-unpacked\locales\sk.pak"
  File "dist_electron\win-unpacked\locales\sl.pak"
  File "dist_electron\win-unpacked\locales\sr.pak"
  File "dist_electron\win-unpacked\locales\sv.pak"
  File "dist_electron\win-unpacked\locales\sw.pak"
  File "dist_electron\win-unpacked\locales\ta.pak"
  File "dist_electron\win-unpacked\locales\te.pak"
  File "dist_electron\win-unpacked\locales\th.pak"
  File "dist_electron\win-unpacked\locales\tr.pak"
  File "dist_electron\win-unpacked\locales\uk.pak"
  File "dist_electron\win-unpacked\locales\vi.pak"
  File "dist_electron\win-unpacked\locales\zh-CN.pak"
  File "dist_electron\win-unpacked\locales\zh-TW.pak"
  SetOutPath "$INSTDIR\resources"
  File "dist_electron\win-unpacked\resources\app-update.yml"
  File "dist_electron\win-unpacked\resources\app.asar"
  File "dist_electron\win-unpacked\resources\elevate.exe"
  CreateDirectory "$SMPROGRAMS\My application"
  CreateShortCut "$SMPROGRAMS\My application\My application.lnk" "$INSTDIR\resources\elevate.exe"
  CreateShortCut "$DESKTOP\My application.lnk" "$INSTDIR\resources\elevate.exe"
  SetOutPath "$INSTDIR"
  File "dist_electron\win-unpacked\resources.pak"
  File "dist_electron\win-unpacked\resXmlParser.exe"
  File "dist_electron\win-unpacked\snapshot_blob.bin"
  SetOutPath "$INSTDIR\swiftshader"
  File "dist_electron\win-unpacked\swiftshader\libEGL.dll"
  File "dist_electron\win-unpacked\swiftshader\libGLESv2.dll"
  SetOutPath "$INSTDIR"
  File "dist_electron\win-unpacked\v8_context_snapshot.bin"
  File "dist_electron\win-unpacked\vk_swiftshader.dll"
  File "dist_electron\win-unpacked\vk_swiftshader_icd.json"
  File "dist_electron\win-unpacked\vulkan-1.dll"
  File "dependent\install.bat"
  File "dependent\instsrv.exe"
  File "dependent\licence.txt"
  File "dependent\remove_srv.bat"
  File "dependent\res.db"
  File "dependent\ResMeterManager.exe"
  File "dependent\ResMeterManager.jar"
  SetOutPath "$INSTDIR\runtime\bin"
  File "dependent\runtime\bin\api-ms-win-core-console-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-datetime-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-debug-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-errorhandling-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-file-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-file-l1-2-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-file-l2-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-handle-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-heap-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-interlocked-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-libraryloader-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-localization-l1-2-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-memory-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-namedpipe-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-processenvironment-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-processthreads-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-processthreads-l1-1-1.dll"
  File "dependent\runtime\bin\api-ms-win-core-profile-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-rtlsupport-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-string-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-synch-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-synch-l1-2-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-sysinfo-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-timezone-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-core-util-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-conio-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-convert-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-environment-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-filesystem-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-heap-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-locale-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-math-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-multibyte-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-private-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-process-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-runtime-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-stdio-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-string-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-time-l1-1-0.dll"
  File "dependent\runtime\bin\api-ms-win-crt-utility-l1-1-0.dll"
  File "dependent\runtime\bin\attach.dll"
  File "dependent\runtime\bin\awt.dll"
  File "dependent\runtime\bin\bci.dll"
  File "dependent\runtime\bin\concrt140.dll"
  File "dependent\runtime\bin\dcpr.dll"
  File "dependent\runtime\bin\decora_sse.dll"
  File "dependent\runtime\bin\deploy.dll"
  SetOutPath "$INSTDIR\runtime\bin\dtplugin"
  File "dependent\runtime\bin\dtplugin\deployJava1.dll"
  File "dependent\runtime\bin\dtplugin\npdeployJava1.dll"
  SetOutPath "$INSTDIR\runtime\bin"
  File "dependent\runtime\bin\dt_shmem.dll"
  File "dependent\runtime\bin\dt_socket.dll"
  File "dependent\runtime\bin\eula.dll"
  File "dependent\runtime\bin\fontmanager.dll"
  File "dependent\runtime\bin\fxplugins.dll"
  File "dependent\runtime\bin\glass.dll"
  File "dependent\runtime\bin\glib-lite.dll"
  File "dependent\runtime\bin\gstreamer-lite.dll"
  File "dependent\runtime\bin\hprof.dll"
  File "dependent\runtime\bin\instrument.dll"
  File "dependent\runtime\bin\j2pcsc.dll"
  File "dependent\runtime\bin\j2pkcs11.dll"
  File "dependent\runtime\bin\jaas_nt.dll"
  File "dependent\runtime\bin\jabswitch.exe"
  File "dependent\runtime\bin\java-rmi.exe"
  File "dependent\runtime\bin\java.dll"
  File "dependent\runtime\bin\java.exe"
  File "dependent\runtime\bin\JavaAccessBridge-64.dll"
  File "dependent\runtime\bin\javacpl.cpl"
  File "dependent\runtime\bin\javacpl.exe"
  File "dependent\runtime\bin\javafx_font.dll"
  File "dependent\runtime\bin\javafx_font_t2k.dll"
  File "dependent\runtime\bin\javafx_iio.dll"
  File "dependent\runtime\bin\javaw.exe"
  File "dependent\runtime\bin\javaws.exe"
  File "dependent\runtime\bin\java_crw_demo.dll"
  File "dependent\runtime\bin\jawt.dll"
  File "dependent\runtime\bin\JAWTAccessBridge-64.dll"
  File "dependent\runtime\bin\jdwp.dll"
  File "dependent\runtime\bin\jfr.dll"
  File "dependent\runtime\bin\jfxmedia.dll"
  File "dependent\runtime\bin\jfxwebkit.dll"
  File "dependent\runtime\bin\jjs.exe"
  File "dependent\runtime\bin\jli.dll"
  File "dependent\runtime\bin\jp2iexp.dll"
  File "dependent\runtime\bin\jp2launcher.exe"
  File "dependent\runtime\bin\jp2native.dll"
  File "dependent\runtime\bin\jp2ssv.dll"
  File "dependent\runtime\bin\jpeg.dll"
  File "dependent\runtime\bin\jsdt.dll"
  File "dependent\runtime\bin\jsound.dll"
  File "dependent\runtime\bin\jsoundds.dll"
  File "dependent\runtime\bin\keytool.exe"
  File "dependent\runtime\bin\kinit.exe"
  File "dependent\runtime\bin\klist.exe"
  File "dependent\runtime\bin\ktab.exe"
  File "dependent\runtime\bin\lcms.dll"
  File "dependent\runtime\bin\management.dll"
  File "dependent\runtime\bin\mlib_image.dll"
  File "dependent\runtime\bin\msvcp140.dll"
  File "dependent\runtime\bin\msvcr100.dll"
  File "dependent\runtime\bin\net.dll"
  File "dependent\runtime\bin\nio.dll"
  File "dependent\runtime\bin\npt.dll"
  File "dependent\runtime\bin\orbd.exe"
  File "dependent\runtime\bin\pack200.exe"
  SetOutPath "$INSTDIR\runtime\bin\plugin2"
  File "dependent\runtime\bin\plugin2\msvcr100.dll"
  File "dependent\runtime\bin\plugin2\npjp2.dll"
  SetOutPath "$INSTDIR\runtime\bin"
  File "dependent\runtime\bin\policytool.exe"
  File "dependent\runtime\bin\prism_common.dll"
  File "dependent\runtime\bin\prism_d3d.dll"
  File "dependent\runtime\bin\prism_sw.dll"
  File "dependent\runtime\bin\resource.dll"
  File "dependent\runtime\bin\rmid.exe"
  File "dependent\runtime\bin\rmiregistry.exe"
  File "dependent\runtime\bin\sawindbg.dll"
  SetOutPath "$INSTDIR\runtime\bin\server"
  File "dependent\runtime\bin\server\classes.jsa"
  File "dependent\runtime\bin\server\jvm.dll"
  File "dependent\runtime\bin\server\Xusage.txt"
  SetOutPath "$INSTDIR\runtime\bin"
  File "dependent\runtime\bin\servertool.exe"
  File "dependent\runtime\bin\splashscreen.dll"
  File "dependent\runtime\bin\ssv.dll"
  File "dependent\runtime\bin\ssvagent.exe"
  File "dependent\runtime\bin\sunec.dll"
  File "dependent\runtime\bin\sunmscapi.dll"
  File "dependent\runtime\bin\t2k.dll"
  File "dependent\runtime\bin\tnameserv.exe"
  File "dependent\runtime\bin\ucrtbase.dll"
  File "dependent\runtime\bin\unpack.dll"
  File "dependent\runtime\bin\unpack200.exe"
  File "dependent\runtime\bin\vcruntime140.dll"
  File "dependent\runtime\bin\verify.dll"
  File "dependent\runtime\bin\w2k_lsa_auth.dll"
  File "dependent\runtime\bin\WindowsAccessBridge-64.dll"
  File "dependent\runtime\bin\wsdetect.dll"
  File "dependent\runtime\bin\zip.dll"
  SetOutPath "$INSTDIR\runtime"
  File "dependent\runtime\COPYRIGHT"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\accessibility.properties"
  SetOutPath "$INSTDIR\runtime\lib\amd64"
  File "dependent\runtime\lib\amd64\jvm.cfg"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\calendars.properties"
  File "dependent\runtime\lib\charsets.jar"
  File "dependent\runtime\lib\classlist"
  SetOutPath "$INSTDIR\runtime\lib\cmm"
  File "dependent\runtime\lib\cmm\CIEXYZ.pf"
  File "dependent\runtime\lib\cmm\GRAY.pf"
  File "dependent\runtime\lib\cmm\LINEAR_RGB.pf"
  File "dependent\runtime\lib\cmm\PYCC.pf"
  File "dependent\runtime\lib\cmm\sRGB.pf"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\content-types.properties"
  File "dependent\runtime\lib\currency.data"
  SetOutPath "$INSTDIR\runtime\lib\deploy"
  File "dependent\runtime\lib\deploy\ffjcext.zip"
  File "dependent\runtime\lib\deploy\messages.properties"
  File "dependent\runtime\lib\deploy\messages_de.properties"
  File "dependent\runtime\lib\deploy\messages_es.properties"
  File "dependent\runtime\lib\deploy\messages_fr.properties"
  File "dependent\runtime\lib\deploy\messages_it.properties"
  File "dependent\runtime\lib\deploy\messages_ja.properties"
  File "dependent\runtime\lib\deploy\messages_ko.properties"
  File "dependent\runtime\lib\deploy\messages_pt_BR.properties"
  File "dependent\runtime\lib\deploy\messages_sv.properties"
  File "dependent\runtime\lib\deploy\messages_zh_CN.properties"
  File "dependent\runtime\lib\deploy\messages_zh_HK.properties"
  File "dependent\runtime\lib\deploy\messages_zh_TW.properties"
  File "dependent\runtime\lib\deploy\splash.gif"
  File "dependent\runtime\lib\deploy\splash@2x.gif"
  File "dependent\runtime\lib\deploy\splash_11-lic.gif"
  File "dependent\runtime\lib\deploy\splash_11@2x-lic.gif"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\deploy.jar"
  SetOutPath "$INSTDIR\runtime\lib\ext"
  File "dependent\runtime\lib\ext\access-bridge-64.jar"
  File "dependent\runtime\lib\ext\cldrdata.jar"
  File "dependent\runtime\lib\ext\dnsns.jar"
  File "dependent\runtime\lib\ext\jaccess.jar"
  File "dependent\runtime\lib\ext\jfxrt.jar"
  File "dependent\runtime\lib\ext\localedata.jar"
  File "dependent\runtime\lib\ext\meta-index"
  File "dependent\runtime\lib\ext\nashorn.jar"
  File "dependent\runtime\lib\ext\sunec.jar"
  File "dependent\runtime\lib\ext\sunjce_provider.jar"
  File "dependent\runtime\lib\ext\sunmscapi.jar"
  File "dependent\runtime\lib\ext\sunpkcs11.jar"
  File "dependent\runtime\lib\ext\zipfs.jar"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\flavormap.properties"
  File "dependent\runtime\lib\fontconfig.bfc"
  File "dependent\runtime\lib\fontconfig.properties.src"
  SetOutPath "$INSTDIR\runtime\lib\fonts"
  File "dependent\runtime\lib\fonts\LucidaBrightDemiBold.ttf"
  File "dependent\runtime\lib\fonts\LucidaBrightDemiItalic.ttf"
  File "dependent\runtime\lib\fonts\LucidaBrightItalic.ttf"
  File "dependent\runtime\lib\fonts\LucidaBrightRegular.ttf"
  File "dependent\runtime\lib\fonts\LucidaSansDemiBold.ttf"
  File "dependent\runtime\lib\fonts\LucidaSansRegular.ttf"
  File "dependent\runtime\lib\fonts\LucidaTypewriterBold.ttf"
  File "dependent\runtime\lib\fonts\LucidaTypewriterRegular.ttf"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\hijrah-config-umalqura.properties"
  SetOutPath "$INSTDIR\runtime\lib\images\cursors"
  File "dependent\runtime\lib\images\cursors\cursors.properties"
  File "dependent\runtime\lib\images\cursors\invalid32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_CopyDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_CopyNoDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_LinkDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_LinkNoDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_MoveDrop32x32.gif"
  File "dependent\runtime\lib\images\cursors\win32_MoveNoDrop32x32.gif"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\javafx.properties"
  File "dependent\runtime\lib\javaws.jar"
  File "dependent\runtime\lib\jce.jar"
  SetOutPath "$INSTDIR\runtime\lib\jfr"
  File "dependent\runtime\lib\jfr\default.jfc"
  File "dependent\runtime\lib\jfr\profile.jfc"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\jfr.jar"
  File "dependent\runtime\lib\jfxswt.jar"
  File "dependent\runtime\lib\jsse.jar"
  File "dependent\runtime\lib\jvm.hprof.txt"
  File "dependent\runtime\lib\logging.properties"
  SetOutPath "$INSTDIR\runtime\lib\management"
  File "dependent\runtime\lib\management\jmxremote.access"
  File "dependent\runtime\lib\management\jmxremote.password.template"
  File "dependent\runtime\lib\management\management.properties"
  File "dependent\runtime\lib\management\snmp.acl.template"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\management-agent.jar"
  File "dependent\runtime\lib\meta-index"
  File "dependent\runtime\lib\net.properties"
  File "dependent\runtime\lib\plugin.jar"
  File "dependent\runtime\lib\psfont.properties.ja"
  File "dependent\runtime\lib\psfontj2d.properties"
  File "dependent\runtime\lib\resources.jar"
  File "dependent\runtime\lib\rt.jar"
  SetOutPath "$INSTDIR\runtime\lib\security"
  File "dependent\runtime\lib\security\blacklist"
  File "dependent\runtime\lib\security\blacklisted.certs"
  File "dependent\runtime\lib\security\cacerts"
  File "dependent\runtime\lib\security\java.policy"
  File "dependent\runtime\lib\security\java.security"
  File "dependent\runtime\lib\security\javaws.policy"
  SetOutPath "$INSTDIR\runtime\lib\security\policy\limited"
  File "dependent\runtime\lib\security\policy\limited\local_policy.jar"
  File "dependent\runtime\lib\security\policy\limited\US_export_policy.jar"
  SetOutPath "$INSTDIR\runtime\lib\security\policy\unlimited"
  File "dependent\runtime\lib\security\policy\unlimited\local_policy.jar"
  File "dependent\runtime\lib\security\policy\unlimited\US_export_policy.jar"
  SetOutPath "$INSTDIR\runtime\lib\security"
  File "dependent\runtime\lib\security\trusted.libraries"
  SetOutPath "$INSTDIR\runtime\lib"
  File "dependent\runtime\lib\sound.properties"
  File "dependent\runtime\lib\tzdb.dat"
  File "dependent\runtime\lib\tzmappings"
  SetOutPath "$INSTDIR\runtime"
  File "dependent\runtime\LICENSE"
  File "dependent\runtime\README.txt"
  File "dependent\runtime\THIRDPARTYLICENSEREADME-JAVAFX.txt"
  File "dependent\runtime\THIRDPARTYLICENSEREADME.txt"
  File "dependent\runtime\Welcome.html"
  SetOutPath "$INSTDIR"
  File "dependent\setup_srv.bat"
  File "dependent\srvany.exe"
SectionEnd
 
Section -AdditionalIcons
  WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
  CreateShortCut "$SMPROGRAMS\My application\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url"
  CreateShortCut "$SMPROGRAMS\My application\Uninstall.lnk" "$INSTDIR\uninst.exe"
SectionEnd
 
Section -Post
  WriteUninstaller "$INSTDIR\uninst.exe"
  WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\resources\elevate.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\resources\elevate.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 "$(^Name) Òѳɹ¦µØ´ÓÄãµÄ¼ÆËã»úÒÆ³ý¡£"
FunctionEnd
 
Function un.onInit
  MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "ÄãȷʵҪÍêÈ«ÒÆ³ý $(^Name) £¬Æä¼°ËùÓеÄ×é¼þ£¿" IDYES +2
  Abort
FunctionEnd
 
Section Uninstall
  Delete "$INSTDIR\${PRODUCT_NAME}.url"
  Delete "$INSTDIR\uninst.exe"
  Delete "$INSTDIR\srvany.exe"
  Delete "$INSTDIR\setup_srv.bat"
  Delete "$INSTDIR\runtime\Welcome.html"
  Delete "$INSTDIR\runtime\THIRDPARTYLICENSEREADME.txt"
  Delete "$INSTDIR\runtime\THIRDPARTYLICENSEREADME-JAVAFX.txt"
  Delete "$INSTDIR\runtime\README.txt"
  Delete "$INSTDIR\runtime\LICENSE"
  Delete "$INSTDIR\runtime\lib\tzmappings"
  Delete "$INSTDIR\runtime\lib\tzdb.dat"
  Delete "$INSTDIR\runtime\lib\sound.properties"
  Delete "$INSTDIR\runtime\lib\security\trusted.libraries"
  Delete "$INSTDIR\runtime\lib\security\policy\unlimited\US_export_policy.jar"
  Delete "$INSTDIR\runtime\lib\security\policy\unlimited\local_policy.jar"
  Delete "$INSTDIR\runtime\lib\security\policy\limited\US_export_policy.jar"
  Delete "$INSTDIR\runtime\lib\security\policy\limited\local_policy.jar"
  Delete "$INSTDIR\runtime\lib\security\javaws.policy"
  Delete "$INSTDIR\runtime\lib\security\java.security"
  Delete "$INSTDIR\runtime\lib\security\java.policy"
  Delete "$INSTDIR\runtime\lib\security\cacerts"
  Delete "$INSTDIR\runtime\lib\security\blacklisted.certs"
  Delete "$INSTDIR\runtime\lib\security\blacklist"
  Delete "$INSTDIR\runtime\lib\rt.jar"
  Delete "$INSTDIR\runtime\lib\resources.jar"
  Delete "$INSTDIR\runtime\lib\psfontj2d.properties"
  Delete "$INSTDIR\runtime\lib\psfont.properties.ja"
  Delete "$INSTDIR\runtime\lib\plugin.jar"
  Delete "$INSTDIR\runtime\lib\net.properties"
  Delete "$INSTDIR\runtime\lib\meta-index"
  Delete "$INSTDIR\runtime\lib\management-agent.jar"
  Delete "$INSTDIR\runtime\lib\management\snmp.acl.template"
  Delete "$INSTDIR\runtime\lib\management\management.properties"
  Delete "$INSTDIR\runtime\lib\management\jmxremote.password.template"
  Delete "$INSTDIR\runtime\lib\management\jmxremote.access"
  Delete "$INSTDIR\runtime\lib\logging.properties"
  Delete "$INSTDIR\runtime\lib\jvm.hprof.txt"
  Delete "$INSTDIR\runtime\lib\jsse.jar"
  Delete "$INSTDIR\runtime\lib\jfxswt.jar"
  Delete "$INSTDIR\runtime\lib\jfr.jar"
  Delete "$INSTDIR\runtime\lib\jfr\profile.jfc"
  Delete "$INSTDIR\runtime\lib\jfr\default.jfc"
  Delete "$INSTDIR\runtime\lib\jce.jar"
  Delete "$INSTDIR\runtime\lib\javaws.jar"
  Delete "$INSTDIR\runtime\lib\javafx.properties"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_MoveNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_MoveDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_LinkNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_LinkDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_CopyNoDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\win32_CopyDrop32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\invalid32x32.gif"
  Delete "$INSTDIR\runtime\lib\images\cursors\cursors.properties"
  Delete "$INSTDIR\runtime\lib\hijrah-config-umalqura.properties"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaTypewriterRegular.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaTypewriterBold.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaSansRegular.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaSansDemiBold.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaBrightRegular.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaBrightItalic.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaBrightDemiItalic.ttf"
  Delete "$INSTDIR\runtime\lib\fonts\LucidaBrightDemiBold.ttf"
  Delete "$INSTDIR\runtime\lib\fontconfig.properties.src"
  Delete "$INSTDIR\runtime\lib\fontconfig.bfc"
  Delete "$INSTDIR\runtime\lib\flavormap.properties"
  Delete "$INSTDIR\runtime\lib\ext\zipfs.jar"
  Delete "$INSTDIR\runtime\lib\ext\sunpkcs11.jar"
  Delete "$INSTDIR\runtime\lib\ext\sunmscapi.jar"
  Delete "$INSTDIR\runtime\lib\ext\sunjce_provider.jar"
  Delete "$INSTDIR\runtime\lib\ext\sunec.jar"
  Delete "$INSTDIR\runtime\lib\ext\nashorn.jar"
  Delete "$INSTDIR\runtime\lib\ext\meta-index"
  Delete "$INSTDIR\runtime\lib\ext\localedata.jar"
  Delete "$INSTDIR\runtime\lib\ext\jfxrt.jar"
  Delete "$INSTDIR\runtime\lib\ext\jaccess.jar"
  Delete "$INSTDIR\runtime\lib\ext\dnsns.jar"
  Delete "$INSTDIR\runtime\lib\ext\cldrdata.jar"
  Delete "$INSTDIR\runtime\lib\ext\access-bridge-64.jar"
  Delete "$INSTDIR\runtime\lib\deploy.jar"
  Delete "$INSTDIR\runtime\lib\deploy\splash_11@2x-lic.gif"
  Delete "$INSTDIR\runtime\lib\deploy\splash_11-lic.gif"
  Delete "$INSTDIR\runtime\lib\deploy\splash@2x.gif"
  Delete "$INSTDIR\runtime\lib\deploy\splash.gif"
  Delete "$INSTDIR\runtime\lib\deploy\messages_zh_TW.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_zh_HK.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_zh_CN.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_sv.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_pt_BR.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_ko.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_ja.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_it.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_fr.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_es.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages_de.properties"
  Delete "$INSTDIR\runtime\lib\deploy\messages.properties"
  Delete "$INSTDIR\runtime\lib\deploy\ffjcext.zip"
  Delete "$INSTDIR\runtime\lib\currency.data"
  Delete "$INSTDIR\runtime\lib\content-types.properties"
  Delete "$INSTDIR\runtime\lib\cmm\sRGB.pf"
  Delete "$INSTDIR\runtime\lib\cmm\PYCC.pf"
  Delete "$INSTDIR\runtime\lib\cmm\LINEAR_RGB.pf"
  Delete "$INSTDIR\runtime\lib\cmm\GRAY.pf"
  Delete "$INSTDIR\runtime\lib\cmm\CIEXYZ.pf"
  Delete "$INSTDIR\runtime\lib\classlist"
  Delete "$INSTDIR\runtime\lib\charsets.jar"
  Delete "$INSTDIR\runtime\lib\calendars.properties"
  Delete "$INSTDIR\runtime\lib\amd64\jvm.cfg"
  Delete "$INSTDIR\runtime\lib\accessibility.properties"
  Delete "$INSTDIR\runtime\COPYRIGHT"
  Delete "$INSTDIR\runtime\bin\zip.dll"
  Delete "$INSTDIR\runtime\bin\wsdetect.dll"
  Delete "$INSTDIR\runtime\bin\WindowsAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\bin\w2k_lsa_auth.dll"
  Delete "$INSTDIR\runtime\bin\verify.dll"
  Delete "$INSTDIR\runtime\bin\vcruntime140.dll"
  Delete "$INSTDIR\runtime\bin\unpack200.exe"
  Delete "$INSTDIR\runtime\bin\unpack.dll"
  Delete "$INSTDIR\runtime\bin\ucrtbase.dll"
  Delete "$INSTDIR\runtime\bin\tnameserv.exe"
  Delete "$INSTDIR\runtime\bin\t2k.dll"
  Delete "$INSTDIR\runtime\bin\sunmscapi.dll"
  Delete "$INSTDIR\runtime\bin\sunec.dll"
  Delete "$INSTDIR\runtime\bin\ssvagent.exe"
  Delete "$INSTDIR\runtime\bin\ssv.dll"
  Delete "$INSTDIR\runtime\bin\splashscreen.dll"
  Delete "$INSTDIR\runtime\bin\servertool.exe"
  Delete "$INSTDIR\runtime\bin\server\Xusage.txt"
  Delete "$INSTDIR\runtime\bin\server\jvm.dll"
  Delete "$INSTDIR\runtime\bin\server\classes.jsa"
  Delete "$INSTDIR\runtime\bin\sawindbg.dll"
  Delete "$INSTDIR\runtime\bin\rmiregistry.exe"
  Delete "$INSTDIR\runtime\bin\rmid.exe"
  Delete "$INSTDIR\runtime\bin\resource.dll"
  Delete "$INSTDIR\runtime\bin\prism_sw.dll"
  Delete "$INSTDIR\runtime\bin\prism_d3d.dll"
  Delete "$INSTDIR\runtime\bin\prism_common.dll"
  Delete "$INSTDIR\runtime\bin\policytool.exe"
  Delete "$INSTDIR\runtime\bin\plugin2\npjp2.dll"
  Delete "$INSTDIR\runtime\bin\plugin2\msvcr100.dll"
  Delete "$INSTDIR\runtime\bin\pack200.exe"
  Delete "$INSTDIR\runtime\bin\orbd.exe"
  Delete "$INSTDIR\runtime\bin\npt.dll"
  Delete "$INSTDIR\runtime\bin\nio.dll"
  Delete "$INSTDIR\runtime\bin\net.dll"
  Delete "$INSTDIR\runtime\bin\msvcr100.dll"
  Delete "$INSTDIR\runtime\bin\msvcp140.dll"
  Delete "$INSTDIR\runtime\bin\mlib_image.dll"
  Delete "$INSTDIR\runtime\bin\management.dll"
  Delete "$INSTDIR\runtime\bin\lcms.dll"
  Delete "$INSTDIR\runtime\bin\ktab.exe"
  Delete "$INSTDIR\runtime\bin\klist.exe"
  Delete "$INSTDIR\runtime\bin\kinit.exe"
  Delete "$INSTDIR\runtime\bin\keytool.exe"
  Delete "$INSTDIR\runtime\bin\jsoundds.dll"
  Delete "$INSTDIR\runtime\bin\jsound.dll"
  Delete "$INSTDIR\runtime\bin\jsdt.dll"
  Delete "$INSTDIR\runtime\bin\jpeg.dll"
  Delete "$INSTDIR\runtime\bin\jp2ssv.dll"
  Delete "$INSTDIR\runtime\bin\jp2native.dll"
  Delete "$INSTDIR\runtime\bin\jp2launcher.exe"
  Delete "$INSTDIR\runtime\bin\jp2iexp.dll"
  Delete "$INSTDIR\runtime\bin\jli.dll"
  Delete "$INSTDIR\runtime\bin\jjs.exe"
  Delete "$INSTDIR\runtime\bin\jfxwebkit.dll"
  Delete "$INSTDIR\runtime\bin\jfxmedia.dll"
  Delete "$INSTDIR\runtime\bin\jfr.dll"
  Delete "$INSTDIR\runtime\bin\jdwp.dll"
  Delete "$INSTDIR\runtime\bin\JAWTAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\bin\jawt.dll"
  Delete "$INSTDIR\runtime\bin\java_crw_demo.dll"
  Delete "$INSTDIR\runtime\bin\javaws.exe"
  Delete "$INSTDIR\runtime\bin\javaw.exe"
  Delete "$INSTDIR\runtime\bin\javafx_iio.dll"
  Delete "$INSTDIR\runtime\bin\javafx_font_t2k.dll"
  Delete "$INSTDIR\runtime\bin\javafx_font.dll"
  Delete "$INSTDIR\runtime\bin\javacpl.exe"
  Delete "$INSTDIR\runtime\bin\javacpl.cpl"
  Delete "$INSTDIR\runtime\bin\JavaAccessBridge-64.dll"
  Delete "$INSTDIR\runtime\bin\java.exe"
  Delete "$INSTDIR\runtime\bin\java.dll"
  Delete "$INSTDIR\runtime\bin\java-rmi.exe"
  Delete "$INSTDIR\runtime\bin\jabswitch.exe"
  Delete "$INSTDIR\runtime\bin\jaas_nt.dll"
  Delete "$INSTDIR\runtime\bin\j2pkcs11.dll"
  Delete "$INSTDIR\runtime\bin\j2pcsc.dll"
  Delete "$INSTDIR\runtime\bin\instrument.dll"
  Delete "$INSTDIR\runtime\bin\hprof.dll"
  Delete "$INSTDIR\runtime\bin\gstreamer-lite.dll"
  Delete "$INSTDIR\runtime\bin\glib-lite.dll"
  Delete "$INSTDIR\runtime\bin\glass.dll"
  Delete "$INSTDIR\runtime\bin\fxplugins.dll"
  Delete "$INSTDIR\runtime\bin\fontmanager.dll"
  Delete "$INSTDIR\runtime\bin\eula.dll"
  Delete "$INSTDIR\runtime\bin\dt_socket.dll"
  Delete "$INSTDIR\runtime\bin\dt_shmem.dll"
  Delete "$INSTDIR\runtime\bin\dtplugin\npdeployJava1.dll"
  Delete "$INSTDIR\runtime\bin\dtplugin\deployJava1.dll"
  Delete "$INSTDIR\runtime\bin\deploy.dll"
  Delete "$INSTDIR\runtime\bin\decora_sse.dll"
  Delete "$INSTDIR\runtime\bin\dcpr.dll"
  Delete "$INSTDIR\runtime\bin\concrt140.dll"
  Delete "$INSTDIR\runtime\bin\bci.dll"
  Delete "$INSTDIR\runtime\bin\awt.dll"
  Delete "$INSTDIR\runtime\bin\attach.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-utility-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-time-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-string-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-stdio-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-runtime-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-process-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-private-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-multibyte-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-math-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-locale-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-heap-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-filesystem-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-environment-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-convert-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-crt-conio-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-util-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-timezone-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-sysinfo-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-synch-l1-2-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-synch-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-string-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-rtlsupport-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-profile-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-processthreads-l1-1-1.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-processthreads-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-processenvironment-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-namedpipe-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-memory-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-localization-l1-2-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-libraryloader-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-interlocked-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-heap-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-handle-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-file-l2-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-file-l1-2-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-file-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-errorhandling-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-debug-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-datetime-l1-1-0.dll"
  Delete "$INSTDIR\runtime\bin\api-ms-win-core-console-l1-1-0.dll"
  Delete "$INSTDIR\ResMeterManager.jar"
  Delete "$INSTDIR\ResMeterManager.exe"
  Delete "$INSTDIR\res.db"
  Delete "$INSTDIR\remove_srv.bat"
  Delete "$INSTDIR\licence.txt"
  Delete "$INSTDIR\instsrv.exe"
  Delete "$INSTDIR\install.bat"
  Delete "$INSTDIR\vulkan-1.dll"
  Delete "$INSTDIR\vk_swiftshader_icd.json"
  Delete "$INSTDIR\vk_swiftshader.dll"
  Delete "$INSTDIR\v8_context_snapshot.bin"
  Delete "$INSTDIR\swiftshader\libGLESv2.dll"
  Delete "$INSTDIR\swiftshader\libEGL.dll"
  Delete "$INSTDIR\snapshot_blob.bin"
  Delete "$INSTDIR\resXmlParser.exe"
  Delete "$INSTDIR\resources.pak"
  Delete "$INSTDIR\resources\elevate.exe"
  Delete "$INSTDIR\resources\app.asar"
  Delete "$INSTDIR\resources\app-update.yml"
  Delete "$INSTDIR\locales\zh-TW.pak"
  Delete "$INSTDIR\locales\zh-CN.pak"
  Delete "$INSTDIR\locales\vi.pak"
  Delete "$INSTDIR\locales\uk.pak"
  Delete "$INSTDIR\locales\tr.pak"
  Delete "$INSTDIR\locales\th.pak"
  Delete "$INSTDIR\locales\te.pak"
  Delete "$INSTDIR\locales\ta.pak"
  Delete "$INSTDIR\locales\sw.pak"
  Delete "$INSTDIR\locales\sv.pak"
  Delete "$INSTDIR\locales\sr.pak"
  Delete "$INSTDIR\locales\sl.pak"
  Delete "$INSTDIR\locales\sk.pak"
  Delete "$INSTDIR\locales\ru.pak"
  Delete "$INSTDIR\locales\ro.pak"
  Delete "$INSTDIR\locales\pt-PT.pak"
  Delete "$INSTDIR\locales\pt-BR.pak"
  Delete "$INSTDIR\locales\pl.pak"
  Delete "$INSTDIR\locales\nl.pak"
  Delete "$INSTDIR\locales\nb.pak"
  Delete "$INSTDIR\locales\ms.pak"
  Delete "$INSTDIR\locales\mr.pak"
  Delete "$INSTDIR\locales\ml.pak"
  Delete "$INSTDIR\locales\lv.pak"
  Delete "$INSTDIR\locales\lt.pak"
  Delete "$INSTDIR\locales\ko.pak"
  Delete "$INSTDIR\locales\kn.pak"
  Delete "$INSTDIR\locales\ja.pak"
  Delete "$INSTDIR\locales\it.pak"
  Delete "$INSTDIR\locales\id.pak"
  Delete "$INSTDIR\locales\hu.pak"
  Delete "$INSTDIR\locales\hr.pak"
  Delete "$INSTDIR\locales\hi.pak"
  Delete "$INSTDIR\locales\he.pak"
  Delete "$INSTDIR\locales\gu.pak"
  Delete "$INSTDIR\locales\fr.pak"
  Delete "$INSTDIR\locales\fil.pak"
  Delete "$INSTDIR\locales\fi.pak"
  Delete "$INSTDIR\locales\fa.pak"
  Delete "$INSTDIR\locales\et.pak"
  Delete "$INSTDIR\locales\es.pak"
  Delete "$INSTDIR\locales\es-419.pak"
  Delete "$INSTDIR\locales\en-US.pak"
  Delete "$INSTDIR\locales\en-GB.pak"
  Delete "$INSTDIR\locales\el.pak"
  Delete "$INSTDIR\locales\de.pak"
  Delete "$INSTDIR\locales\da.pak"
  Delete "$INSTDIR\locales\cs.pak"
  Delete "$INSTDIR\locales\ca.pak"
  Delete "$INSTDIR\locales\bn.pak"
  Delete "$INSTDIR\locales\bg.pak"
  Delete "$INSTDIR\locales\ar.pak"
  Delete "$INSTDIR\locales\am.pak"
  Delete "$INSTDIR\LICENSES.chromium.html"
  Delete "$INSTDIR\LICENSE.electron.txt"
  Delete "$INSTDIR\libGLESv2.dll"
  Delete "$INSTDIR\libEGL.dll"
  Delete "$INSTDIR\icudtl.dat"
  Delete "$INSTDIR\ffmpeg.dll"
  Delete "$INSTDIR\d3dcompiler_47.dll"
  Delete "$INSTDIR\chrome_200_percent.pak"
  Delete "$INSTDIR\chrome_100_percent.pak"
 
  Delete "$SMPROGRAMS\My application\Uninstall.lnk"
  Delete "$SMPROGRAMS\My application\Website.lnk"
  Delete "$DESKTOP\My application.lnk"
  Delete "$SMPROGRAMS\My application\My application.lnk"
 
  RMDir "$SMPROGRAMS\My application"
  RMDir "$INSTDIR\swiftshader"
  RMDir "$INSTDIR\runtime\lib\security\policy\unlimited"
  RMDir "$INSTDIR\runtime\lib\security\policy\limited"
  RMDir "$INSTDIR\runtime\lib\security"
  RMDir "$INSTDIR\runtime\lib\management"
  RMDir "$INSTDIR\runtime\lib\jfr"
  RMDir "$INSTDIR\runtime\lib\images\cursors"
  RMDir "$INSTDIR\runtime\lib\fonts"
  RMDir "$INSTDIR\runtime\lib\ext"
  RMDir "$INSTDIR\runtime\lib\deploy"
  RMDir "$INSTDIR\runtime\lib\cmm"
  RMDir "$INSTDIR\runtime\lib\amd64"
  RMDir "$INSTDIR\runtime\lib"
  RMDir "$INSTDIR\runtime\bin\server"
  RMDir "$INSTDIR\runtime\bin\plugin2"
  RMDir "$INSTDIR\runtime\bin\dtplugin"
  RMDir "$INSTDIR\runtime\bin"
  RMDir "$INSTDIR\runtime"
  RMDir "$INSTDIR\resources"
  RMDir "$INSTDIR\locales"
  RMDir "$INSTDIR"
 
  DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
  DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
  SetAutoClose true
SectionEnd