-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb-windows.yml
1293 lines (1003 loc) · 37.3 KB
/
db-windows.yml
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
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
links:
- name: ZeroMQ
tags: [development, platform, zeromq]
url: http://zeromq.org/distro:microsoft-windows
- name: Ruby
tags: [development, platform, ruby]
url: http://rubyinstaller.org/downloads/
- name: Ruby DevKit
tags: [development, platform, ruby]
url: https://github.com/oneclick/rubyinstaller/wiki/Development-Kit
- name: Redis
tags: [development, platform, redis]
url: https://github.com/ServiceStack/redis-windows
- name: WinPython (Python Bundle)
tags: [development, platform, python]
url: https://github.com/winpython/winpython/releases/latest
- name: IPython
tags: [development, platform, python]
url: https://ipython.org/install.html
- name: Visual C++ Compiler for Python 2
tags: [development, platform, python]
url: http://www.microsoft.com/en-us/download/details.aspx?id=44266
- name: Win32 API Library for Python
tags: [development, platform, python]
url: http://sourceforge.net/projects/pywin32/files/pywin32/
- name: Python
tags: [development, platform, python]
url: https://www.python.org/downloads/windows/
- name: py2exe
tags: [development, platform, python]
url: http://sourceforge.net/projects/py2exe/files/py2exe/
- name: cx_Freeze
tags: [development, platform, python]
url: https://pypi.python.org/pypi/cx_Freeze
- name: Canopy (Python Bundle)
tags: [development, platform, python]
url: https://www.enthought.com/downloads/
- name: pyReadline
tags: [development, platform, python]
url: https://pypi.python.org/pypi/pyreadline
- name: Atom
tags: [development, tools, editor]
url: https://atom.io/download/windows
type: file
- name: Atom Beta
tags: [development, tools, editor]
url: https://atom.io/download/windows?channel=beta
type: file
- name: Visual Studio Code
tags: [development, tools, editor]
url: https://go.microsoft.com/fwlink/?LinkID=623230
type: file
- name: Visual Studio Code Insiders
tags: [development, tools, editor]
url: https://go.microsoft.com/fwlink/?LinkId=723965
type: file
- name: Visual Studio Code (ZIP)
tags: [development, tools, editor]
url: https://go.microsoft.com/fwlink/?LinkID=623231
type: file
- name: Visual Studio Code Insiders (ZIP)
tags: [development, tools, editor]
url: https://go.microsoft.com/fwlink/?LinkID=733265
type: file
- name: Audacity Portable
tags: [multimedia, audio, editor]
url: http://portableapps.com/apps/music_video/audacity_portable
- name: Audacity
tags: [multimedia, audio, editor]
url: http://sourceforge.net/projects/audacity/files/latest/download
- name: Last.fm Scrobbler
tags: [multimedia, audio]
url: http://www.last.fm/download/windows
type: file
- name: foobar2000
tags: [multimedia, audio, player]
url: http://www.foobar2000.org/download
- name: Monkey's Audio
tags: [multimedia, audio]
url: http://www.monkeysaudio.com/download.html
- name: Medieval CUE Splitter
tags: [multimedia, audio, tools]
url: http://www.medieval.it/sw/cuesplitter_setup.exe
type: file
- name: BitDefender Antivirus
tags: [system, security, antivirus]
url: http://download.bitdefender.com/windows/installer/en-us/bitdefender_antivirus.exe
type: file
- name: Bvckup 1
tags: [utils, backup]
url: http://bvckup.com/download
type: file
- name: Bvckup 2
tags: [utils, backup]
url: https://www.bvckup2.com/get
type: file
- name: SyncBackPro
tags: [utils, backup]
url: https://www.2brightsparks.com/assets/software/SyncBackPro_Setup.exe
type: file
- name: Syncovery (32-bit)
tags: [utils, backup]
url: https://www.syncovery.com/release/SyncoverySetup.exe
type: file
- name: Syncovery (64-bit)
tags: [utils, backup]
url: https://www.syncovery.com/release/Syncovery64Setup.exe
type: file
- name: CDBurnerXP
tags: [tools, cd]
url: https://cdburnerxp.se/downloadsetup.exe
type: file
- name: CDBurnerXP Portable
tags: [tools, cd]
url: http://download.cdburnerxp.se/portable/?C=M;O=D
- name: Clink
tags: [development, tools, console]
url: https://github.com/mridgers/clink/releases/latest
- name: Ansicon
tags: [development, tools, console]
url: https://github.com/adoxa/ansicon/releases/latest
- name: ConEmu
tags: [development, tools, console]
url: https://github.com/Maximus5/ConEmu/releases/latest
- name: Cmder
tags: [development, tools, console]
url: https://github.com/bliker/cmder/releases/latest
- name: Git
tags: [development, tools, version-control, git]
url: https://git-scm.com/download/win
- name: Git (GitHub mirror)
tags: [development, tools, version-control, git]
url: https://github.com/git-for-windows/git/releases/latest
- name: Git LFS
tags: [development, tools, version-control, git]
url: https://github.com/github/git-lfs/releases/latest
- name: Git Credential Manager
tags: [development, tools, version-control, git]
url: https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/latest
- name: GitExtensions
tags: [development, tools, version-control, git]
url: https://github.com/gitextensions/gitextensions/releases/latest
- name: Git Annex
tags: [development, tools, version-control, git]
url: https://downloads.kitenet.net/git-annex/windows/current/git-annex-installer.exe
type: file
- name: GitHub Desktop
tags: [development, tools, version-control, git]
url: https://github-windows.s3.amazonaws.com/GitHubSetup.exe
type: file
- name: Freac
tags: [multimedia, audio, converter]
url: http://www.freac.org/index.php/en/downloads-mainmenu-33
- name: IrfanView (64-bit)
tags: [multimedia, graphics, viewer]
url: http://www.irfanview.com/64bit.htm
- name: IrfanView (32-bit) (Test version)
tags: [multimedia, graphics, viewer]
url: http://www.irfanview.info/test/iview32_test.zip
- name: IrfanView (64-bit) (Test version)
tags: [multimedia, graphics, viewer]
url: http://www.irfanview.info/test/iview64_test.zip
- name: XnView MP (32-bit) (Setup)
tags: [multimedia, graphics, viewer]
url: http://download.xnview.com/XnViewMP-win.exe
type: file
- name: XnView MP (64-bit) (Setup)
tags: [multimedia, graphics, viewer]
url: http://download.xnview.com/XnViewMP-win-x64.exe
type: file
- name: XnView MP (32-bit) (Portable)
tags: [multimedia, graphics, viewer]
url: http://download.xnview.com/XnViewMP-win.zip
type: file
- name: XnView MP (64-bit) (Portable)
tags: [multimedia, graphics, viewer]
url: http://download.xnview.com/XnViewMP-win-x64.zip
type: file
- name: K-Lite Codec Pack Mega
tags: [multimedia]
url: http://www.codecguide.com/download_k-lite_codec_pack_mega.htm
- name: Lame for Windows (Binary & DLL)
tags: [multimedia, audio]
url: http://www.rarewares.org/mp3-lame-bundle.php
- name: Lame for Windows (for Audacity)
tags: [multimedia, audio]
url: http://lame.buanzo.org/#lamewindl
- name: PuTTY
tags: [system, tools, remote-access]
url: http://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
- name: PuTTY (32-bit) (ZIP)
tags: [system, tools, remote-access]
url: https://the.earth.li/~sgtatham/putty/latest/w32/putty.zip
type: file
- name: PuTTY (64-bit) (ZIP)
tags: [system, tools, remote-access]
url: https://the.earth.li/~sgtatham/putty/latest/w64/putty.zip
type: file
- name: PuTTY Portable
tags: [system, tools, remote-access]
url: http://portableapps.com/apps/internet/putty_portable
- name: KiTTY
tags: [system, tools, remote-access]
url: https://www.fosshub.com/KiTTY.html/kitty.exe
- name: KiTTY Portable
tags: [system, tools, remote-access]
url: https://www.fosshub.com/KiTTY.html/kitty_portable.exe
- name: SQLite Database Browser
tags: [development, tools, sqlite]
url: https://github.com/sqlitebrowser/sqlitebrowser/releases/latest
- name: SQLite Admin
tags: [development, tools, sqlite]
url: http://download.orbmu2k.de/download.php?id=19
type: file
- name: RapidEE (64-bit)
tags: [system, tools]
url: http://www.rapidee.com/download/RapidEEx64.zip
type: file
- name: Search Everything
tags: [utils, search]
url: http://www.voidtools.com/downloads/
- name: UltraSearch (32-bit) (Setup)
tags: [utils, search]
url: http://www.jam-software.com/ultrasearch/UltraSearch-x86-Setup.exe
- name: UltraSearch (32-bit) (Portable)
tags: [utils, search]
url: http://www.jam-software.com/ultrasearch/UltraSearch-x86.zip
- name: UltraSearch (64-bit) (Setup)
tags: [utils, search]
url: http://www.jam-software.com/ultrasearch/UltraSearch-x64-Setup.exe
- name: UltraSearch (64-bit) (Portable)
tags: [utils, search]
url: http://www.jam-software.com/ultrasearch/UltraSearch-x64.zip
- name: TechSmith SnagIt
tags: [multimedia, graphics, screenshot]
url: http://download.techsmith.com/snagit/enu/snagit.exe
type: file
- name: Greenshot
tags: [multimedia, graphics, screenshot]
url: https://github.com/greenshot/greenshot/releases/latest
type: file
- name: ShareX
tags: [multimedia, graphics, screenshot]
url: https://github.com/ShareX/ShareX/releases/latest
- name: Ninite
tags: [system, tools]
url: https://ninite.com/
- name: NTLite (64-bit)
tags: [system, tools, windows]
url: http://downloads.ntlite.com/files/NTLite_setup_x64.exe
type: file
- name: ExactFile
tags: [utils, hash]
url: http://www.exactfile.com/files/ExactFile-Setup.exe
type: file
- name: QuickSFV (32-bit)
tags: [utils, hash]
url: http://www.quicksfv.org/quicksfv-setup32.msi
type: file
- name: QuickSFV (64-bit)
tags: [utils, hash]
url: http://www.quicksfv.org/quicksfv-setup64.msi
type: file
- name: KeePass
tags: [system, security, password]
url: http://keepass.info/download.html
- name: Skype
tags: [internet, voip, im]
url: http://get.skype.com/go/getskype
type: file
- name: Discord
tags: [internet, voip, im]
url: https://discordapp.com/api/download?platform=win
type: file
- name: DVDVideoSoft Free Video Call Recorder for Skype
tags: [multimedia, video, recorder, skype]
url: http://icw.dvdvideosoft.net/FreeVideoCallRecorder.exe
type: file
- name: Ventrilo
tags: [internet, voip]
url: http://ventrilo.com/dlprod.php?id=4
type: file
- name: Ventrilo (Server)
tags: [internet, voip]
url: http://ventrilo.com/dlprod.php?id=101
type: file
- name: qTox (32-bit)
tags: [internet, voip]
url: https://build.tox.chat/view/Clients/job/qTox_build_windows_x86_release/lastSuccessfulBuild/artifact/qTox_build_windows_x86_release.zip
type: file
- name: qTox (64-bit)
tags: [internet, voip]
url: https://build.tox.chat/view/Clients/job/qTox_build_windows_x86-64_release/lastSuccessfulBuild/artifact/qTox_build_windows_x86-64_release.zip
type: file
- name: Gitter
tags: [internet, im]
url: http://update.gitter.im/win/latest
- name: Line
tags: [internet, im, voip]
url: http://cdn.line-apps.com/client/win/new/LineInst.exe
type: file
- name: KakaoTalk
tags: [internet, im, voip]
url: http://app.pc.kakao.com/talk/win32/KakaoTalk_Setup.exe
type: file
- name: Telegram
tags: [internet, im, voip]
url: https://telegram.org/dl/desktop/win
type: file
- name: Telegram (Portable)
tags: [internet, im, voip]
url: https://telegram.org/dl/desktop/win_portable
type: file
- name: Caffeine
tags: [system, tools, sleep]
url: http://www.zhornsoftware.co.uk/caffeine/caffeine.zip
type: file
- name: Don't Sleep (32-bit)
tags: [system, tools, sleep]
url: http://www.softwareok.com/Download/DontSleep.zip
type: file
- name: Don't Sleep (64-bit)
tags: [system, tools, sleep]
url: http://www.softwareok.com/Download/DontSleep_x64.zip
type: file
- name: Emule (Installer)
tags: [internet, p2p]
url: http://prdownloads.sourceforge.net/emule/eMule0.50a-Installer.exe
- name: Emule (ZIP)
tags: [internet, p2p]
url: http://prdownloads.sourceforge.net/emule/eMule0.50a.zip
- name: PHP
tags: [development, platform, php]
url: http://windows.php.net/download/
- name: Composer for PHP
tags: [development, platform, php]
url: https://getcomposer.org/Composer-Setup.exe
type: file
- name: EasyPHP
tags: [development, platform, wamp]
url: http://www.easyphp.org/
- name: Uniform Server
tags: [development, platform, wamp]
url: https://sourceforge.net/projects/miniserver/files/latest/download
- name: Apache
tags: [development, server]
url: http://www.apachelounge.com/download/
- name: PhpStorm
tags: [development, tools, ide, jetbrains]
url: https://www.jetbrains.com/phpstorm/download/download-thanks.html?platform=windows
- name: CCleaner
tags: [system, tools, cleaning, piriform]
url: https://www.piriform.com/ccleaner/download/standard
- name: CCleaner (Portable)
tags: [system, tools, cleaning, piriform]
url: https://www.piriform.com/ccleaner/download/portable/downloadfile
type: file
- name: Recuva
tags: [system, tools, data-recovery, piriform]
url: https://www.piriform.com/recuva/download/standard
- name: Recuva (Portable)
tags: [system, tools, data-recovery, piriform]
url: https://www.piriform.com/recuva/download/portable/downloadfile
type: file
- name: Defraggler
tags: [system, tools, defrag, piriform]
url: https://www.piriform.com/defraggler/download/standard
- name: Defraggler (Portable)
tags: [system, tools, defrag, piriform]
url: https://www.piriform.com/defraggler/download/portable/downloadfile
type: file
- name: Speccy
tags: [system, tools, info, piriform]
url: https://www.piriform.com/speccy/download/standard
- name: Speccy (Portable)
tags: [system, tools, info, piriform]
url: https://www.piriform.com/speccy/download/portable/downloadfile
type: file
- name: LinuxLive
tags: [system, tools, operating-system]
url: http://www.linuxliveusb.com/en/download
- name: LinuxLive (Portable)
tags: [system, tools, operating-system]
url: http://www.linuxliveusb.com/en/other-versions
- name: Rufus (Installer)
tags: [system, tools, operating-system]
url: http://rufus.akeo.ie/downloads/rufus.exe
type: file
- name: Rufus (Directory Listing)
tags: [system, tools, operating-system]
url: http://rufus.akeo.ie/downloads/
- name: Taiga
tags: [internet, anime]
url: http://taiga.erengy.com/download.php
type: file
- name: Mal Updater (Installer)
tags: [internet, anime]
url: http://www.malupdater.com/downloads/86/
- name: Mal Updater (Portable)
tags: [internet, anime]
url: http://www.malupdater.com/downloads/88/
- name: RetroShare
tags: [internet, p2p]
url: http://sourceforge.net/projects/retroshare/files/latest/download
- name: SourceTree
tags: [development, tools, version-control, git, mercury]
url: https://www.sourcetreeapp.com/download/
- name: SmartGit
tags: [development, tools, version-control, git]
url: http://www.syntevo.com/smartgit/download
- name: ExtractNow
tags: [utils, zip]
url: http://www.extractnow.com/releases/
- name: PowerArchiver
tags: [utils, zip]
url: http://www.powerarchiver.com/download-powerarchiver/
- name: Synthesia (Installer)
tags: [multimedia, audio]
url: http://www.synthesiagame.com/download.aspx?product=Synthesia&platform=win&version=latest
type: file
- name: Synthesia (Portable)
tags: [multimedia, audio]
url: http://www.synthesiagame.com/download.aspx?product=Synthesia&platform=win_sa&version=latest
type: file
- name: Mp3Tag (Installer)
tags: [multimedia, audio, tag-editor]
url: http://www.mp3tag.de/en/download.html
- name: Mp3Tag (Portable)
tags: [multimedia, audio, tag-editor]
url: http://sourceforge.net/projects/mp3tagportable/files/latest/download
- name: Mumble (Portable)
tags: [internet, voip]
url: https://www.mumble.com/support/mumble-install-problems-on-windows.php
- name: Brave (32-bit)
tags: [internet, browser]
url: https://laptop-updates.brave.com/latest/winia32
type: file
- name: Brave (64-bit)
tags: [internet, browser]
url: https://laptop-updates.brave.com/latest/winx64
type: file
- name: Firefox Developer Edition (Portable)
tags: [internet, browser]
url: http://portableapps.com/apps/internet/firefox-developer-portable
- name: Firefox Stable (Portable)
tags: [internet, browser]
url: http://portableapps.com/apps/internet/firefox_portable
- name: Eraser
tags: [system, security]
url: http://sourceforge.net/projects/eraser/files/latest/download
- name: Windows USB-DVD Download Tool
tags: [system, tools, operating-system]
url: http://wudt.codeplex.com/
- name: Win32 Disk Imager
tags: [system, tools, operating-system]
url: http://sourceforge.net/projects/win32diskimager/files/Archive/
- name: SUSE Image Writer
tags: [system, tools, operating-system]
url: https://github.com/openSUSE/kiwi/downloads
- name: QTTabBar
tags: [system, tools, shell]
url: http://qttabbar.wikidot.com/
- name: Classic Shell
tags: [system, tools, shell]
url: http://www.classicshell.net/downloads/
- name: Folder Size
tags: [system, tools, shell]
url: http://foldersize.sourceforge.net/
- name: Link Shell Extension
tags: [system, tools, shell]
url: http://schinagl.priv.at/nt/hardlinkshellext/?C=M;O=D;P=*.exe
- name: HashCheck
tags: [system, tools, shell, hash]
url: http://code.kliu.org/hashcheck/downloads/HashCheckInstall-latest.exe
type: file
- name: HashTab
tags: [system, tools, shell, hash]
url: http://implbits.com/products/hashtab/
- name: NirLauncher
tags: [system, tools]
url: http://launcher.nirsoft.net/downloads/index.html
- name: ShellExView (32-bit)
tags: [system, tools, shell]
url: http://www.nirsoft.net/utils/shexview.zip
type: file
- name: ShellExView (64-bit)
tags: [system, tools, shell]
url: http://www.nirsoft.net/utils/shexview-x64.zip
type: file
- name: ShellMenuView (32-bit)
tags: [system, tools, shell]
url: http://www.nirsoft.net/utils/shmnview.zip
type: file
- name: ShellMenuView (64-bit)
tags: [system, tools, shell]
url: http://www.nirsoft.net/utils/shmnview-x64.zip
type: file
- name: Charles
tags: [development, tools, web, debugging]
url: http://www.charlesproxy.com/download/
- name: Fiddler
tags: [development, tools, web, debugging]
url: http://www.telerik.com/download/fiddler
- name: URL Snooper
tags: [development, tools, packet]
url: https://www.donationcoder.com/Software/Mouser/urlsnooper/
- name: WinPcap
tags: [system, tools, packet]
url: https://www.winpcap.org/install/
- name: F.lux
tags: [utils, screen]
url: https://justgetflux.com/flux-setup.exe
- name: Universal Media Server
tags: [multimedia, server]
url: http://sourceforge.net/projects/unimediaserver/files/Official%20Releases/Windows/
- name: MongoDB (ZIP)
tags: [development, database, nosql]
url: http://downloads.mongodb.org/win32/mongodb-win32-x86_64-2008plus-ssl-latest.zip
- name: MongoDB (Directory Listing)
tags: [development, database, nosql]
url: https://www.mongodb.org/dl/win32/x86_64-2008plus-ssl
- name: CPU-Z
tags: [system, tools]
url: http://www.cpuid.com/softwares/cpu-z.html
- name: GPU-Z
tags: [system, tools]
url: https://www.techpowerup.com/downloads/SysInfo/GPU-Z/
- name: VMware Workstation (64-bit)
tags: [system, virtual-machine]
url: http://www.vmware.com/go/tryworkstation-win
type: file
- name: VMware Mac OS X Unlocker
tags: [system, virtual-machine]
url: http://www.insanelymac.com/forum/files/file/339-unlocker/
- name: ESED NOD32 (64-bit)
tags: [system, security, antivirus]
url: http://www.eset.com/int/download//home/detail/family/2?installer=offline#offline,231,ENU,,,
- name: 7++ Task Tweaker
tags: [system, tools]
url: http://rammichael.com/downloads/7tt_setup.exe
type: file
- name: .NET 4.6.1 (Offline Installer)
tags: [system, windows, net-framework]
url: https://www.microsoft.com/en-us/download/details.aspx?id=49982
- name: .NET 4.6.1 (Web Installer)
tags: [system, windows, net-framework]
url: https://www.microsoft.com/en-us/download/details.aspx?id=49981
- name: SysInternals Suite
tags: [system, tools]
url: https://download.sysinternals.com/files/SysinternalsSuite.zip
- name: WinCDEmu
tags: [utils, mounting]
url: http://wincdemu.sysprogs.org/download/
- name: Virtual CloneDrive
tags: [utils, mounting]
url: http://static.slysoft.com/SetupVirtualCloneDrive.exe
- name: DAEMON Tools Lite
tags: [tools, mounting]
url: http://www.disk-tools.com/download/daemon
- name: qBittorrent (Portable)
tags: [internet, torrent]
url: http://portableapps.com/apps/internet/qbittorrent_portable
- name: BEncode Editor
tags: [internet, torrent]
url: https://sites.google.com/site/ultimasites/bencode-editor#download
- name: Graph
tags: [utils, scientific]
url: https://www.padowan.dk/download/
- name: VisiPics
tags: [utils, duplicate]
url: http://www.fosshub.com/VisiPics.html
- name: CloneSpy
tags: [utils, duplicate]
url: http://www.clonespy.com/?Download
- name: Jenkins
tags: [development, platform, ci]
url: http://mirrors.jenkins-ci.org/windows/latest
type: file
- name: Steam
tags: [gaming]
url: https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe
type: file
- name: LockHunter
tags: [system, tools, unlocker]
url: http://lockhunter.com/downloadnow.htm
- name: Unlocker
tags: [system, tools, unlocker]
url: http://www.emptyloop.com/unlocker/download.php
type: file
- name: VNC Viewer (32-bit)
tags: [system, tools, remote-access]
url: http://www.realvnc.com/download/binary/1730/
type: file
- name: VNC Viewer (64-bit)
tags: [system, tools, remote-access]
url: http://www.realvnc.com/download/binary/1732/
type: file
- name: TightVNC
tags: [system, tools, remote-access]
url: http://www.tightvnc.com/download.php
- name: TeamViewer
tags: [system, tools, remote-access]
url: https://download.teamviewer.com/download/TeamViewer_Setup.exe
type: file
- name: WinDirStat
tags: [system, tools, drive]
url: http://download01.windirstat.info/wds_current_setup.exe
type: file
- name: WinDirStat (Portable)
tags: [system, tools, drive]
url: http://portableapps.com/apps/utilities/windirstat_portable
- name: XMedia Recode
tags: [multimedia, video, converter]
url: http://www.xmedia-recode.de/download.html
- name: Heroku Toolbelt
tags: [development, platform, heroku]
url: https://s3.amazonaws.com/assets.heroku.com/heroku-toolbelt/heroku-toolbelt.exe
type: file
- name: Heroku CLI (32-bit)
tags: [development, platform, heroku]
url: https://cli-assets.heroku.com/branches/v6/heroku-windows-386.exe
type: file
- name: Heroku CLI (64-bit)
tags: [development, platform, heroku]
url: https://cli-assets.heroku.com/branches/v6/heroku-windows-amd64.exe
type: file
- name: Google Earth
tags: [utils, google]
url: https://dl.google.com/earth/client/advanced/current/GoogleEarthWin.exe
type: file
- name: Komodo Edit
tags: [development, tools, editor]
url: http://komodoide.com/download/edit-win32
- name: Komodo IDE
tags: [development, tools, ide]
url: http://komodoide.com/download/ide-win32
- name: NetBeans IDE
tags: [development, tools, ide]
url: https://netbeans.org/downloads/start.html?platform=windows&lang=en&option=all
- name: NSIS
tags: [development, platform, installer]
url: http://nsis.sourceforge.net/Download
- name: Sandboxie
tags: [system, security, sandbox]
url: http://www.sandboxie.com/SandboxieInstall.exe
type: file
- name: Notepad++
tags: [development, tools, editor]
url: https://notepad-plus-plus.org/download/
- name: Spybot Search & Destroy
tags: [system, security, antivirus]
url: https://www.safer-networking.org/mirrors/
- name: Spybot Anti-Beacon
tags: [system, security, telemetry]
url: https://www.safer-networking.org/spybot-anti-beacon/
- name: VirusTotal Uploader
tags: [system, security, antivirus]
url: https://www.virustotal.com/en/documentation/desktop-applications/
- name: PhrozenSoft VirusTotal Uploader
tags: [system, security, antivirus]
url: http://www.softpedia.com/get/System/OS-Enhancements/PhrozenSoft-VirusTotal-Uploader.shtml#download
- name: IDM UltraEdit
tags: [development, tools, editor]
url: http://www.ultraedit.com/downloads/ultraedit_download.html
- name: IDM UltraEdit (Portable)
tags: [development, tools, editor]
url: http://www.ultraedit.com/downloads/mobility.html
- name: Startup Delayer
tags: [system, tools, startup]
url: http://www.r2.com.au/page/products/download/startup-delayer
- name: zoom's File & Image Uploader
tags: [internet, tools, upload]
url: http://z-o-o-m.eu/down/FileUploader.exe
type: file
- name: puush
tags: [internet, tools, upload]
url: https://puush.me/dl/puush.msi
type: file
- name: JPSoft Take Command & TCC
tags: [development, tools, shell, command-line]
url: https://jpsoft.com/all-downloads/downloads.html
- name: ffmpeg
tags: [multimedia, video, tools]
url: https://ffmpeg.zeranoe.com/builds/
- name: Gpg4win
tags: [system, tools, security, gnupg, gpg, pgp]
url: https://www.gpg4win.org/download.html
- name: Camtasia Studio
tags: [multimedia, video, recorder]
url: http://download.techsmith.com/camtasiastudio/enu/camtasia.exe
- name: Divvy
tags: [system, tools, window]
url: http://mizage.com/windivvy/
- name: mIRC
tags: [internet, im, irc]
url: http://www.mirc.com/get.php
type: file
- name: AdiIRC
tags: [internet, im, irc]
url: https://adiirc.com/download.php
- name: RDG Packer Detector
tags: [development, tools, detector]
url: http://www.rdgsoft.net/
- name: PEiD
tags: [development, tools, detector]
url: http://www.softpedia.com/get/Programming/Packers-Crypters-Protectors/PEiD-updated.shtml
- name: Inkscape
tags: [multimedia, graphics, svg]
url: https://inkscape.org/en/download/windows/
- name: PhraseExpress
tags: [utils, text-expander]
url: http://www.phraseexpress.com/PhraseExpressSetup.exe
type: file
- name: PhraseExpress (Portable)
tags: [utils, text-expander]
url: http://www.phraseexpress.com/PhraseExpress_USB.zip
type: file
- name: Breevy
tags: [utils, text-expander]
url: http://www.16software.com/breevy/Breevy_Setup.exe
type: file
- name: Breevy (PortableApps)
tags: [utils, text-expander]
url: http://www.16software.com/breevy/BreevyPortable.paf.exe
type: file
- name: Breevy (Portable)
tags: [utils, text-expander]
url: http://www.16software.com/breevy/BreevyPortable.zip
type: file
- name: TextExpander
tags: [utils, text-expander]
url: https://textexpander.com/download/?platform=Windows
- name: Screen To Gif
tags: [multimedia, video, gif, recorder]
url: https://screentogif.codeplex.com/releases
- name: GifCam
tags: [multimedia, video, gif, recorder]
url: http://www.bahraniapps.com/apps/gifcam/gifcam.php
type: file
- name: Malwarebytes Anti-Malware
tags: [system, security, antivirus]
url: https://downloads.malwarebytes.com/file/mbam_current/
type: file
- name: Google Chrome Backup
tags: [internet, tools, browser-backup]
url: http://www.parhelia-tools.com/products/gcb/download.php?f=gcb.exe
type: file
- name: Google Chrome Backup (Portable)
tags: [internet, tools, browser-backup]
url: http://www.parhelia-tools.com/products/gcb/download.php?f=gcb.zip
type: file
- name: Transmute
tags: [internet, tools, browser-backup]
url: http://www.gettransmute.com/download/TransmuteSetup.zip
type: file
- name: Transmute (Portable)
tags: [internet, tools, browser-backup]
url: http://www.gettransmute.com/download/TransmutePortable.zip
type: file
- name: cURL
tags: [system, tools]
url: http://www.confusedbycode.com/curl/#downloads
- name: wget
tags: [system, tools]
url: https://eternallybored.org/misc/wget/
- name: gifsicle
tags: [system, tools]
url: https://eternallybored.org/misc/gifsicle/
- name: BabelMap
tags: [utils, unicode]
url: http://www.babelstone.co.uk/Software/BabelMap.html
- name: BabelMap Portable
tags: [utils, unicode]