-
Notifications
You must be signed in to change notification settings - Fork 0
/
Get-AllApps.transcript.txt
2639 lines (2251 loc) · 75.9 KB
/
Get-AllApps.transcript.txt
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
**********************
PowerShell transcript start
Start time: 20240919211226
Username: BDESKTOPV2-1\baile
RunAs User: BDESKTOPV2-1\baile
Configuration Name:
Machine: BDESKTOPV2-1 (Microsoft Windows NT 10.0.26100.0)
Host Application: C:\Program Files\PowerShell\7\pwsh.dll
Process ID: 42916
PSVersion: 7.4.5
PSEdition: Core
GitCommitId: 7.4.5
OS: Microsoft Windows 10.0.26100
Platform: Win32NT
PSCompatibleVersions: 1.0, 2.0, 3.0, 4.0, 5.0, 5.1, 6.0, 7.0
PSRemotingProtocolVersion: 2.3
SerializationVersion: 1.1.0.1
WSManStackVersion: 3.0
**********************
Transcript started, output file is ./Get-AllApps.transcript.txt
PS>$Apps = @()
PS>$props = "DisplayName","DisplayVersion","Publisher","InstallDate",@{Name="GUID";Exp={$_.PSChildName}}
PS>$Apps += Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object @props,@{Name="BitType";Exp={"x64"}}
At line:1 char:103
+ ~~~~~~
Splatted variables like '@props' cannot be part of a comma-separated list of arguments.
ParserError:
Line |
| ~~~~~~
| Splatted variables like '@props' cannot be part of a comma-separated list of arguments.
PS>$Apps += Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object "DisplayName","DisplayVersion","Publisher","InstallDate",@{Name="GUID";Exp={$_.PSChildName}},@{Name="BitType";Exp={"x64"}}
PS>$Apps += Get-ItemProperty HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object "DisplayName","DisplayVersion","Publisher","InstallDate",@{Name="GUID";Exp={$_.PSChildName}},@{Name="BitType";Exp={"x86"}}
PS>$apps
DisplayName : 7-Zip 23.01 (x64)
DisplayVersion : 23.01
Publisher : Igor Pavlov
InstallDate :
GUID : 7-Zip
BitType : x64
DisplayName : ShareX
DisplayVersion : 16.1.0
Publisher : ShareX Team
InstallDate : 20240512
GUID : 82E6AC09-0FEF-4390-AD9F-0DD3F5561EFC_is1
BitType : x64
DisplayName : AMD Software
DisplayVersion : 24.5.1
Publisher : Advanced Micro Devices, Inc.
InstallDate :
GUID : AMD Catalyst Install Manager
BitType : x64
DisplayName : ARIA Engine v1.9.7.8
DisplayVersion : v1.9.7.8
Publisher : Plogue Art et Technologie, Inc
InstallDate : 20240617
GUID : ARIA Engine_is1
BitType : x64
DisplayName : Audacity 3.3.3
DisplayVersion : 3.3.3
Publisher : Audacity Team
InstallDate : 20230629
GUID : Audacity_is1
BitType : x64
DisplayName : AutoHotkey 1.1.37.02
DisplayVersion : 1.1.37.02
Publisher : AutoHotkey Foundation LLC
InstallDate :
GUID : AutoHotkey
BitType : x64
DisplayName : Cheat Engine 7.5
DisplayVersion :
Publisher : Cheat Engine
InstallDate : 20230824
GUID : Cheat Engine_is1
BitType : x64
DisplayName : Cisco Packet Tracer 8.2.1 64Bit
DisplayVersion : 8.2.1.118
Publisher : Cisco Systems, Inc.
InstallDate : 20240129
GUID : Cisco Packet Tracer 8.2.1 64Bit_is1
BitType : x64
DisplayName : Transcribe! 9.25.1
DisplayVersion : 9.25
Publisher : Seventh String Software
InstallDate : 20230704
GUID : com.seventhstring.Transcribe_is1
BitType : x64
DisplayName :
DisplayVersion :
Publisher :
InstallDate :
GUID : Connection Manager
BitType : x64
DisplayName : Docker Desktop
DisplayVersion : 4.30.0
Publisher : Docker Inc.
InstallDate :
GUID : Docker Desktop
BitType : x64
DisplayName : Equalizer APO
DisplayVersion : 1.3
Publisher :
InstallDate :
GUID : EqualizerAPO
BitType : x64
DisplayName : GIMP 2.10.34
DisplayVersion : 2.10.34
Publisher : The GIMP Team
InstallDate : 20230629
GUID : GIMP-2_is1
BitType : x64
DisplayName : Git
DisplayVersion : 2.41.0
Publisher : The Git Development Community
InstallDate : 20230629
GUID : Git_is1
BitType : x64
DisplayName : HWiNFO64
DisplayVersion : 8.10
Publisher : Martin Malik, REALiX s.r.o.
InstallDate : 20240209
GUID : HWiNFO64_is1
BitType : x64
DisplayName : ImageMagick 7.1.1-26 Q16-HDRI (64-bit) (2024-01-07)
DisplayVersion : 7.1.1.26
Publisher : ImageMagick Studio LLC
InstallDate : 20240111
GUID : ImageMagick 7.1.1 Q16-HDRI (64-bit)_is1
BitType : x64
DisplayName : IrfanView 4.62 (64-bit)
DisplayVersion : 4.62
Publisher : Irfan Skiljan
InstallDate :
GUID : IrfanView64
BitType : x64
DisplayName : Little Big Mouse version 4.2.7124.42685
DisplayVersion : 4.2.7124.42685
Publisher :
InstallDate : 20230902
GUID : Little Big Mouse_is1
BitType : x64
DisplayName : Meshmixer
DisplayVersion : 3.5
Publisher : Autodesk, Inc.
InstallDate :
GUID : Meshmixer_x64
BitType : x64
DisplayName : Microsoft Visual Studio 2010 Tools for Office Runtime (x64)
DisplayVersion : 10.0.50903
Publisher : Microsoft Corporation
InstallDate :
GUID : Microsoft Visual Studio 2010 Tools for Office Runtime (x64)
BitType : x64
DisplayName :
DisplayVersion :
Publisher : Microsoft Corporation
InstallDate :
GUID : mstsc-4b0a31aa-df6a-4307-9b47-d5cc50009643
BitType : x64
DisplayName : Microsoft 365 Apps for enterprise - en-us
DisplayVersion : 16.0.17928.20156
Publisher : Microsoft Corporation
InstallDate :
GUID : O365ProPlusRetail - en-us
BitType : x64
DisplayName : Oculus
DisplayVersion : <3
Publisher : Facebook Technologies, LLC
InstallDate :
GUID : Oculus
BitType : x64
DisplayName : Microsoft OneDrive
DisplayVersion : 24.180.0905.0001
Publisher : Microsoft Corporation
InstallDate :
GUID : OneDriveSetup.exe
BitType : x64
DisplayName : OpenSCAD (remove only)
DisplayVersion : 2021.01
Publisher : The OpenSCAD Developers
InstallDate :
GUID : OpenSCAD
BitType : x64
DisplayName : Baldur's Gate 3
DisplayVersion :
Publisher : Larian Studios
InstallDate :
GUID : Steam App 1086940
BitType : x64
DisplayName : Starfield
DisplayVersion :
Publisher : Bethesda Game Studios
InstallDate :
GUID : Steam App 1716740
BitType : x64
DisplayName : PlanetSide 2
DisplayVersion :
Publisher : Rogue Planet Games
InstallDate :
GUID : Steam App 218230
BitType : x64
DisplayName : Universe Sandbox
DisplayVersion :
Publisher : Giant Army
InstallDate :
GUID : Steam App 230290
BitType : x64
DisplayName : Papers, Please
DisplayVersion :
Publisher : Lucas Pope
InstallDate :
GUID : Steam App 239030
BitType : x64
DisplayName : SteamVR
DisplayVersion :
Publisher : Valve
InstallDate :
GUID : Steam App 250820
BitType : x64
DisplayName : Fantasy Map Simulator
DisplayVersion :
Publisher : The Stranger
InstallDate :
GUID : Steam App 3035500
BitType : x64
DisplayName : Peggle Deluxe
DisplayVersion :
Publisher : PopCap Games, Inc.
InstallDate :
GUID : Steam App 3480
BitType : x64
DisplayName : Peggle Nights
DisplayVersion :
Publisher : PopCap Games, Inc.
InstallDate :
GUID : Steam App 3540
BitType : x64
DisplayName : Aseprite
DisplayVersion :
Publisher : David Capello
InstallDate :
GUID : Steam App 431730
BitType : x64
DisplayName : TuxGuitar
DisplayVersion : 1.6.0
Publisher : TuxGuitar
InstallDate : 20240123
GUID : TuxGuitar 1.6.0
BitType : x64
DisplayName : USBPcap 1.5.4.0
DisplayVersion : 1.5.4.0
Publisher : Tomasz Mon
InstallDate :
GUID : USBPcap
BitType : x64
DisplayName : Vim 9.0 (x64)
DisplayVersion : 9.0.1672
Publisher : Bram Moolenaar et al.
InstallDate :
GUID : Vim 9.0
BitType : x64
DisplayName : Microsoft Visio - en-us
DisplayVersion : 16.0.17928.20156
Publisher : Microsoft Corporation
InstallDate :
GUID : VisioPro2021Retail - en-us
BitType : x64
DisplayName : VLC media player
DisplayVersion : 3.0.20
Publisher : VideoLAN
InstallDate :
GUID : VLC media player
BitType : x64
DisplayName : VTFEdit 1.3.3
DisplayVersion :
Publisher : Neil Jedrzejewski & Ryan Gregg
InstallDate : 20240220
GUID : VTFEdit_is1
BitType : x64
DisplayName : Vulkan Run Time Libraries 1.0.65.1
DisplayVersion : 1.0.65.1
Publisher : LunarG, Inc.
InstallDate :
GUID : VulkanRT1.0.65.1
BitType : x64
DisplayName :
DisplayVersion :
Publisher :
InstallDate :
GUID : WIC
BitType : x64
DisplayName : WinHTTrack Website Copier 3.49-2 (x64)
DisplayVersion : 3.49.2
Publisher : HTTrack
InstallDate : 20240108
GUID : WinHTTrack Website Copier_is1
BitType : x64
DisplayName : WizTree v4.18
DisplayVersion : 4.18
Publisher : Antibody Software
InstallDate : 20240303
GUID : WizTree_is1
BitType : x64
DisplayName : Garritan ARIA Player v1.959
DisplayVersion : v1.959
Publisher : Garritan
InstallDate : 20230629
GUID : __ARIA_1012___is1
BitType : x64
DisplayName : Garritan Instruments for Finale
DisplayVersion : v2.0.0.96
Publisher : Garritan
InstallDate : 20230629
GUID : __ARIA_1013___is1
BitType : x64
DisplayName : Plogue sforzando v1.978
DisplayVersion : v1.978
Publisher : Plogue
InstallDate : 20240617
GUID : __ARIA_1014___is1
BitType : x64
DisplayName : Microsoft Visual C++ 2013 x64 Additional Runtime - 12.0.40664
DisplayVersion : 12.0.40664
Publisher : Microsoft Corporation
InstallDate : 20231010
GUID : {010792BA-551A-3AC0-A7EF-0FAB4156C382}
BitType : x64
DisplayName : Microsoft .NET Runtime - 6.0.33 (x64)
DisplayVersion : 48.132.18378
Publisher : Microsoft Corporation
InstallDate : 20240816
GUID : {07BE9B02-0247-471C-B06F-A3B1A8FA9216}
BitType : x64
DisplayName : IIS Express Application Compatibility Database for x64
DisplayVersion :
Publisher :
InstallDate :
GUID : {08274920-8908-45c2-9258-8ad67ff77b09}.sdb
BitType : x64
DisplayName : Microsoft .NET Core Host - 2.0.9 (x64)
DisplayVersion : 16.36.26615
Publisher : Microsoft Corporation
InstallDate : 20230716
GUID : {0B28A1DB-A543-45FB-8767-DF71EE5A9323}
BitType : x64
DisplayName : AWS Command Line Interface v2
DisplayVersion : 2.13.3.0
Publisher : Amazon Web Services
InstallDate : 20230725
GUID : {0D941556-04AB-42EE-B1FD-CF4B21CA0B96}
BitType : x64
DisplayName : Bonjour Print Services
DisplayVersion : 2.0.2.0
Publisher : Apple Inc.
InstallDate : 20231024
GUID : {0DA20600-6130-443B-9D4B-F30520315FA6}
BitType : x64
DisplayName : Microsoft ODBC Driver 17 for SQL Server
DisplayVersion : 17.10.6.1
Publisher : Microsoft Corporation
InstallDate : 20240411
GUID : {0E0F96AC-80DE-4400-A40C-429D63293651}
BitType : x64
DisplayName : Microsoft.NET.Sdk.Maui.Manifest-8.0.100 (x64)
DisplayVersion : 8.0.3
Publisher : Microsoft Corporation
InstallDate : 20240805
GUID : {116EF6D0-AE8E-4E6D-B0D8-EFF145CD45DA}
BitType : x64
DisplayName : Canon TR8500 series MP Drivers
DisplayVersion : 1.02
Publisher : Canon Inc.
InstallDate :
GUID : {1199FAD5-9546-44f3-81CF-FFDB8040B7BF}_Canon_TR8500_series
BitType : x64
DisplayName : Microsoft.NET.Sdk.tvOS.Manifest-8.0.100 (x64)
DisplayVersion : 17.5.8030
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {127F17DA-09A1-4F5B-A47D-009D7E515FA5}
BitType : x64
DisplayName : NordVPN
DisplayVersion : 7.28.4.0
Publisher : Nord Security
InstallDate : 20240908
GUID : {19465C24-3D5D-4327-B99F-3CC0A1D38151}_is1
BitType : x64
DisplayName : Microsoft ASP.NET Core 8.0.8 Shared Framework (x64)
DisplayVersion : 8.0.8.24369
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {1A631874-52CA-3CD6-84C2-0465F1280EDA}
BitType : x64
DisplayName : Microsoft Visual C++ 2010 x64 Redistributable - 10.0.40219
DisplayVersion : 10.0.40219
Publisher : Microsoft Corporation
InstallDate : 20230629
GUID : {1D8E6291-B0D5-35EC-8441-6616F567A0F7}
BitType : x64
DisplayName : Node.js
DisplayVersion : 20.3.1
Publisher : Node.js Foundation
InstallDate : 20230629
GUID : {20456712-29D7-4429-B065-D361CE4EC950}
BitType : x64
DisplayName : AMD WVR64
DisplayVersion : 1.0.2
Publisher : Advanced Micro Devices, Inc.
InstallDate : 20240527
GUID : {2A74586A-35F2-4158-B570-4022F0EF85DC}
BitType : x64
DisplayName : GitHub CLI
DisplayVersion : 2.32.1
Publisher : GitHub, Inc.
InstallDate : 20230803
GUID : {2BA87281-0973-42C6-8214-B2D516CCF05B}
BitType : x64
DisplayName : Inkscape
DisplayVersion : 1.3.0
Publisher : Inkscape
InstallDate : 20230803
GUID : {2C69A8D5-2E44-4F99-BD5E-08536B52F1DA}
BitType : x64
DisplayName : Oracle VM VirtualBox 7.0.8
DisplayVersion : 7.0.8
Publisher : Oracle and/or its affiliates
InstallDate : 20230630
GUID : {2D9D28CD-84DE-4DC7-BAD2-CA5505324049}
BitType : x64
DisplayName : Microsoft .NET 8.0 Templates 8.0.304 (x64)
DisplayVersion : 32.10.12914
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {36505731-00CF-4BDE-8A6A-6D8BD2264C7A}
BitType : x64
DisplayName : Microsoft SQL Server 2019 LocalDB
DisplayVersion : 15.0.4153.1
Publisher : Microsoft Corporation
InstallDate : 20230724
GUID : {36E492B8-CB83-4DA5-A5D2-D99A8E8228A1}
BitType : x64
DisplayName : Microsoft Visual C++ 2012 x64 Additional Runtime - 11.0.61030
DisplayVersion : 11.0.61030
Publisher : Microsoft Corporation
InstallDate : 20230705
GUID : {37B8F9C7-03FB-3253-8781-2517C99D7C00}
BitType : x64
DisplayName : Microsoft.NET.Sdk.Aspire.Manifest-8.0.100 (x64)
DisplayVersion : 64.64.18482
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {38DF0526-2425-4999-B77C-82281D15F35C}
BitType : x64
DisplayName : Portals version 3.3.0.9
DisplayVersion : 3.3.0.9
Publisher : Ross Patterson
InstallDate : 20240706
GUID : {3A663D11-1782-48DC-8BE1-DB11BB33D6FA}_is1
BitType : x64
DisplayName : Microsoft .NET Host - 8.0.8 (x64)
DisplayVersion : 64.32.18380
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {3BA242F8-BDB5-4096-9FBC-333CD663BBAD}
BitType : x64
DisplayName : Windows Subsystem for Linux WSLg Preview
DisplayVersion : 1.0.27
Publisher : Microsoft Corporation
InstallDate : 20230702
GUID : {3CBDE512-7510-4F90-B1C0-7C4EB9DD7C26}
BitType : x64
DisplayName : MuseScore Studio 4
DisplayVersion : 4.4.1.242490810
Publisher : MuseScore Limited
InstallDate : 20240915
GUID : {423D6811-C89B-48FB-B447-34878AC52615}
BitType : x64
DisplayName : Microsoft Windows Desktop Targeting Pack - 8.0.8 (x64)
DisplayVersion : 64.32.18376
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {42EC60F8-0BB6-4F58-8D0E-370CAB21A961}
BitType : x64
DisplayName : Microsoft.NET.Workload.Mono.Toolchain.net7.Manifest (x64)
DisplayVersion : 64.32.18380
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {433283AA-1F1F-493A-836F-EDE6388F718A}
BitType : x64
DisplayName : Branding64
DisplayVersion : 1.00.0009
Publisher : Advanced Micro Devices, Inc.
InstallDate : 20240527
GUID : {492AEFBE-1B81-4C20-A111-E6974BB98EC5}
BitType : x64
DisplayName : Rust 1.73 (MSVC 64-bit)
DisplayVersion : 1.73.0.0
Publisher : The Rust Project Developers
InstallDate : 20231031
GUID : {4AEB6274-38D2-4C0B-BFD7-96CD500451B6}
BitType : x64
DisplayName : KeePassXC
DisplayVersion : 2.7.9
Publisher : KeePassXC Team
InstallDate : 20240704
GUID : {4D0AFBD7-7864-4FF3-A481-513DEBFAB175}
BitType : x64
DisplayName : PuTTY release 0.78 (64-bit)
DisplayVersion : 0.78.0.0
Publisher : Simon Tatham
InstallDate : 20230729
GUID : {4EEF2644-700F-46F8-9655-915145248986}
BitType : x64
DisplayName : AMD DVR64
DisplayVersion : 1.0.2
Publisher : Advanced Micro Devices, Inc.
InstallDate : 20240527
GUID : {5018827A-F7DF-4F00-AF48-FD584ACAF0B8}
BitType : x64
DisplayName : Microsoft .NET Toolset 8.0.304 (x64)
DisplayVersion : 32.9.12914
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {516DE5E2-17F6-4C39-97DD-14436DF8E25F}
BitType : x64
DisplayName : Microsoft.NET.Workload.Emscripten.net7.Manifest (x64)
DisplayVersion : 64.32.18242
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {518CABDD-A838-4C9D-873E-5B3390DCE8AA}
BitType : x64
DisplayName : DB Browser for SQLite
DisplayVersion : 3.12.2
Publisher : DB Browser for SQLite Team
InstallDate : 20230721
GUID : {5211034D-495B-4A5E-9B8D-8961BBB2B9E2}
BitType : x64
DisplayName : Logitech G HUB
DisplayVersion : 2024.7.621167
Publisher : Logitech
InstallDate :
GUID : {521c89be-637f-4274-a840-baaf7460c2b2}
BitType : x64
DisplayName : Microsoft Visual C++ 2013 x64 Minimum Runtime - 12.0.40664
DisplayVersion : 12.0.40664
Publisher : Microsoft Corporation
InstallDate : 20231010
GUID : {53CF6934-A98D-3D84-9146-FC4EDF3D5641}
BitType : x64
DisplayName : IIS 10.0 Express
DisplayVersion : 10.0.07728
Publisher : Microsoft Corporation
InstallDate : 20230724
GUID : {56674F3A-EE02-4EC7-B429-B8C37CA254E3}
BitType : x64
DisplayName : Microsoft.NET.Sdk.tvOS.Manifest-8.0.100 (x64)
DisplayVersion : 17.0.8478
Publisher : Microsoft Corporation
InstallDate : 20240805
GUID : {568F99E8-9F2D-48D7-A05D-D64C512B3AFD}
BitType : x64
DisplayName : Windows Subsystem for Linux
DisplayVersion : 2.2.4.0
Publisher : Microsoft Corporation
InstallDate : 20240506
GUID : {57CD6412-C4AC-431F-8753-46A620EF3A4E}
BitType : x64
DisplayName : Microsoft Visual C++ 2022 X64 Additional Runtime - 14.40.33810
DisplayVersion : 14.40.33810
Publisher : Microsoft Corporation
InstallDate : 20240722
GUID : {59CED48F-EBFE-480C-8A38-FC079C2BEC0F}
BitType : x64
DisplayName : Microsoft .NET Core Host FX Resolver - 2.0.9 (x64)
DisplayVersion : 16.36.26615
Publisher : Microsoft Corporation
InstallDate : 20230716
GUID : {5ABDD743-82EB-444C-913F-F2BC033AEAE6}
BitType : x64
DisplayName : Microsoft .NET 8.0 Templates 8.0.401 (x64)
DisplayVersion : 32.10.16914
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {5B88DCA0-A8FD-4700-957E-88565890439D}
BitType : x64
DisplayName : Microsoft System CLR Types for SQL Server 2019
DisplayVersion : 15.0.2000.5
Publisher : Microsoft Corporation
InstallDate : 20240805
GUID : {5BC7E9EB-13E8-45DB-8A60-F2481FEB4595}
BitType : x64
DisplayName : PowerToys (Preview)
DisplayVersion : 0.83.0
Publisher : Microsoft Corporation
InstallDate : 20240730
GUID : {5CA9E191-37EF-4DC4-BA01-87E0E73B035B}
BitType : x64
DisplayName : Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.6161
DisplayVersion : 9.0.30729.6161
Publisher : Microsoft Corporation
InstallDate : 20240203
GUID : {5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4}
BitType : x64
DisplayName : Blackmagic RAW Common Components
DisplayVersion : 3.4
Publisher : Blackmagic Design
InstallDate : 20231113
GUID : {62A102F5-FBA0-43BB-BFC2-657C07BC0901}
BitType : x64
DisplayName : Microsoft .NET Host FX Resolver - 6.0.33 (x64)
DisplayVersion : 48.132.18378
Publisher : Microsoft Corporation
InstallDate : 20240816
GUID : {62A8E894-9FD1-45A0-A4D0-BD9FA854818D}
BitType : x64
DisplayName : Microsoft Windows Desktop Runtime - 8.0.8 (x64)
DisplayVersion : 64.32.18376
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {663E7053-3B36-4AE5-8223-234867FAEAE6}
BitType : x64
DisplayName : vs_devenx64vmsi
DisplayVersion : 17.11.35102
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {67B8CF3A-C2F5-424F-B172-E0A2B8D5D2D5}
BitType : x64
DisplayName : Workflow Manager Client 1.0
DisplayVersion : 2.1.10525.2
Publisher : Microsoft Corporation
InstallDate : 20230724
GUID : {69CD1F2D-DF68-4E23-9108-1B70783F2855}
BitType : x64
DisplayName : Microsoft.NET.Sdk.iOS.Manifest-8.0.100 (x64)
DisplayVersion : 17.0.8478
Publisher : Microsoft Corporation
InstallDate : 20240805
GUID : {6BF59E75-BE05-4C69-9C48-3532B6DE0EC5}
BitType : x64
DisplayName : VS JIT Debugger
DisplayVersion : 17.0.157.0
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {6C1EDC0A-E71D-44D2-821C-213A5CD15498}
BitType : x64
DisplayName : NordUpdater
DisplayVersion : 1.4.4.821
Publisher : Nord Security
InstallDate : 20240829
GUID : {6E35DB82-3D19-4DD6-B8CB-F082815FDE18}_is1
BitType : x64
DisplayName : Bonjour
DisplayVersion : 3.0.0.10
Publisher : Apple Inc.
InstallDate : 20231014
GUID : {6E3610B2-430D-4EB0-81E3-2B57E8B9DE8D}
BitType : x64
DisplayName : Microsoft Visual Studio Installer
DisplayVersion : 3.11.2180.21897
Publisher : Microsoft Corporation
InstallDate : 20230629
GUID : {6F320B93-EE3C-4826-85E0-ADF79F8D4C61}
BitType : x64
DisplayName : VMware Workstation
DisplayVersion : 17.5.0
Publisher : VMware, Inc.
InstallDate : 20240104
GUID : {71FAC1A8-65A4-4DC1-8BAE-4ABD8989CED7}
BitType : x64
DisplayName : Microsoft .NET 8.0 Templates 8.0.400 (x64)
DisplayVersion : 32.10.13214
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {755A96BB-AB66-4671-AA4E-99177657E625}
BitType : x64
DisplayName : Java 8 Update 421 (64-bit)
DisplayVersion : 8.0.4210.9
Publisher : Oracle Corporation
InstallDate : 20240913
GUID : {77924AE4-039E-4CA4-87B4-2F64180421F0}
BitType : x64
DisplayName : Microsoft.NET.Sdk.macOS.Manifest-8.0.100 (x64)
DisplayVersion : 14.5.8030
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {79CEE176-25CD-46B6-8E03-318D6B0CE962}
BitType : x64
DisplayName : Ableton Live 11 Suite
DisplayVersion : 11.0.0.0
Publisher : Ableton
InstallDate : 20230916
GUID : {7A330287-7165-47F2-B54D-C875E51DE1FB}
BitType : x64
DisplayName : Application Compatibility Toolkit
DisplayVersion : 10.1.26100.1
Publisher : Microsoft
InstallDate : 20240819
GUID : {7A8AFEB3-ABCE-D239-6F39-C147924353BD}
BitType : x64
DisplayName : Microsoft .NET Host FX Resolver - 8.0.8 (x64)
DisplayVersion : 64.32.18380
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {7FE24458-0796-4428-99C2-9A0F8DAB93CC}
BitType : x64
DisplayName : Microsoft.NET.Sdk.Android.Manifest-8.0.100 (x64)
DisplayVersion : 34.0.113
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {82E988D4-4794-49D0-8185-B49CD842BFFB}
BitType : x64
DisplayName : Go Programming Language amd64 go1.21.4
DisplayVersion : 1.21.4
Publisher : https://go.dev
InstallDate : 20231118
GUID : {83CD2014-D3EA-4684-9105-F08965CAA955}
BitType : x64
DisplayName : Elgato Stream Deck
DisplayVersion : 6.6.0.20583
Publisher : Corsair Memory, Inc.
InstallDate : 20240421
GUID : {851FAE0D-E0EF-42DA-A997-7A83478F4CE3}
BitType : x64
DisplayName : Microsoft .NET Host - 6.0.33 (x64)
DisplayVersion : 48.132.18378
Publisher : Microsoft Corporation
InstallDate : 20240816
GUID : {8584855C-3B2B-4F95-BE1D-CCA5B6DE2815}
BitType : x64
DisplayName : Microsoft.NET.Sdk.MacCatalyst.Manifest-8.0.100 (x64)
DisplayVersion : 17.0.8478
Publisher : Microsoft Corporation
InstallDate : 20240805
GUID : {8B5384CA-D189-4CFE-8DF0-2D05B4EA8499}
BitType : x64
DisplayName : Paradox Launcher v2
DisplayVersion : 2.4.0
Publisher : Paradox Interactive
InstallDate : 20230629
GUID : {8C5CF4CE-D589-40B4-A77F-01FD64602C50}
BitType : x64
DisplayName : Microsoft .NET Toolset 8.0.400 (x64)
DisplayVersion : 32.8.13214
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {8C62C8E8-64AE-448E-B98C-127E2BBED5D6}
BitType : x64
DisplayName : Ableton Push Driver v5.50.0
DisplayVersion : 5.50.0
Publisher : Ableton
InstallDate : 20230916
GUID : {8CE98F88-3F07-4338-A036-B66414F3FD66}
BitType : x64
DisplayName : Microsoft.NET.Sdk.Maui.Manifest-8.0.100 (x64)
DisplayVersion : 8.0.72
Publisher : Microsoft Corporation
InstallDate : 20240911
GUID : {8D04CA7E-1BE1-4797-BCB9-8558C64B0FFA}
BitType : x64
DisplayName : Microsoft Access database engine 2010 (English)
DisplayVersion : 14.0.7015.1000
Publisher : Microsoft Corporation
InstallDate : 20230716
GUID : {90140000-00D1-0409-1000-0000000FF1CE}
BitType : x64
DisplayName : Office 16 Click-to-Run Licensing Component
DisplayVersion : 16.0.17928.20156
Publisher : Microsoft Corporation
InstallDate : 20240912
GUID : {90160000-007E-0000-1000-0000000FF1CE}
BitType : x64
DisplayName : Office 16 Click-to-Run Extensibility Component
DisplayVersion : 16.0.17928.20156
Publisher : Microsoft Corporation
InstallDate : 20240912
GUID : {90160000-008C-0000-1000-0000000FF1CE}
BitType : x64
DisplayName : DiagnosticsHub_CollectionService
DisplayVersion : 17.10.34627
Publisher : Microsoft Corporation
InstallDate : 20240805
GUID : {92A47FAD-5C85-400C-8B00-698D4C5F7031}
BitType : x64
DisplayName : OpenVPN 2.6.5-I001 amd64
DisplayVersion : 2.6.501
Publisher : OpenVPN, Inc.
InstallDate : 20230803
GUID : {940590BF-593E-418B-809D-F48EA0EC751E}
BitType : x64
DisplayName : Microsoft Visual Studio 2010 Tools for Office Runtime (x64)
DisplayVersion : 10.0.50908
Publisher : Microsoft Corporation
InstallDate : 20230724
GUID : {9495AEB4-AB97-39DE-8C42-806EEF75ECA7}
BitType : x64
DisplayName : Microsoft.NET.Sdk.macOS.Manifest-8.0.100 (x64)
DisplayVersion : 14.0.8478
Publisher : Microsoft Corporation
InstallDate : 20240805
GUID : {98927287-8779-447A-919E-73028D53F719}
BitType : x64
DisplayName : Microsoft .NET Runtime - 8.0.8 (x64)
DisplayVersion : 64.32.18380
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {9ACB23DB-4D32-49ED-A5E3-F4E2F8D9D2AA}
BitType : x64
DisplayName : Microsoft.NET.Workload.Emscripten.net6.Manifest (x64)
DisplayVersion : 64.32.18242
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {9D1150CA-4E91-4CEA-8653-6D7026137090}
BitType : x64
DisplayName : Finale
DisplayVersion : 26.3.1.520
Publisher : MakeMusic
InstallDate : 20230629
GUID : {9DA1AAA0-6348-47F2-AEAD-156235B650E6}
BitType : x64
DisplayName : Microsoft .NET AppHost Pack - 8.0.8 (x64)
DisplayVersion : 64.32.18380
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {9EFD0CF9-17ED-422A-8227-16DFDD867EC4}
BitType : x64
DisplayName : Microsoft ASP.NET Core 8.0.8 Targeting Pack (x64)
DisplayVersion : 8.0.8.24369
Publisher : Microsoft Corporation
InstallDate : 20240814
GUID : {9F6AA59A-AF40-32FB-9707-DDB1D80D42C3}
BitType : x64
DisplayName : RyzenMasterSDK
DisplayVersion : 1.2.3.5
Publisher : Advanced Micro Devices, Inc.
InstallDate : 20240527
GUID : {A4C57FE6-B033-4436-ADB6-3BCDB7616D69}
BitType : x64
DisplayName : Microsoft Windows Desktop Runtime - 6.0.33 (x64)
DisplayVersion : 48.132.18374
Publisher : Microsoft Corporation
InstallDate : 20240816
GUID : {A59F43A6-AADB-42EB-883B-2FE4E3AA3A69}
BitType : x64
DisplayName : Microsoft .NET Standard Targeting Pack - 2.1.0 (x64)
DisplayVersion : 24.0.28113
Publisher : Microsoft Corporation
InstallDate : 20240805
GUID : {A7036CFB-B403-4598-85FF-D397ABB88173}
BitType : x64