-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
itt.ps1
13788 lines (12840 loc) · 880 KB
/
itt.ps1
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
######################################################################################
# ___ _____ _____ _____ __ __ _ ____ _ ____ _____ _ #
# |_ _|_ _|_ _| | ____| \/ | / \ | _ \ / \ | _ \| ____| | #
# | | | | | | | _| | |\/| | / _ \ | | | | / _ \ | | | | _| | | #
# | | | | | | | |___| | | |/ ___ \| |_| | / ___ \| |_| | |___| |___ #
# |___| |_| |_| |_____|_| |_/_/ \_\____/ /_/ \_\____/|_____|_____| #
# Automatically generated from build don't play here :) #
# #StandWithPalestine #
# https://github.com/emadadel4 #
# https://t.me/emadadel4 #
# https://emadadel4.github.io/posts/itt #
######################################################################################
#===========================================================================
#region Begin Start
#===========================================================================
param (
[switch]$Debug
)
# Load DLLs
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName PresentationFramework
Add-Type -AssemblyName PresentationCore
Add-Type -AssemblyName WindowsBase
# Synchronized Hashtable for shared variables
$itt = [Hashtable]::Synchronized(@{
database = @{}
ProcessRunning = $false
developer = "Emad Adel"
lastupdate = "12/12/2024"
github = "https://github.com/emadadel4/itt"
telegram = "https://t.me/emadadel4"
blog = "https://emadadel4.github.io"
youtube = "https://youtube.com/@emadadel4"
buymeacoffee = "https://buymeacoffee.com/emadadel"
registryPath = "HKCU:\Software\ITT@emadadel"
icon = "https://raw.githubusercontent.com/emadadel4/ITT/main/static/Icons/icon.ico"
Theme = "default"
CurretTheme = "default"
Date = (Get-Date -Format "MM/dd/yyy")
Music = "100"
PopupWindow = "On"
Language = "default"
ittDir = "$env:localappdata\itt\"
})
# Ask user
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))
{
$newProcess = Start-Process -FilePath "PowerShell" -ArgumentList "-ExecutionPolicy Bypass -NoProfile -Command `"$($MyInvocation.MyCommand.Definition)`"" -Verb RunAs
exit
}
try {
$itt.mediaPlayer = New-Object -ComObject WMPlayer.OCX
$Host.UI.RawUI.WindowTitle = "ITT - #StandWithPalestine"
}
catch {
Write-Warning "Media player not loaded because you're using Windows Lite or have disabled."
}
if (-not (Test-Path -Path $itt.ittDir)) {
New-Item -ItemType Directory -Path $itt.ittDir -Force | Out-Null
}
# trace the script
$logdir = $itt.ittDir
$timestamp = Get-Date -Format "yyyy-MM-dd"
Start-Transcript -Path "$logdir\logs\log_$timestamp.log" -Append -NoClobber | Out-Null
#===========================================================================
#endregion End Start
#===========================================================================
#===========================================================================
#region Begin Database /APPS/TWEEAKS/Quotes/OST/Settings
#===========================================================================
$itt.database.Applications = @'
[
{
"Name": "Mozilla Firefox",
"Description": "A widely-used open-source web browser known for its speed, privacy features, and customization options",
"winget": "Mozilla.Firefox",
"choco": "firefox",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Mozilla Firefox ESR",
"Description": "A widely-used open-source web browser known for its speed, privacy features, and customization options",
"winget": "Mozilla.Firefox.ESR",
"choco": "firefoxesr",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Thorium SSE3",
"Description": "A web browser designed for smooth and secure browsing experiences",
"winget": "Alex313031.Thorium",
"choco": "thorium --params /SSE3",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Thorium AVX",
"Description": "A web browser designed for smooth and secure browsing experiences",
"winget": "Alex313031.Thorium.AVX2",
"choco": "thorium --params /AVX",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Microsoft Edge",
"Description": "Microsoft's web browser built for fast and secure internet surfing, integrating seamlessly with Windows ecosystem",
"winget": "Microsoft.Edge",
"choco": "microsoft-edge",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Google Chrome",
"Description": "A popular web browser known for its speed, simplicity, and vast ecosystem of extensions",
"winget": "Google.Chrome",
"choco": "googlechrome",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Chromium",
"Description": "An open-source web browser project that serves as the foundation for many browsers, including Google Chrome",
"winget": "eloston.ungoogled-chromium",
"choco": "chromium",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Brave",
"Description": "A privacy-focused web browser that blocks ads and trackers, offering faster and safer browsing experiences",
"winget": "Brave.Brave",
"choco": "brave",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Tor Browser",
"Description": "A web browser that prioritizes user privacy by routing internet traffic through a global network of servers, enabling anonymous browsing",
"winget": "TorProject.TorBrowser",
"choco": "tor-browser",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Opera",
"Description": "The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer",
"winget": "Opera.Opera",
"choco": "opera",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "Internet Download Manager",
"Description": "A popular download manager tool that accelerates downloads and allows users to organize and schedule downloads efficiently",
"winget": "Tonec.InternetDownloadManager",
"choco": "internet-download-manager",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "JDownloader",
"Description": "JDownloader is an internet download manager",
"winget": "AppWork.JDownloader",
"choco": "jdownloader",
"default": [],
"category": "Web Browsers",
"check": "false"
},
{
"Name": "KLite Mega Codec Full Pack",
"Description": "Comprehensive collection of audio and video codecs, filters, and tools, enabling playback of various media formats",
"winget": "none",
"choco": "k-litecodecpackfull",
"default": [],
"category": "Media",
"check": "false"
},
{
"Name": "PotPlayer",
"Description": "A multimedia player with a sleek interface and advanced features, supporting a wide range of audio and video formats",
"winget": "Daum.PotPlayer",
"choco": "potplayer",
"default": [],
"category": "Media",
"check": "false"
},
{
"Name": "VLC",
"Description": "A versatile media player capable of playing almost any multimedia file format, with support for various streaming protocols",
"winget": "VideoLAN.VLC",
"choco": "vlc.install",
"default": [],
"category": "Media",
"check": "false"
},
{
"Name": "Kodi",
"Description": "A powerful open-source media center software that allows users to organize and stream their media collections",
"winget": "9NBLGGH4T892",
"choco": "kodi",
"default": [],
"category": "Media",
"check": "false"
},
{
"Name": "Jellyfin Server",
"Description": "An open-source media server software that enables users to stream their media libraries across devices, providing a self-hosted alternative to commercial services",
"winget": "Jellyfin.Server",
"choco": "jellyfin",
"default": [],
"category": "Media",
"check": "false"
},
{
"Name": "Winamp",
"Description": "A classic media player known for its customizable interface and extensive plugin support, providing a nostalgic music playback experience",
"winget": "Winamp.Winamp",
"choco": "winamp",
"default": [],
"category": "Media",
"check": "false"
},
{
"Name": "Aimp",
"Description": "A lightweight and feature-rich audio player with support for various audio formats and customizable interface themes",
"winget": "AIMP.AIMP",
"choco": "aimp",
"default": [],
"category": "Media",
"check": "false"
},
{
"Name": "Spotify",
"Description": "Spotify is a new way to listen to music",
"winget": "Spotify.Spotify",
"choco": "spotify",
"default": [],
"category": "Media",
"check": "false"
},
{
"Name": "FastStone Image Viewer",
"Description": "FastStone Image Viewer is a fast, stable, user-friendly image browser, converter and editor",
"winget": "FastStone.Viewer",
"choco": "fsviewer",
"default": [],
"category": "Imaging",
"check": "false"
},
{
"Name": "OpenOffice",
"Description": "An open-source office productivity suite offering word processing, spreadsheet, presentation, and other office tools, compatible with Microsoft Office formats",
"winget": "Apache.OpenOffice",
"choco": "openoffice",
"default": [],
"category": "Documents",
"check": "false"
},
{
"Name": "FoxitReader",
"Description": "A lightweight and feature-rich PDF reader with annotation, form filling, and document signing capabilities",
"winget": "Foxit.FoxitReader",
"choco": "foxitreader",
"default": [],
"category": "Documents",
"check": "false"
},
{
"Name": "LibreOffice",
"Description": "A powerful open-source office suite providing word processing, spreadsheet, presentation, and other office tools, compatible with Microsoft Office formats",
"winget": "Foxit.FoxitReader",
"choco": "libreoffice-fresh",
"default": [],
"category": "Documents",
"check": "false"
},
{
"Name": "SumatraPDF",
"Description": "A lightweight and fast PDF reader with minimalistic design and focus on simplicity and speed",
"winget": "SumatraPDF.SumatraPDF",
"choco": "sumatrapdf.install",
"default": [],
"category": "Documents",
"check": "false"
},
{
"Name": "WinRAR",
"Description": "A popular file compression and archiving utility that supports various archive formats and offers advanced features such as encryption and self-extracting archives",
"winget": "RARLab.WinRAR",
"choco": "winrar",
"default": [],
"category": "Compression",
"check": "false"
},
{
"Name": "7Zip",
"Description": "An open-source file archiver with a high compression ratio, supporting various archive formats and providing a powerful command-line interface",
"winget": "7zip.7zip",
"choco": "7zip",
"default": [],
"category": "Compression",
"check": "false"
},
{
"Name": "PeaZip",
"Description": " PeaZip is a free cross-platform file archiver",
"winget": "Giorgiotani.Peazip",
"choco": "peazip",
"default": [],
"category": "Compression",
"check": "false"
},
{
"Name": "Telegram Desktop",
"Description": "A cross-platform messaging app with a focus on speed and security, offering end-to-end encryption and a wide range of features such as group chats, file sharing, and stickers",
"winget": "Telegram.TelegramDesktop",
"choco": "telegram",
"default": [],
"category": "Communication",
"check": "false"
},
{
"Name": "Signal",
"Description": "Fast, simple, secure. Privacy that fits in your pocket",
"winget": "OpenWhisperSystems.Signal",
"choco": "signal",
"default": [],
"category": "Communication",
"check": "false"
},
{
"Name": "Meta Messenger",
"Description": "A messaging app that allows users to connect with friends and family through text messages, voice calls, and video calls, offering various multimedia sharing features",
"winget": "9WZDNCRF0083",
"choco": "messenger",
"default": [],
"category": "Communication",
"check": "false"
},
{
"Name": "Zoom",
"Description": "A video conferencing app that facilitates online meetings, webinars, and virtual events, allowing participants to interact through video, audio, and chat",
"winget": "Zoom.ZoomRooms",
"choco": "zoom",
"default": [],
"category": "Communication",
"check": "false"
},
{
"Name": "Microsoft Teams",
"Description": "A collaboration platform that combines workplace chat, video meetings, file storage, and application integration, enhancing teamwork and productivity within organizations",
"winget": "Microsoft.Teams",
"choco": "microsoft-teams.install",
"default": [],
"category": "Communication",
"check": "false"
},
{
"Name": "Discord",
"Description": "A VoIP application and digital distribution platform designed for creating communities and connecting gamers, providing text, voice, and video communication features",
"winget": "Discord.Discord",
"choco": "discord.install",
"default": [],
"category": "Communication",
"check": "false"
},
{
"Name": "TeamViewer",
"Description": "A remote access and support software that enables users to remotely control computers, transfer files, and collaborate online, facilitating remote work and IT support",
"winget": "TeamViewer.TeamViewer",
"choco": "teamviewer",
"default": [],
"category": "File Sharing",
"check": "false"
},
{
"Name": "GIMP",
"Description": "A free and open-source raster graphics editor used for image retouching and editing, drawing and painting, and converting between different image formats",
"winget": "GIMP.GIMP",
"choco": "gimp",
"default": [],
"category": "Imaging",
"check": "false"
},
{
"Name": "Microsoft Visual C++ Runtime - all versions",
"Description": "Microsoft Visual C++ Redistributable installs run-time components of Visual C++ libraries. These components are required to run C++ applications that are developed using Visual Studio and link dynamically to Visual C++ libraries",
"winget": "none",
"choco": "vcredist-all",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "DirectX",
"Description": "DirectX is a collection of APIs for handling tasks related to games and videos.",
"winget": "Microsoft.DirectX",
"choco": "directx",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2005 (x86) Redistributable",
"Description": "A set of runtime components required to run applications developed with Microsoft Visual C++ 2005, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2005",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2005 (x64) Redistributable",
"Description": "A set of runtime components required to run 64-bit applications developed with Microsoft Visual C++ 2005, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2005",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2008 (x86) Redistributable",
"Description": "A set of runtime components required to run applications developed with Microsoft Visual C++ 2008, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2008",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2008 (x64) Redistributable",
"Description": "A set of runtime components required to run 64-bit applications developed with Microsoft Visual C++ 2008, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2008",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2010 (x86) Redistributable",
"Description": "A set of runtime components required to run applications developed with Microsoft Visual C++ 2010, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2010",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2010 (x64) Redistributable",
"Description": "A set of runtime components required to run 64-bit applications developed with Microsoft Visual C++ 2010, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2010",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2012 (x86) Redistributable",
"Description": "A set of runtime components required to run applications developed with Microsoft Visual C++ 2012, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2012",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2012 (x64) Redistributable",
"Description": "A set of runtime components required to run 64-bit applications developed with Microsoft Visual C++ 2012, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2012",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2013 (x86) Redistributable",
"Description": "A set of runtime components required to run applications developed with Microsoft Visual C++ 2013, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2013",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2013 (x64) Redistributable",
"Description": "A set of runtime components required to run 64-bit applications developed with Microsoft Visual C++ 2013, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2013",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2015-2022 (x64) Redistributable",
"Description": "A set of runtime components required to run 64-bit applications developed with Microsoft Visual C++ 2015-2022, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2015",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "Microsoft Visual C++ 2015-2022 (x86) Redistributable",
"Description": "A set of runtime components required to run applications developed with Microsoft Visual C++ 2015-2022, providing libraries, DLLs, and other resources",
"winget": "none",
"choco": "vcredist2015",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "NET Framework All Versions",
"Description": "A comprehensive and consistent programming model for building applications that have visually stunning user experiences, seamless and secure communication, and the ability to model a range of business processes",
"winget": "none",
"choco": "dotnet-all",
"default": [],
"category": "Runtimes",
"check": "false"
},
{
"Name": "AMD Ryzen Chipset Drivers",
"Description": "Supports: AMD Ryzen Threadripper PRO Processor, AMD Ryzen 8000/7040/7000 Series Desktop & Mobile Processors, AMD Ryzen 5000/3rd Gen/2nd Gen Desktop & Threadripper Processors, AMD Ryzen Desktop Processor with Radeon Graphics & Mobile Processor with Radeon Graphics, 7th-Gen AMD A-Series Processors, AMD X670E/X670/B650E/B650/B350/A320/X370/X399/B450/X470/X570/B550/A520/A620/TRX40/TRX50/WRX80/WRX90 Chipsets",
"winget": "none",
"choco": "amd-ryzen-chipset",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "NVidia Display Driver",
"Description": "The software component that allows the operating system and installed software to communicate with and control the NVIDIA graphics processing unit (GPU)",
"winget": "none",
"choco": "nvidia-display-driver",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "NVIDIA GeForce Experience",
"Description": "A cloud-based gaming service provided by NVIDIA that allows users to play video games on supported devices via a remote gaming PC hosted on NVIDIA's servers",
"winget": "Nvidia.GeForceExperience",
"choco": "geforce-experience",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Msi Afterburner",
"Description": "MSI Afterburner is the ultimate graphics card utility, co-developed by MSI and RivaTuner teams",
"winget": "Guru3D.Afterburner",
"choco": "msiafterburner",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "NVIDIA PhysX",
"Description": "A physics processing unit (PPU) software development kit (SDK) offered by NVIDIA for real-time physics simulations in video games",
"winget": "Nvidia.PhysXLegacy",
"choco": "physx.legacy",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Steam",
"Description": "A digital distribution platform developed by Valve Corporation for purchasing and playing video games",
"winget": "Valve.Steam",
"choco": "steam",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "Ubisoft Connect",
"Description": "A digital distribution, digital rights management, multiplayer, and communications service developed by Ubisoft, providing access to Ubisoft's games, rewards, and social features",
"winget": "Ubisoft.Connect",
"choco": "ubisoft-connect",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "Origin",
"Description": " Game store launcher",
"winget": "ElectronicArts.Origin",
"choco": "origin",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "Rockstar Games Launcher",
"Description": "Download and play the latest Rockstar Games PC titles",
"winget": "none",
"choco": "rockstar-launcher",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "GameSave Manager",
"Description": "A utility tool that allows users to backup, restore, and transfer their game saves between different gaming platforms and directories",
"winget": "InsaneMatt.GameSaveManager",
"choco": "gamesavemanager",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "StreamlabsOBS",
"Description": "A free and open-source streaming software built on top of OBS Studio with additional features tailored for streamers, such as built-in alerts, overlays, and chat integration",
"winget": "Streamlabs.StreamlabsOBS",
"choco": "streamlabs-obs",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "OBS Studio",
"Description": "A free and open-source software for video recording and live streaming. It offers high performance real-time video/audio capturing and mixing",
"winget": "OBSProject.OBSStudio",
"choco": "obs-studio.install",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "Logitech Gaming Software",
"Description": "Logitech Gaming Software lets you customize Logitech G gaming mice, keyboards, headsets and select wheels",
"winget": "Logitech.LGS",
"choco": "logitechgaming",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "Lively Wallpaper",
"Description": "A software that allows users to set animated and interactive wallpapers on their Windows desktop, providing various customization options",
"winget": "rocksdanister.LivelyWallpaper",
"choco": "lively",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "Playnite",
"Description": "Open source video game library manager and launcher with support for 3rd party libraries like Steam, GOG, Origin, Battle.net and Uplay",
"winget": "Playnite.Playnite",
"choco": "playnite",
"default": [],
"category": "Gaming",
"check": "false"
},
{
"Name": "Driver Easy",
"Description": "A driver update tool that automatically detects, downloads, and installs device drivers for the user's computer hardware",
"winget": "Easeware.DriverEasy",
"choco": "drivereasyfree",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Intel Graphics Windows DCH",
"Description": "Intel Graphics Driver for Windows 10",
"winget": "none",
"choco": "intel-graphics-driver",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Intel Driver Support Assistant",
"Description": "Intel Driver & Support Assistant enables you to scan computing devices for the latest drivers available from Intel",
"winget": "Intel.IntelDriverAndSupportAssistant",
"choco": "intel-dsa",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Intel Network Adapter",
"Description": "Intel Network Adapter Drivers for Windows 10",
"winget": "Intel.WiFiDrivers",
"choco": "intel-network-drivers-win10",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Snappy Driver Installer",
"Description": "A free and open-source tool for updating and installing device drivers on Windows, offering offline driver updates and wide hardware support",
"winget": "samlab-ws.SnappyDriverInstaller",
"choco": "sdio",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Driver booster",
"Description": "Scans and identifies outdated drivers automatically, and downloads and installs the right update for you with just ONE click",
"winget": "IObit.DriverBooster",
"choco": "driverbooster",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Driver Genius",
"Description": "Professional driver management tool and hardware diagnostics",
"winget": "none",
"choco": "drivergenius",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Display Driver Uninstaller",
"Description": "Utility to completely remove system drivers",
"winget": "Wagnardsoft.DisplayDriverUninstaller",
"choco": "ddu",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "Driver Store Explorer",
"Description": " Windows driver store utility",
"winget": "none",
"choco": "rapr",
"default": [],
"category": "Drivers",
"check": "false"
},
{
"Name": "1Password",
"Description": "A password manager that securely stores login credentials, credit card information, and other sensitive data in an encrypted vault, accessible with a single master password",
"winget": "AgileBits.1Password",
"choco": "1password",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "AOMEI Partition Assistant Standard",
"Description": "AOMEI Partition Assistant Standard allows you to realize disk upgrade/replacement, partition style conversion, OS migration and other disk managements without any difficulties",
"winget": "AOMEI.PartitionAssistant",
"choco": "partition-assistant-standard",
"default": [],
"category": "Disk Tools",
"check": "false"
},
{
"Name": "AOMEI Backupper Standard",
"Description": "A backup and recovery software that enables users to create system backups, disk backups, partition backups, and file backups to protect data against system failures and data loss",
"winget": "AOMEI.Backupper.Standard",
"choco": "backupper-standard",
"default": [],
"category": "Disk Tools",
"check": "false"
},
{
"Name": "Recuva recover",
"Description": "A data recovery software that helps users retrieve accidentally deleted files, including photos, documents, videos, and more, from various storage devices such as hard drives, USB drives, and memory cards",
"winget": "Piriform.Recuva",
"choco": "recuva",
"default": [],
"category": "Disk Tools",
"check": "false"
},
{
"Name": "CCleaner",
"Description": "A system optimization, privacy, and cleaning tool that helps users remove unused files, clean up temporary files, and optimize their Windows PCs for better performance",
"winget": "SingularLabs.CCEnhancer",
"choco": "ccleaner",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "BCUninstaller",
"Description": "A powerful uninstaller tool for Windows that allows users to remove unwanted programs, plugins, and Windows Store apps, along with leftover files and registry entries",
"winget": "Klocman.BulkCrapUninstaller",
"choco": "bulk-crap-uninstaller",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Easy Context Menu",
"Description": "To install Easy Context Menu, run the following command from the command line or from PowerShell:",
"winget": "none",
"choco": "ecm",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "HWiNFO",
"Description": "A hardware information and diagnostic tool that provides detailed information about the hardware components of a computer system, including sensors, temperature, voltage, and more",
"winget": "REALiX.HWiNFO",
"choco": "hwinfo.install",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Speccy",
"Description": "A system information tool that provides detailed information about the hardware and operating system of a computer, including CPU, RAM, motherboard, graphics card, and storage devices",
"winget": "Piriform.Speccy",
"choco": "speccy",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "FurMark",
"Description": "A graphics card stress testing and benchmarking utility that helps users test the stability, cooling, and performance of their GPU by rendering a highly intensive 3D graphics scene",
"winget": "Geeks3D.FurMark",
"choco": "furmark",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Hard Disk Sentinel",
"Description": "A hard disk monitoring and analysis software that helps users monitor the health, performance, and temperature of their hard drives, SSDs, and other storage devices",
"winget": "JanosMathe.HardDiskSentinelPro",
"choco": "hdsentinel",
"default": [],
"category": "Disk Tools",
"check": "false"
},
{
"Name": "CPU-Z",
"Description": "A system monitoring utility that provides detailed information about the CPU, motherboard, memory, and other hardware components of a computer system",
"winget": "CPUID.CPU-Z",
"choco": "cpu-z",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Mem Reduct",
"Description": "Lightweight real-time memory management application to monitor and clean system memory on your computer",
"winget": "Henry++.MemReduct",
"choco": "memreduct",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "HandBrake",
"Description": "A free and open-source video transcoder tool that converts video files from one format to another, supporting a wide range of input and output formats",
"winget": "HandBrake.HandBrake",
"choco": "handbrake.install",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Rufus Portable",
"Description": "A utility tool for creating bootable USB drives from ISO images, helping users to install or run operating systems, such as Windows, Linux, or other utilities",
"winget": "Rufus.Rufus",
"choco": "rufus",
"default": [],
"category": "Portable",
"check": "false"
},
{
"Name": "ImgBurn",
"Description": "Lightweight CD / DVD burning application",
"winget": "LIGHTNINGUK.ImgBurn",
"choco": "imgburn",
"default": [],
"category": "Development",
"check": "false"
},
{
"Name": "Virtual CloneDrive",
"Description": "A free software that allows users to mount disc images as virtual drives, enabling them to access the content of ISO, BIN, and CCD files without the need for physical discs",
"winget": "none",
"choco": "virtualclonedrive",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Ultra ISO",
"Description": "A powerful ISO image management tool that enables users to create, edit, extract, and burn ISO files, providing a comprehensive solution for managing disk image files",
"winget": "EZBSystems.UltraISO",
"choco": "ultraiso",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Ventoy",
"Description": "An open-source tool for creating bootable USB drives with multiple ISO files, allowing users to boot various operating systems or utilities directly from a single USB drive",
"winget": "Ventoy.Ventoy",
"choco": "ventoy",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "iVentoy",
"Description": "With iVentoy you can boot and install OS on multiple machines at the same time through the network",
"winget": "none",
"choco": "iventoy",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "AutoHotkey",
"Description": "A scripting language for automating repetitive tasks and creating macros on Windows, allowing users to customize keyboard shortcuts, remap keys, and automate mouse actions",
"winget": "AutoHotkey.AutoHotkey",
"choco": "autohotkey",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Rainmeter",
"Description": "A customizable desktop customization tool that displays customizable skins, widgets, and applets on the Windows desktop, providing users with real-time system monitoring and information",
"winget": "Rainmeter.Rainmeter",
"choco": "rainmeter",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "FxSound",
"Description": "An audio enhancer software that improves the sound quality of music, videos, and games on Windows PCs by providing advanced audio processing and customization options",
"winget": "FxSoundLLC.FxSound",
"choco": "fxsound",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Vysor",
"Description": "A screen mirroring and remote control software that enables users to view and control Android devices from Windows PCs, allowing for easy screen sharing, app testing, and troubleshooting",
"winget": "Vysor.Vysor",
"choco": "vysor",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "Unified Remote",
"Description": "A remote control app that turns smartphones into universal remote controls for Windows, macOS, and Linux computers, allowing users to control media playback, presentations, and more",
"winget": "UnifiedIntents.UnifiedRemote",
"choco": "unifiedremote",
"default": [],
"category": "Utilities",
"check": "false"
},
{
"Name": "AnyDesk",
"Description": "A remote desktop software that allows users to access and control Windows, macOS, Linux, Android, and iOS devices from anywhere, providing secure and reliable remote access",
"winget": "AnyDeskSoftwareGmbH.AnyDesk",
"choco": "anydesk",
"default": [],
"category": "File Sharing",
"check": "false"
},
{
"Name": "Airdroid",
"Description": "AirDroid is a free and fast Android device manager app that allows you to access Android phone/tablet from computer remotely and securely. Manage SMS, files, photos and videos, WhatsApp, Line, WeChat and more on computer",
"winget": "AirDroid.AirDroid",
"choco": "airdroid",
"default": [],
"category": "File Sharing",
"check": "false"
},
{
"Name": "UltraViewer",