-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackageData.json
More file actions
7942 lines (7942 loc) · 717 KB
/
packageData.json
File metadata and controls
7942 lines (7942 loc) · 717 KB
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
{
"packages": [
{
"name": "Microsoft WebView2",
"versionnumber": "126.0.2592.87",
"versionname": "",
"modified": "2024-07-03 09:16:02",
"description": "Publisher: Microsoft<br>Download: https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit<br><br>Notes:<br>1. This is the WebView2 Evergreen Version and is designed to auto-update.<br>2. Error code -2147219187 means an existing or newer version of Webview2 is already installed. This has been added as a success code."
},
{
"name": "Power Automate Desktop",
"versionnumber": "2.45.393.24179",
"versionname": "",
"modified": "2024-07-03 09:15:08",
"description": "Publisher: Microsoft<br>Download: https://learn.microsoft.com/en-us/power-automate/desktop-flows/install<br>Supported Operating Systems: Windows 10,11, Server 2016, 2019, 2022<br>Supported Architecture: 64"
},
{
"name": "Evernote",
"versionnumber": "10.95.4",
"versionname": "",
"modified": "2024-07-03 09:13:38",
"description": "Publisher: Evernote<br>Download: https://evernote.com/download<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. Old versions of Evernote will be uninstalled in order to provide a smoother upgrade process<br>2. Beginning in Version 10, Evernote changed from a traditional installation model to a per-user installation. This will uninstall traditional and machine-wide Evernote installations, but will not uninstall previous per-user installations located in \"C:\\Users\\%USERNAME%\\AppData\\Local\\Programs\\Evernote\\\"<br>3. After installation, some user shortcuts may need to be updated to the machine-wide executable found in: %ProgramFiles%\\Evernote"
},
{
"name": "Uninstall TeamViewer",
"versionnumber": "2.1",
"versionname": "",
"modified": "2024-07-03 08:28:08",
"description": "Publisher: PDQ.com<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>This will attempt to gracefully uninstall Teamviewer from the target machine.<br>Please test before running in your production environment."
},
{
"name": "PowerToys",
"versionnumber": "0.82.0",
"versionname": "",
"modified": "2024-07-02 15:13:25",
"description": "Publisher: Microsoft<br>Download: https://github.com/microsoft/PowerToys/releases<br>Supported Operating Systems: Windows 10,11 / Server 2022<br>Supported Architecture: 64"
},
{
"name": "BitWarden",
"versionnumber": "2024.6.4",
"versionname": "",
"modified": "2024-07-02 15:12:27",
"description": "Publisher: Bitwarden, Inc.<br>Download: https://bitwarden.com/download/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Microsoft Edge for Business",
"versionnumber": "126.0.2592.87",
"versionname": "",
"modified": "2024-07-02 15:11:05",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/edge/business<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Node.js",
"versionnumber": "22.4.0",
"versionname": "",
"modified": "2024-07-02 08:07:38",
"description": "Publisher: OpenJS Foundation<br>Download: https://nodejs.org/dist/latest/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Opera",
"versionnumber": "111.0.5168.55",
"versionname": "",
"modified": "2024-07-01 09:20:09",
"description": "Publisher: Opera<br>Download: https://www.opera.com/computer<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Auto Update is disabled."
},
{
"name": "Zoom Client",
"versionnumber": "6.1.1.41705",
"versionname": "",
"modified": "2024-07-01 08:36:58",
"description": "Publisher: Zoom Video Communications, Inc.<br>Download: https://zoom.us/download<br>Supported Operating Systems: Windows 7,8,9,10,11<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. This package will wait until any in-progress meetings end before installing.<br>2. Zoom has changed their default install package from 32Bit to 64Bit. The package has been updated to reflect this change."
},
{
"name": "Draw.io",
"versionnumber": "24.6.4",
"versionname": "",
"modified": "2024-06-28 16:33:12",
"description": "Publisher: JGraph Ltd<br>Download: https://github.com/jgraph/drawio-desktop/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Krita",
"versionnumber": "5.2.3",
"versionname": "",
"modified": "2024-06-28 16:32:40",
"description": "Publisher: Krita Foundation<br>Download: https://krita.org/en/download/krita-desktop/<br>Supported Operating Systems: All<br>Supported Architecture: 64<br><br>Special Notes:<br>As of version 4.4.7.0, Krita on Windows does not support 32-bit."
},
{
"name": "PSWindowsUpdate - Install Specific Microsoft KB",
"versionnumber": "2.2.0.3",
"versionname": "2.2.1.4",
"modified": "2024-06-27 15:36:23",
"description": "This is a TEMPLATE package that REQUIRES YOU to make additional MODIFICATIONS to complete the package:<br>1. You will need to replace the KBNumber in the PARAMETERS field of STEP 1 with the KBNumber you wish to deploy.<br>2. Make sure you preserve the exact syntax as shown.<br>3. The KB will only install if it applies to the operating system.<br><br>Name: PSWindowsUpdate (WSUS Alternative)<br>Publisher: PowerShellGallery<br>Home: https://www.powershellgallery.com/packages/PSWindowsUpdate/2.2.1.4<br>Download: https://psg-prod-eastus.azureedge.net/packages/pswindowsupdate.2.2.1.4.nupkg<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit<br>KB Article: https://help.pdq.com/hc/en-us/articles/13615858339611<br><br>While we typically avoid third-party tools, the PSWindowsUpdate module is well-known and widely used for checking and applying all available Microsoft updates to a machine and can be a viable alternative to WSUS. If you are a military or government organization, you may want to review this PowerShell Module in greater detail before placing into production to ensure that it meets your security standards.<br><br>1. Check if the NuGet Package Provider is installed. If it is not, it will attempt to download and install the Nuget Provider.<br>2. Check if the PSWindowsUpdate module is installed. If it is not, it will use the NuGet installer to attempt to download and install the PSWindowsUpdate module.<br>3. It will then check for any existing WSUS/Windows Update registry settings and back them up before removing them. (This is to avoid returning a partial list of available updates restricted by policies)<br>4. It will then run the PSWindowsUpdate module and check for all available Microsoft patches.<br>5. Then, depending on which of the 6 packages you've selected to run, it will install those updates.<br>6. Reboots are disabled, but may be required in order to complete the installation of some patches and properly reflect that packages have been successfully installed<br>7. Finally, it will look and if the registry did have existing WSUS/Windows update policies, it will restore those settings to honor the organization GPO/configuration.<br><br>*If the PowerShell script fails, the target computer may need you to run an additional command first to allow PowerShell scripts to run. You can create a custom package with a PowerShell step and paste this code in the PowerShell step:<br>Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned -Force<br>*This package will not work on air-gapped networks"
},
{
"name": "Microsoft WebView2",
"versionnumber": "126.0.2592.81",
"versionname": "",
"modified": "2024-06-27 14:53:55",
"description": "Publisher: Microsoft<br>Download: https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit<br><br>Notes:<br>1. This is the WebView2 Evergreen Version and is designed to auto-update.<br>2. Error code -2147219187 means an existing or newer version of Webview2 is already installed. This has been added as a success code."
},
{
"name": "Microsoft Edge for Business",
"versionnumber": "126.0.2592.81",
"versionname": "",
"modified": "2024-06-27 14:52:55",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/edge/business<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "QGIS",
"versionnumber": "3.38.0",
"versionname": "",
"modified": "2024-06-27 11:55:39",
"description": "Publisher: QGIS.org<br>Download: https://www.qgis.org/en/site/forusers/download.html<br>Supported Operating Systems: All<br>Supported Architecture: 64<br>Special Notes:<br>1. This package only installs the Windows version.<br>2. Will attempt to stop running QGIS processes and uninstall QGIS if present.<br>3. A reboot may be required to complete the install.<br>4. Error code 1603 may indicate there is not enough free space to complete installation.<br>5. As of version 3.20, QGIS no longer supports 32-bit. <br>QGIS 3.16 LTR will still be available for 32-bit systems:<br>https://qgis.org/en/site/forusers/download.html<br><br>Dependencies:<br>Requires PowerShell 3 or later.<br><br>This application is distributed as free software, however, if you find the software useful you may consider supporting the developer:<br>https://qgis.org/en/site/getinvolved/donations.html<br>https://www.qgis.org/"
},
{
"name": "Evernote",
"versionnumber": "10.94.3",
"versionname": "",
"modified": "2024-06-27 11:47:27",
"description": "Publisher: Evernote<br>Download: https://evernote.com/download<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. Old versions of Evernote will be uninstalled in order to provide a smoother upgrade process<br>2. Beginning in Version 10, Evernote changed from a traditional installation model to a per-user installation. This will uninstall traditional and machine-wide Evernote installations, but will not uninstall previous per-user installations located in \"C:\\Users\\%USERNAME%\\AppData\\Local\\Programs\\Evernote\\\"<br>3. After installation, some user shortcuts may need to be updated to the machine-wide executable found in: %ProgramFiles%\\Evernote"
},
{
"name": "Evernote",
"versionnumber": "10.94.2",
"versionname": "",
"modified": "2024-06-26 08:37:17",
"description": "Publisher: Evernote<br>Download: https://evernote.com/download<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. Old versions of Evernote will be uninstalled in order to provide a smoother upgrade process<br>2. Beginning in Version 10, Evernote changed from a traditional installation model to a per-user installation. This will uninstall traditional and machine-wide Evernote installations, but will not uninstall previous per-user installations located in \"C:\\Users\\%USERNAME%\\AppData\\Local\\Programs\\Evernote\\\"<br>3. After installation, some user shortcuts may need to be updated to the machine-wide executable found in: %ProgramFiles%\\Evernote"
},
{
"name": "Dropbox",
"versionnumber": "202.4.5551",
"versionname": "",
"modified": "2024-06-25 16:15:06",
"description": "Publisher: Dropbox, Inc.<br>Download: https://www.dropbox.com/install<br>Supported Operating Systems: Windows Vista, 7, 8, 8.1, 10, 11 Server 2008 R2, 2012, 2012 R2, 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Deletes the auto update tasks in Task Scheduler.<br>Dropbox will launch if a user is logged in."
},
{
"name": "BitWarden",
"versionnumber": "2024.6.3",
"versionname": "",
"modified": "2024-06-25 16:11:50",
"description": "Publisher: Bitwarden, Inc.<br>Download: https://bitwarden.com/download/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Opera",
"versionnumber": "111.0.5168.43",
"versionname": "",
"modified": "2024-06-25 08:52:14",
"description": "Publisher: Opera<br>Download: https://www.opera.com/computer<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Auto Update is disabled."
},
{
"name": "Power Automate Desktop",
"versionnumber": "2.45.385.24170",
"versionname": "",
"modified": "2024-06-25 08:45:54",
"description": "Publisher: Microsoft<br>Download: https://learn.microsoft.com/en-us/power-automate/desktop-flows/install<br>Supported Operating Systems: Windows 10,11, Server 2016, 2019, 2022<br>Supported Architecture: 64"
},
{
"name": "TeamViewer 15",
"versionnumber": "15.55.3",
"versionname": "",
"modified": "2024-06-25 08:44:46",
"description": "Publisher: Teamviewer, Inc.<br>Download: https://www.teamviewer.com/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "OpenShot",
"versionnumber": "3.2.0",
"versionname": "",
"modified": "2024-06-25 08:43:33",
"description": "Publisher: OpenShot Studios, LLC.<br>Download: https://www.openshot.org/download/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Mozilla Firefox (Spanish)",
"versionnumber": "127.0.2",
"versionname": "",
"modified": "2024-06-25 08:42:34",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (German)",
"versionnumber": "127.0.2",
"versionname": "",
"modified": "2024-06-25 08:42:01",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (French)",
"versionnumber": "127.0.2",
"versionname": "",
"modified": "2024-06-25 08:39:10",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/fr/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (Dutch)",
"versionnumber": "127.0.2",
"versionname": "",
"modified": "2024-06-25 08:38:25",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox",
"versionnumber": "127.0.2",
"versionname": "",
"modified": "2024-06-25 08:37:39",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/new/<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Google Chrome Enterprise",
"versionnumber": "126.0.6478.127",
"versionname": "",
"modified": "2024-06-25 08:36:26",
"description": "Publisher: Google<br>Download: https://www.google.com/chrome/<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applies:<br>1. Auto Update is disabled.<br>2. If you recive a deployment error on Step 1 or 2 due to Conditions, you should check this value on the endpoint:<br>Key: HKEY_LOCAL_MACHINE\\Software\\Policies\\Google\\Update\\Install{8A69D345-D564-463C-AFF1-A69D9E530F96}<br>Value = 0<br>This registry value is commonly found in organizations using Chrome GPOs.<br>Forcing this installation will result in uninstallation of the old Chrome package and <br>installation of the new Chrome package will fail with a resulting error 1603.<br>https://admx.help/?Category=GoogleUpdate&Policy=Google.Policies.Update::Pol_AllowInstallationGoogleChrome<br><br>If you want to enable auto-updates, you can still download Chrome as an auto-download package:<br>1. Add a Command step as a post-step<br>2. Copy and paste this line:<br>%SystemRoot%\\System32\\Reg.exe DELETE \"HKLM\\SOFTWARE\\Policies\\Google\\Update\" /v \"Update{8A69D345-D564-463C-AFF1-A69D9E530F96}\" /f<br>3. Save the package."
},
{
"name": "SysInternalsSuite",
"versionnumber": "2024.6.20",
"versionname": "",
"modified": "2024-06-24 07:53:40",
"description": "Publisher: Microsoft<br>Download: https://learn.microsoft.com/en-us/sysinternals/downloads/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>The SysInternalsSuite package will be extracted to:<br>C:\\PDQ\\SysInternalsSuite"
},
{
"name": "Mozilla Thunderbird",
"versionnumber": "115.12.2",
"versionname": "",
"modified": "2024-06-24 07:52:54",
"description": "Publisher: Mozilla<br>Download: https://www.thunderbird.net/en-US/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Microsoft Teams (Classic)",
"versionnumber": "1.7.00.15969",
"versionname": "",
"modified": "2024-06-24 07:51:56",
"description": "Publisher: Microsoft<br>Download: https://docs.microsoft.com/en-us/microsoftteams/msi-deployment<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Additional Notes:<br>1. Installs Microsoft Teams (Classic) (Machine-Wide MSI installer)<br>2. This package is for NEW installations and will NOT install if Microsoft Teams has already been installed. If you wish to use this package on a system with a previous installation, you must first run the Uninstall Microsoft Teams package from the Package Library, then run this package again.<br>3. This package is designed to auto update. Microsoft recommends using Group Policy to manage auto-updates."
},
{
"name": "Microsoft Teams",
"versionnumber": "24137.2216.2931.2440",
"versionname": "",
"modified": "2024-06-24 07:51:02",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/microsoft-teams/download-app<br>Supported Operating Systems: Win 10,11<br>Supported Architecture: 32/64<br><br>Special Notes:<br>Microsoft Teams is installed in a Microsoft Store App format and does not<br>appear as a traditional installed application in Control Panel / Programs.<br>We recommend using the following guide to help inventory the new Teams App:<br>https://www.pdq.com/blog/how-to-deploy-the-new-microsoft-teams/<br><br>This will attempt to gracefully uninstall Microsoft Machine-Wide Teams (Classic) and/or the latest<br>Microsoft Teams from the target machine before installing the latest version of Teams.<br>We recommend testing before running in your production environment."
},
{
"name": "HandBrake",
"versionnumber": "1.8.1",
"versionname": "",
"modified": "2024-06-24 07:49:39",
"description": "Publisher: Handbrake Team<br>Download: https://handbrake.fr/downloads.php<br>Supported Operating Systems: Windows 10 and later, Server 2016 and later<br>Supported Architecture: 64<br><br>Dependencies:<br>Requires the .NET Desktop Runtime 6.0.1 to be installed on the target computer in order to open the program after a successful installation. If .NET Desktop Runtime 6.0.1 is missing, the program will prompt the user to install the latest version."
},
{
"name": "Microsoft Edge for Business",
"versionnumber": "126.0.2592.68",
"versionname": "",
"modified": "2024-06-24 07:48:36",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/edge/business<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Draw.io",
"versionnumber": "24.6.1",
"versionname": "",
"modified": "2024-06-24 07:45:41",
"description": "Publisher: JGraph Ltd<br>Download: https://github.com/jgraph/drawio-desktop/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Microsoft WebView2",
"versionnumber": "126.0.2592.68",
"versionname": "",
"modified": "2024-06-20 14:58:40",
"description": "Publisher: Microsoft<br>Download: https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit<br><br>Notes:<br>1. This is the WebView2 Evergreen Version and is designed to auto-update.<br>2. Error code -2147219187 means an existing or newer version of Webview2 is already installed. This has been added as a success code."
},
{
"name": "Google Drive",
"versionnumber": "92.0.1.0",
"versionname": "",
"modified": "2024-06-20 12:33:09",
"description": "Publisher: Google<br>Supported Operating Systems: Windows 10,11 Server 2016, 2019, 2022 <br>Supported Architecture: 64<br><br>Custom Settings Applied:<br>1) Disables Auto-Update<br>2) Google Drive FS is launched for the logged in user when the installation completes"
},
{
"name": "Visual Studio Code",
"versionnumber": "1.90.2",
"versionname": "",
"modified": "2024-06-20 08:43:36",
"description": "Publisher: Microsoft<br>Download: https://code.visualstudio.com/download<br>Supported Operating Systems: Win 10, 11 Server 2016, 2019, 2022<br>Supported Architecture: 64"
},
{
"name": "PowerShell 7",
"versionnumber": "7.4.3",
"versionname": "",
"modified": "2024-06-20 08:41:12",
"description": "Publisher: Microsoft<br>Download: https://github.com/PowerShell/PowerShell<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Dependencies:<br>1. Operating systems prior to Windows 10 require Universal C Runtime to be installed:<br>https://www.microsoft.com/download/details.aspx?id=50410<br>2. Windows 7 and Server 2008 R2 require WMF 4.0 or later be installed.<br><br>Special Notes:<br>1. This package only installs the Windows version of PowerShell Core.<br>2. For 64-bit computers, 32-bit and 64-bit PowerShell will be installed.<br>3. After an update any running instances of PowerShell Core must be re-opened to access the new version."
},
{
"name": "PDQ Inventory",
"versionnumber": "19.3.570.0",
"versionname": "",
"modified": "2024-06-20 08:39:07",
"description": "Publisher: PDQ<br>Download: https://www.pdq.com/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>This will silently install/update PDQ Inventory and may require a reboot<br>to complete the installation."
},
{
"name": "PDQ Deploy",
"versionnumber": "19.3.570.0",
"versionname": "",
"modified": "2024-06-20 08:37:09",
"description": "Publisher: PDQ<br>Download: https://www.pdq.com/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>This will silently install/update PDQ Deploy and may require a reboot<br>to complete the installation."
},
{
"name": "Mozilla Thunderbird",
"versionnumber": "115.12.1",
"versionname": "",
"modified": "2024-06-20 08:34:15",
"description": "Publisher: Mozilla<br>Download: https://www.thunderbird.net/en-US/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Mozilla Firefox (Spanish)",
"versionnumber": "127.0.1",
"versionname": "",
"modified": "2024-06-20 08:31:09",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (German)",
"versionnumber": "127.0.1",
"versionname": "",
"modified": "2024-06-20 08:30:27",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (French)",
"versionnumber": "127.0.1",
"versionname": "",
"modified": "2024-06-20 08:29:40",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/fr/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (Dutch)",
"versionnumber": "127.0.1",
"versionname": "",
"modified": "2024-06-20 08:27:58",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox",
"versionnumber": "127.0.1",
"versionname": "",
"modified": "2024-06-20 08:26:06",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/new/<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Evernote",
"versionnumber": "10.93.2",
"versionname": "",
"modified": "2024-06-20 08:23:08",
"description": "Publisher: Evernote<br>Download: https://evernote.com/download<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. Old versions of Evernote will be uninstalled in order to provide a smoother upgrade process<br>2. Beginning in Version 10, Evernote changed from a traditional installation model to a per-user installation. This will uninstall traditional and machine-wide Evernote installations, but will not uninstall previous per-user installations located in \"C:\\Users\\%USERNAME%\\AppData\\Local\\Programs\\Evernote\\\"<br>3. After installation, some user shortcuts may need to be updated to the machine-wide executable found in: %ProgramFiles%\\Evernote"
},
{
"name": "BitWarden",
"versionnumber": "2024.6.2",
"versionname": "",
"modified": "2024-06-20 08:18:38",
"description": "Publisher: Bitwarden, Inc.<br>Download: https://bitwarden.com/download/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "7-Zip",
"versionnumber": "24.07",
"versionname": "",
"modified": "2024-06-20 08:16:07",
"description": "Publisher: 7-Zip <br>Download: https://www.7-zip.org/download.html<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Special Notes:<br>Installs 32-bit version on 32-bit machines.<br>Installs 64-bit version on 64-bit machines.<br>Uninstalls old versions in the update process."
},
{
"name": "Remote Desktop (Azure)",
"versionnumber": "1.2.5454.0",
"versionname": "",
"modified": "2024-06-18 14:33:46",
"description": "Publisher: Microsoft<br>Download: https://learn.microsoft.com/en-us/azure/virtual-desktop/users/connect-windows<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>The Microsoft Remote Desktop client is used to connect to Azure Virtual Desktop to access your desktops and applications.<br>1. The first time you subscribe to a workspace, from the Let's get started screen, select Subscribe or Subscribe with URL.<br>2. If you selected Subscribe, sign in with your user account when prompted, for example user@contoso.com. After a few seconds, your workspaces should show the desktops and applications that have been made available to you by your admin.<br>3. If you see the message No workspace is associated with this email address, your admin might not have set up email discovery, or you are using an Azure environment that is not Azure cloud. Try the steps to Subscribe with URL instead.<br>4. If you selected Subscribe with URL, in the Email or Workspace URL box, enter the relevant URL from the following table. After a few seconds, the message We found Workspaces at the following URLs should be displayed:<br>Azure cloud (most common): https://rdweb.wvd.microsoft.com<br>Azure for US Government: https://rdweb.wvd.azure.us/api/arm/feeddiscovery<br>Azure operated by 21Vianet: https://rdweb.wvd.azure.cn/api/arm/feeddiscovery<br>5. Sign in with your user account when prompted. After a few seconds, the workspace should show the desktops and applications that have been made available to you by your admin."
},
{
"name": "Google Chrome Enterprise",
"versionnumber": "126.0.6478.115",
"versionname": "",
"modified": "2024-06-18 14:30:55",
"description": "Publisher: Google<br>Download: https://www.google.com/chrome/<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applies:<br>1. Auto Update is disabled.<br>2. If you recive a deployment error on Step 1 or 2 due to Conditions, you should check this value on the endpoint:<br>Key: HKEY_LOCAL_MACHINE\\Software\\Policies\\Google\\Update\\Install{8A69D345-D564-463C-AFF1-A69D9E530F96}<br>Value = 0<br>This registry value is commonly found in organizations using Chrome GPOs.<br>Forcing this installation will result in uninstallation of the old Chrome package and <br>installation of the new Chrome package will fail with a resulting error 1603.<br>https://admx.help/?Category=GoogleUpdate&Policy=Google.Policies.Update::Pol_AllowInstallationGoogleChrome<br><br>If you want to enable auto-updates, you can still download Chrome as an auto-download package:<br>1. Add a Command step as a post-step<br>2. Copy and paste this line:<br>%SystemRoot%\\System32\\Reg.exe DELETE \"HKLM\\SOFTWARE\\Policies\\Google\\Update\" /v \"Update{8A69D345-D564-463C-AFF1-A69D9E530F96}\" /f<br>3. Save the package."
},
{
"name": "Slack",
"versionnumber": "4.39.88",
"versionname": "",
"modified": "2024-06-18 08:59:21",
"description": "Publisher: Slack Technologies, LLC<br>Download: https://slack.com/downloads/windows<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Special Notes:<br>This package installs the per-machine version of Slack, which installs to Program Files instead of a user's %LOCALAPPDATA%."
},
{
"name": "Webex",
"versionnumber": "44.6.0.29928",
"versionname": "",
"modified": "2024-06-18 08:49:29",
"description": "Publisher: Cisco<br>Download: https://www.webex.com/downloads.html<br>Supported Operating Systems: Win 10, 11, Server 2016+<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>EULA is auto-accepted<br><br>Many customers have asked if we could disable the AUTOSTART feature.<br>You can do this by adding a Command step in the Post-Step section of the package.<br>Copy and paste this command:<br>REG DELETE HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Run /v CiscoSpark /f<br>Save and deploy"
},
{
"name": "SysInternalsSuite",
"versionnumber": "2024.6.17",
"versionname": "",
"modified": "2024-06-18 08:48:03",
"description": "Publisher: Microsoft<br>Download: https://learn.microsoft.com/en-us/sysinternals/downloads/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>The SysInternalsSuite package will be extracted to:<br>C:\\PDQ\\SysInternalsSuite"
},
{
"name": "Skype",
"versionnumber": "8.122.0.205",
"versionname": "",
"modified": "2024-06-18 08:46:56",
"description": "Publisher: Microsoft<br>Download: https://www.skype.com/en/get-skype/download-skype-for-desktop/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64 bit<br><br>Custom Settings Applied:<br>Step 1 will remove all instances of Skype 7 and older."
},
{
"name": "Power BI Desktop",
"versionnumber": "2.130.930.0",
"versionname": "",
"modified": "2024-06-18 08:45:43",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/download/details.aspx?id=58494<br>Supported Operating Systems: Windows 10,11, Server 2016, 2019, 2022<br>Supported Architecture: 64<br><br>Requires .NET 4.8 or later to be installed"
},
{
"name": "PDF-XChange Editor",
"versionnumber": "10.3.1.387",
"versionname": "",
"modified": "2024-06-18 08:43:59",
"description": "Publisher: Tracker Software<br>Download: https://www.tracker-software.com/product/downloads<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Special Notes:<br>Package will uninstall PDF-XChange Viewer as that product has been discontinued.<br>This package installs the free version. To enable all features please purchase licenses from https://www.tracker-software.com/product/pdf-xchange-editor<br>Please note that this version doesn't appear to work with Vista/2008 64-bit."
},
{
"name": "Microsoft WebView2",
"versionnumber": "126.0.2592.61",
"versionname": "",
"modified": "2024-06-18 08:42:44",
"description": "Publisher: Microsoft<br>Download: https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit<br><br>Notes:<br>1. This is the WebView2 Evergreen Version and is designed to auto-update.<br>2. Error code -2147219187 means an existing or newer version of Webview2 is already installed. This has been added as a success code."
},
{
"name": "Evernote",
"versionnumber": "10.93.1",
"versionname": "",
"modified": "2024-06-18 08:39:30",
"description": "Publisher: Evernote<br>Download: https://evernote.com/download<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. Old versions of Evernote will be uninstalled in order to provide a smoother upgrade process<br>2. Beginning in Version 10, Evernote changed from a traditional installation model to a per-user installation. This will uninstall traditional and machine-wide Evernote installations, but will not uninstall previous per-user installations located in \"C:\\Users\\%USERNAME%\\AppData\\Local\\Programs\\Evernote\\\"<br>3. After installation, some user shortcuts may need to be updated to the machine-wide executable found in: %ProgramFiles%\\Evernote"
},
{
"name": "Microsoft Edge for Business",
"versionnumber": "126.0.2592.61",
"versionname": "",
"modified": "2024-06-18 08:36:11",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/edge/business<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Zoom Client",
"versionnumber": "6.1.0.41135",
"versionname": "",
"modified": "2024-06-17 08:31:42",
"description": "Publisher: Zoom Video Communications, Inc.<br>Download: https://zoom.us/download<br>Supported Operating Systems: Windows 7,8,9,10,11<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. This package will wait until any in-progress meetings end before installing.<br>2. Zoom has changed their default install package from 32Bit to 64Bit. The package has been updated to reflect this change."
},
{
"name": "WinSCP",
"versionnumber": "6.3.4",
"versionname": "",
"modified": "2024-06-17 08:30:55",
"description": "Publisher: Martin Prikryl<br>Download: https://winscp.net/eng/download.php<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br>Custom Settings Applied:<br>WinSCP auto-updates and usage collection will be disabled for new user profiles. Existing user profiles will maintain existing settings."
},
{
"name": "BitWarden",
"versionnumber": "2024.6.1",
"versionname": "",
"modified": "2024-06-17 08:29:30",
"description": "Publisher: Bitwarden, Inc.<br>Download: https://bitwarden.com/download/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Adobe Reader DC Patch (32-bit)",
"versionnumber": "24.002.20857",
"versionname": "",
"modified": "2024-06-17 08:27:57",
"description": "Publisher: Adobe<br>Download: https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, Server 2008R2, 2012, 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. This only installs the 32-bit version of Adobe Reader DC. At this time we only provide a 32-bit installation for Adobe Reader DC due to complications with the unified 64-bit installer for Adobe Acrobat/Adobe Reader. Both installations for Adobe Acrobat DC 64-bit and Adobe Reader DC 64-bit are indistinguishable and this leads to a problem with identifying the applications with current collections as well as the potential for overwriting an older licensed version of Adobe Acrobat with the latest unlicensed (free) version Adobe Reader 64-bit.<br>https://www.adobe.com/devnet-docs/acrobatetk/tools/DesktopDeployment/singleinstaller.html<br>2. Target computers MUST have older version of Adobe Acrobat Reader DC MUI (Continuous Track)<br>3. If you recieve an error that the update does not apply, you may have the older Adobe Reader (Classic) version installed. If this is the case,<br>you'll want to run the full package Adober Reader DC (32-bit) to update to the latest Continuous (MUI) version. This patch will then work going forward.<br>4. Disables Auto Update, Adobe Upselling and Adobe Services.<br>5. Versions 15.023.20053 and higher come with the Adobe Acrobat extension for Chrome that are disabled in steps 8 and 9."
},
{
"name": "Adobe Reader DC (32-bit)",
"versionnumber": "24.002.20857",
"versionname": "",
"modified": "2024-06-17 08:27:33",
"description": "Publisher: Adobe<br>Download: https://get.adobe.com/reader/enterprise/<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, Server 2008R2, 2012, 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. This only installs the 32-bit version of Adobe Reader DC. At this time we only provide a 32-bit installation for Adobe Reader DC due to complications with the unified 64-bit installer for Adobe Acrobat/Adobe Reader. Both installations for Adobe Acrobat DC 64-bit and Adobe Reader DC 64-bit are indistinguishable and this leads to a problem with identifying the applications with current collections as well as the potential for overwriting an older licensed version of Adobe Acrobat with the latest unlicensed (free) version Adobe Reader 64-bit.<br>https://www.adobe.com/devnet-docs/acrobatetk/tools/DesktopDeployment/singleinstaller.html<br>2. This is for New Installs ONLY. Use the Adobe Reader DC Patch to update existing installations<br>3. Uninstalls existing installations of Adobe Reader (Classic and Continuous).<br>4. Disables Auto Update, Adobe Upselling and Adobe Services.<br>5. Versions 15.023.20053 and higher come with the Adobe Acrobat extension for Chrome that are disabled in steps 8 and 9."
},
{
"name": "Adobe AIR",
"versionnumber": "51.0.1.3",
"versionname": "",
"modified": "2024-06-17 08:25:59",
"description": "Publisher: HARMAN International<br>Download: https://airsdk.harman.com/download<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Disables Auto-Update."
},
{
"name": "Adobe Reader DC Patch (32-bit)",
"versionnumber": "24.002.20854",
"versionname": "",
"modified": "2024-06-14 14:52:17",
"description": "Publisher: Adobe<br>Download: https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, Server 2008R2, 2012, 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. This only installs the 32-bit version of Adobe Reader DC. At this time we only provide a 32-bit installation for Adobe Reader DC due to complications with the unified 64-bit installer for Adobe Acrobat/Adobe Reader. Both installations for Adobe Acrobat DC 64-bit and Adobe Reader DC 64-bit are indistinguishable and this leads to a problem with identifying the applications with current collections as well as the potential for overwriting an older licensed version of Adobe Acrobat with the latest unlicensed (free) version Adobe Reader 64-bit.<br>https://www.adobe.com/devnet-docs/acrobatetk/tools/DesktopDeployment/singleinstaller.html<br>2. Target computers MUST have older version of Adobe Acrobat Reader DC MUI (Continuous Track)<br>3. If you recieve an error that the update does not apply, you may have the older Adobe Reader (Classic) version installed. If this is the case,<br>you'll want to run the full package Adober Reader DC (32-bit) to update to the latest Continuous (MUI) version. This patch will then work going forward.<br>4. Disables Auto Update, Adobe Upselling and Adobe Services.<br>5. Versions 15.023.20053 and higher come with the Adobe Acrobat extension for Chrome that are disabled in steps 8 and 9."
},
{
"name": "Adobe Reader DC (32-bit)",
"versionnumber": "24.002.20854",
"versionname": "",
"modified": "2024-06-14 14:52:05",
"description": "Publisher: Adobe<br>Download: https://get.adobe.com/reader/enterprise/<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, Server 2008R2, 2012, 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. This only installs the 32-bit version of Adobe Reader DC. At this time we only provide a 32-bit installation for Adobe Reader DC due to complications with the unified 64-bit installer for Adobe Acrobat/Adobe Reader. Both installations for Adobe Acrobat DC 64-bit and Adobe Reader DC 64-bit are indistinguishable and this leads to a problem with identifying the applications with current collections as well as the potential for overwriting an older licensed version of Adobe Acrobat with the latest unlicensed (free) version Adobe Reader 64-bit.<br>https://www.adobe.com/devnet-docs/acrobatetk/tools/DesktopDeployment/singleinstaller.html<br>2. This is for New Installs ONLY. Use the Adobe Reader DC Patch to update existing installations<br>3. Uninstalls existing installations of Adobe Reader (Classic and Continuous).<br>4. Disables Auto Update, Adobe Upselling and Adobe Services.<br>5. Versions 15.023.20053 and higher come with the Adobe Acrobat extension for Chrome that are disabled in steps 8 and 9."
},
{
"name": "Microsoft WebView2",
"versionnumber": "126.0.2592.56",
"versionname": "",
"modified": "2024-06-13 15:26:53",
"description": "Publisher: Microsoft<br>Download: https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit<br><br>Notes:<br>1. This is the WebView2 Evergreen Version and is designed to auto-update.<br>2. Error code -2147219187 means an existing or newer version of Webview2 is already installed. This has been added as a success code."
},
{
"name": "Visual Studio Code",
"versionnumber": "1.90.1",
"versionname": "",
"modified": "2024-06-13 15:24:43",
"description": "Publisher: Microsoft<br>Download: https://code.visualstudio.com/download<br>Supported Operating Systems: Win 10, 11 Server 2016, 2019, 2022<br>Supported Architecture: 64"
},
{
"name": "Microsoft Edge for Business",
"versionnumber": "126.0.2592.56",
"versionname": "",
"modified": "2024-06-13 15:17:02",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/edge/business<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Google Chrome Enterprise",
"versionnumber": "126.0.6478.62",
"versionname": "",
"modified": "2024-06-13 15:15:19",
"description": "Publisher: Google<br>Download: https://www.google.com/chrome/<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applies:<br>1. Auto Update is disabled.<br>2. If you recive a deployment error on Step 1 or 2 due to Conditions, you should check this value on the endpoint:<br>Key: HKEY_LOCAL_MACHINE\\Software\\Policies\\Google\\Update\\Install{8A69D345-D564-463C-AFF1-A69D9E530F96}<br>Value = 0<br>This registry value is commonly found in organizations using Chrome GPOs.<br>Forcing this installation will result in uninstallation of the old Chrome package and <br>installation of the new Chrome package will fail with a resulting error 1603.<br>https://admx.help/?Category=GoogleUpdate&Policy=Google.Policies.Update::Pol_AllowInstallationGoogleChrome<br><br>If you want to enable auto-updates, you can still download Chrome as an auto-download package:<br>1. Add a Command step as a post-step<br>2. Copy and paste this line:<br>%SystemRoot%\\System32\\Reg.exe DELETE \"HKLM\\SOFTWARE\\Policies\\Google\\Update\" /v \"Update{8A69D345-D564-463C-AFF1-A69D9E530F96}\" /f<br>3. Save the package."
},
{
"name": "Evernote",
"versionnumber": "10.92.3",
"versionname": "",
"modified": "2024-06-13 08:19:22",
"description": "Publisher: Evernote<br>Download: https://evernote.com/download<br>Supported Operating Systems: Windows 7, 8, 8.1, 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. Old versions of Evernote will be uninstalled in order to provide a smoother upgrade process<br>2. Beginning in Version 10, Evernote changed from a traditional installation model to a per-user installation. This will uninstall traditional and machine-wide Evernote installations, but will not uninstall previous per-user installations located in \"C:\\Users\\%USERNAME%\\AppData\\Local\\Programs\\Evernote\\\"<br>3. After installation, some user shortcuts may need to be updated to the machine-wide executable found in: %ProgramFiles%\\Evernote"
},
{
"name": "Dropbox",
"versionnumber": "201.4.5552",
"versionname": "",
"modified": "2024-06-12 12:46:48",
"description": "Publisher: Dropbox, Inc.<br>Download: https://www.dropbox.com/install<br>Supported Operating Systems: Windows Vista, 7, 8, 8.1, 10, 11 Server 2008 R2, 2012, 2012 R2, 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Deletes the auto update tasks in Task Scheduler.<br>Dropbox will launch if a user is logged in."
},
{
"name": "Opera",
"versionnumber": "111.0.5168.25",
"versionname": "",
"modified": "2024-06-12 12:12:10",
"description": "Publisher: Opera<br>Download: https://www.opera.com/computer<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Auto Update is disabled."
},
{
"name": "Remote Desktop (Azure)",
"versionnumber": "1.2.5405.0",
"versionname": "",
"modified": "2024-06-12 09:34:41",
"description": "Publisher: Microsoft<br>Download: https://learn.microsoft.com/en-us/azure/virtual-desktop/users/connect-windows<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>The Microsoft Remote Desktop client is used to connect to Azure Virtual Desktop to access your desktops and applications.<br>1. The first time you subscribe to a workspace, from the Let's get started screen, select Subscribe or Subscribe with URL.<br>2. If you selected Subscribe, sign in with your user account when prompted, for example user@contoso.com. After a few seconds, your workspaces should show the desktops and applications that have been made available to you by your admin.<br>3. If you see the message No workspace is associated with this email address, your admin might not have set up email discovery, or you are using an Azure environment that is not Azure cloud. Try the steps to Subscribe with URL instead.<br>4. If you selected Subscribe with URL, in the Email or Workspace URL box, enter the relevant URL from the following table. After a few seconds, the message We found Workspaces at the following URLs should be displayed:<br>Azure cloud (most common): https://rdweb.wvd.microsoft.com<br>Azure for US Government: https://rdweb.wvd.azure.us/api/arm/feeddiscovery<br>Azure operated by 21Vianet: https://rdweb.wvd.azure.cn/api/arm/feeddiscovery<br>5. Sign in with your user account when prompted. After a few seconds, the workspace should show the desktops and applications that have been made available to you by your admin."
},
{
"name": "Uninstall 1Password",
"versionnumber": "1.0.0",
"versionname": "",
"modified": "2024-06-12 09:30:08",
"description": "Publisher: PDQ.com<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>This will attempt to gracefully uninstall 1Password from the target machine.<br>Please test before running in your production environment"
},
{
"name": "BitWarden",
"versionnumber": "2024.6.0",
"versionname": "",
"modified": "2024-06-12 08:30:55",
"description": "Publisher: Bitwarden, Inc.<br>Download: https://bitwarden.com/download/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "1Password",
"versionnumber": "8.10.34",
"versionname": "",
"modified": "2024-06-12 08:30:03",
"description": "Publisher: Agilebits Inc.<br>Download: https://support.1password.com/deploy-1password/<br>Supported Operating Systems: All<br>Supported Architecture: 64<br><br>Special Notes:<br>May require a reboot to complete the installation."
},
{
"name": "Node.js",
"versionnumber": "22.3.0",
"versionname": "",
"modified": "2024-06-11 15:36:15",
"description": "Publisher: OpenJS Foundation<br>Download: https://nodejs.org/dist/latest/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Power BI Desktop",
"versionnumber": "2.130.754.0",
"versionname": "",
"modified": "2024-06-11 15:34:34",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/download/details.aspx?id=58494<br>Supported Operating Systems: Windows 10,11, Server 2016, 2019, 2022<br>Supported Architecture: 64<br><br>Requires .NET 4.8 or later to be installed"
},
{
"name": "Google Chrome Enterprise",
"versionnumber": "126.0.6478.57",
"versionname": "",
"modified": "2024-06-11 15:29:41",
"description": "Publisher: Google<br>Download: https://www.google.com/chrome/<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applies:<br>1. Auto Update is disabled.<br>2. If you recive a deployment error on Step 1 or 2 due to Conditions, you should check this value on the endpoint:<br>Key: HKEY_LOCAL_MACHINE\\Software\\Policies\\Google\\Update\\Install{8A69D345-D564-463C-AFF1-A69D9E530F96}<br>Value = 0<br>This registry value is commonly found in organizations using Chrome GPOs.<br>Forcing this installation will result in uninstallation of the old Chrome package and <br>installation of the new Chrome package will fail with a resulting error 1603.<br>https://admx.help/?Category=GoogleUpdate&Policy=Google.Policies.Update::Pol_AllowInstallationGoogleChrome<br><br>If you want to enable auto-updates, you can still download Chrome as an auto-download package:<br>1. Add a Command step as a post-step<br>2. Copy and paste this line:<br>%SystemRoot%\\System32\\Reg.exe DELETE \"HKLM\\SOFTWARE\\Policies\\Google\\Update\" /v \"Update{8A69D345-D564-463C-AFF1-A69D9E530F96}\" /f<br>3. Save the package."
},
{
"name": "Windows 8.1 and Windows Server 2012 R2 - Monthly Rollup",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:27:16",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039294<br>Supported Operating Systems: Win 8.1, Server 2012 R2<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Installs the Monthly Quality Rollup update on Windows 8.1 and Server 2012 R2.<br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039294"
},
{
"name": "Windows 7 and Windows Server 2008 R2 - Security-Only Update",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:25:00",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039274<br>Supported Operating Systems: Win 7, Server 2008 R2<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Windows 7 and Server 2008 R2 have reached end of life, so this update only applies if you have purchased the Extended Security Update (https://support.microsoft.com/help/4497181) <br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039274"
},
{
"name": "Windows 7 and Windows Server 2008 R2 - Monthly Rollup",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:22:22",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039289<br>Supported Operating Systems: Win 7, Server 2008 R2<br>Supported Architecture: 32/64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Windows 7 and Server 2008 R2 have reached end of life, so this update only applies if you have purchased the Extended Security Update (https://support.microsoft.com/help/4497181) <br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039289"
},
{
"name": "Windows Server 2022 - Cumulative Update (64-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:19:13",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039227<br>Supported Operating Systems: Server 2022<br>Supported Architecture: 64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Installs the Monthly Cumulative update on Server 2022.<br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039227"
},
{
"name": "Windows 11 (22H2/23H2) - Cumulative Update (64-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:16:52",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039212<br>Supported Operating Systems: Win 11 22H2/23H2<br>Supported Architecture: 64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Installs the Cumulative Update ONLY on Windows 11 (22H2/22H3) (64-bit).<br>3. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039212"
},
{
"name": "Windows 11 (21H2) - Cumulative Update (64-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:14:07",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039213<br>Supported Operating Systems: Win 11 21H2<br>Supported Architecture: 64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Installs the Cumulative Update on ONLY Windows 11 21H2 (64-bit).<br>3. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039213"
},
{
"name": "Windows Server 2012 - Monthly Rollup",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:06:17",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039260<br>Supported Operating Systems: Server 2012<br>Supported Architecture: 64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Installs the Monthly Quality Rollup update on Server 2012.<br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039260"
},
{
"name": "Windows 10 (21H2/22H2) - Cumulative Update (64-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:03:43",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039211<br>Supported Operating Systems: Win 10 21H2, 22H2<br>Supported Architecture: 64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Installs the Cumulative Update on ONLY Windows 10 21H2/22H2 (64-bit).<br>3. In addition to installing the latest cumulative update, this package will install the latest prerequisite servicing stack update prior to cumulative update. Without this update, the cumulative update may not install.<br>https://support.microsoft.com/kb/5039211"
},
{
"name": "Windows 10 (21H2/22H2) - Cumulative Update (32-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 15:02:23",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039211<br>Supported Operating Systems: Win 10 21H2, 22H2<br>Supported Architecture: 32<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Installs the Cumulative Update on ONLY Windows 10 21H2/22H2 (32-bit).<br>3. In addition to installing the latest cumulative update, this package will install the latest prerequisite servicing stack update prior to cumulative update. Without this update, the cumulative update may not install.<br>https://support.microsoft.com/kb/5039211"
},
{
"name": "Windows 10 (1809) and Windows Server 2019 - Cumulative Update (64-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 14:59:21",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039217<br>Supported Operating Systems: Windows 10 (1809), Server 2019<br>Supported Architecture: 64<br><br>Special Notes:<br>1. A reboot may be required to complete installation.<br>2. Installs the Cumulative Update on ONLY Windows 10 1809 (64-bit).<br>3. This update can only be applied to Windows 10 Enterprise and Windows 10 Education editions. This update isn't applicable to Windows 10 Pro or Windows 10 Home editions and won't install.<br>4. In addition to installing the latest cumulative update, this package will install the latest prerequisite servicing stack update for Windows 10 1809 and Server 2019. Without this update, the cumulative update may not install.<br>https://support.microsoft.com/kb/5039217"
},
{
"name": "Windows 10 (1809) - Cumulative Update (32-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 14:58:36",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039217<br>Supported Operating Systems: Windows 10 (1809)<br>Supported Architecture: 32<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Installs the Cumulative Update on ONLY Windows 10 1809 (32-bit).<br>3. This update can only be applied to Windows 10 Enterprise and Windows 10 Education editions. This update isn't applicable to Windows 10 Pro or Windows 10 Home editions and won't install.<br>4. In addition to installing the latest cumulative update, this package will install the latest prerequisite servicing stack update for Windows 10 1809. Without this update, the cumulative update may not install.<br>https://support.microsoft.com/kb/5039217"
},
{
"name": "Windows 10 (1607) and Windows Server 2016 - Cumulative Update (64-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 14:55:26",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039214<br>Supported Operating Systems: Win 10 (1607), Server 2016<br>Supported Architecture: 64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Can only be applied to LTSB versions of Windows 10 1607. <br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039214"
},
{
"name": "Windows 10 (1607) - Cumulative Update (32-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 14:54:32",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039214<br>Supported Operating Systems: Win 10 (1607)<br>Supported Architecture: 32<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Can only be applied to LTSB versions of Windows 10 1607. <br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039214"
},
{
"name": "Windows 10 (Initial) - Cumulative Update (64-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 14:52:42",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039225<br>Supported Operating Systems: Win 10 (Initial)<br>Supported Architecture: 64<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Can only be applied to LTSB versions of Windows 10 1507. <br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039225"
},
{
"name": "Windows 10 (Initial) - Cumulative Update (32-bit)",
"versionnumber": "20240611",
"versionname": "June 11 2024",
"modified": "2024-06-11 14:52:06",
"description": "Publisher: Microsoft<br>Download: https://www.catalog.update.microsoft.com/Search.aspx?q=KB5039225<br>Supported Operating Systems: Win 10 (Initial)<br>Supported Architecture: 32<br><br>Special Notes:<br>1. A Reboot followed by an Inventory Scan may be required to complete installation and update Inventory collections.<br>2. Can only be applied to LTSB versions of Windows 10 1507. <br>3. The latest Service Stack Update (SSU) will be applied (if needed) prior to cumulative update<br>4. Please see the link below for more details or known issues in this update.<br>https://support.microsoft.com/kb/5039225"
},
{
"name": "Draw.io",
"versionnumber": "24.5.3",
"versionname": "",
"modified": "2024-06-11 14:49:46",
"description": "Publisher: JGraph Ltd<br>Download: https://github.com/jgraph/drawio-desktop/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Mozilla Firefox ESR (Spanish)",
"versionnumber": "115.12.0",
"versionname": "",
"modified": "2024-06-11 08:59:37",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: All<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox ESR (German)",
"versionnumber": "115.12.0",
"versionname": "",
"modified": "2024-06-11 08:57:44",
"description": "Publisher: Mozilla<br>Download: hhttps://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: All<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox ESR (French)",
"versionnumber": "115.12.0",
"versionname": "",
"modified": "2024-06-11 08:56:50",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: All<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox ESR (Dutch)",
"versionnumber": "115.12.0",
"versionname": "",
"modified": "2024-06-11 08:55:43",
"description": "Publisher: Mozilla<br>Download: hhttps://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: All<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox ESR",
"versionnumber": "115.12.0",
"versionname": "",
"modified": "2024-06-11 08:54:48",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/enterprise/#download<br>Supported Operating Systems: All<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (Spanish)",
"versionnumber": "127.0",
"versionname": "",
"modified": "2024-06-11 08:53:50",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (German)",
"versionnumber": "127.0",
"versionname": "",
"modified": "2024-06-11 08:53:33",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (French)",
"versionnumber": "127.0",
"versionname": "",
"modified": "2024-06-11 08:53:10",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/fr/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox (Dutch)",
"versionnumber": "127.0",
"versionname": "",
"modified": "2024-06-11 08:49:25",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/all/#product-desktop-release<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Mozilla Firefox",
"versionnumber": "127.0",
"versionname": "",
"modified": "2024-06-11 08:48:14",
"description": "Publisher: Mozilla<br>Download: https://www.mozilla.org/en-US/firefox/new/<br>Supported Operating Systems: Win 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "TeamViewer 15",
"versionnumber": "15.54.6",
"versionname": "",
"modified": "2024-06-11 08:44:26",
"description": "Publisher: Teamviewer, Inc.<br>Download: https://www.teamviewer.com/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Google Drive",
"versionnumber": "92.0.0.0",
"versionname": "",
"modified": "2024-06-11 08:43:20",
"description": "Publisher: Google<br>Supported Operating Systems: Windows 10,11 Server 2016, 2019, 2022 <br>Supported Architecture: 64<br><br>Custom Settings Applied:<br>1) Disables Auto-Update<br>2) Google Drive FS is launched for the logged in user when the installation completes"
},
{
"name": "Webex Meetings",
"versionnumber": "44.6.1.4",
"versionname": "",
"modified": "2024-06-10 08:47:43",
"description": "Publisher: Cisco<br>Download: https://www.webex.com/downloads.html<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Custom Settings Applies:<br>Removes previous instances of Webex Meetings"
},
{
"name": "VLC Media Player",
"versionnumber": "3.0.21",
"versionname": "",
"modified": "2024-06-10 08:46:33",
"description": "Publisher: VideoLAN<br>Download: https://www.videolan.org/vlc/download-windows.html<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Targets may need to be rebooted following deployment to complete the installation."
},
{
"name": "Microsoft Teams",
"versionnumber": "24124.2315.2911.3357",
"versionname": "",
"modified": "2024-06-10 08:45:33",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/microsoft-teams/download-app<br>Supported Operating Systems: Win 10,11<br>Supported Architecture: 32/64<br><br>Special Notes:<br>Microsoft Teams is installed in a Microsoft Store App format and does not<br>appear as a traditional installed application in Control Panel / Programs.<br>We recommend using the following guide to help inventory the new Teams App:<br>https://www.pdq.com/blog/how-to-deploy-the-new-microsoft-teams/<br><br>This will attempt to gracefully uninstall Microsoft Machine-Wide Teams (Classic) and/or the latest<br>Microsoft Teams from the target machine before installing the latest version of Teams.<br>We recommend testing before running in your production environment."
},
{
"name": "Microsoft WebView2",
"versionnumber": "125.0.2535.92",
"versionname": "",
"modified": "2024-06-10 07:54:56",
"description": "Publisher: Microsoft<br>Download: https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit<br><br>Notes:<br>1. This is the WebView2 Evergreen Version and is designed to auto-update.<br>2. Error code -2147219187 means an existing or newer version of Webview2 is already installed. This has been added as a success code."
},
{
"name": "Draw.io",
"versionnumber": "24.5.1",
"versionname": "",
"modified": "2024-06-10 07:53:52",
"description": "Publisher: JGraph Ltd<br>Download: https://github.com/jgraph/drawio-desktop/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Microsoft Edge for Business",
"versionnumber": "125.0.2535.92",
"versionname": "",
"modified": "2024-06-10 07:52:53",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/edge/business<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64 bit"
},
{
"name": "Greenshot",
"versionnumber": "1.2.10.6.2",
"versionname": "1.2.10.6 (Updated)",
"modified": "2024-06-06 14:41:09",
"description": "Publisher: Greenshot<br>Download: http://getgreenshot.org/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Greenshot",
"versionnumber": "1.2.10.6.1",
"versionname": "1.2.10.6",
"modified": "2024-06-06 14:40:26",
"description": "Awesome light-weight screenshot software tool for Windows.<br>Greenshot.exe will be started as the Logged On User after installation.<br>Step 1 will attempt a graceful shutdown of Greenshot. If the user has unsaved work they will be prompted to save. If they do not acknowledge the message the deployment may timeout.<br>http://getgreenshot.org/"
},
{
"name": "LibreOffice",
"versionnumber": "24.2.4",
"versionname": "",
"modified": "2024-06-06 14:35:37",
"description": "Publisher: The Document Foundation<br>Download: https://www.libreoffice.org/download/download/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Custom settings Applied:<br>Disables Auto Update<br><br>Special Notes:<br>Target computers may need to be restarted for this update to take effect."
},
{
"name": "PDF24 Creator",
"versionnumber": "11.18.0",
"versionname": "",
"modified": "2024-06-06 14:28:23",
"description": "Publisher: PDF24<br>Download: https://www.pdf24.org/<br>Supported Operating Systems: All<br>Support Architecture: 64<br><br>VERSION NOTE:<br>Version 11.5.0 will show up as version 11.4.0 in appwiz.cpl, however version 11.5.0 will be shown when checking in the application.<br><br>Special Notes:<br>Intended only for users in the EU<br>The last available 32-bit version is 9.2.2"
},
{
"name": "Visual Studio Code",
"versionnumber": "1.90.0",
"versionname": "",
"modified": "2024-06-06 14:27:29",
"description": "Publisher: Microsoft<br>Download: https://code.visualstudio.com/download<br>Supported Operating Systems: Win 10, 11 Server 2016, 2019, 2022<br>Supported Architecture: 64"
},
{
"name": "Adobe AIR",
"versionnumber": "51.0.1.2",
"versionname": "",
"modified": "2024-06-05 12:05:40",
"description": "Publisher: HARMAN International<br>Download: https://airsdk.harman.com/download<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Disables Auto-Update."
},
{
"name": "Opera",
"versionnumber": "110.0.5130.66",
"versionname": "",
"modified": "2024-06-04 14:22:26",
"description": "Publisher: Opera<br>Download: https://www.opera.com/computer<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Auto Update is disabled."
},
{
"name": "TeamViewer 15",
"versionnumber": "15.54.5",
"versionname": "",
"modified": "2024-06-04 09:22:38",
"description": "Publisher: Teamviewer, Inc.<br>Download: https://www.teamviewer.com/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Opera",
"versionnumber": "110.0.5130.64",
"versionname": "",
"modified": "2024-06-04 08:58:35",
"description": "Publisher: Opera<br>Download: https://www.opera.com/computer<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applied:<br>Auto Update is disabled."
},
{
"name": "Notepad++",
"versionnumber": "8.6.8",
"versionname": "",
"modified": "2024-06-04 08:57:21",
"description": "Publisher: notepad-plus-plus.org<br>Download: https://notepad-plus-plus.org/downloads/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Special Notes:<br>To prevent update prompts, Step 3 modifies the gup.xml in the update folder to use the loopback address: http://127.0.0.1. If a user attempts to manually update from the menu, they will recieve an error \"Failed to connect to 127.0.0.1 port 80 after 1337 ms: Connection refused\" This is EXPECTED behavior."
},
{
"name": "Power Automate Desktop",
"versionnumber": "2.44.46.24141",
"versionname": "",
"modified": "2024-06-03 09:29:26",
"description": "Publisher: Microsoft<br>Download: https://learn.microsoft.com/en-us/power-automate/desktop-flows/install<br>Supported Operating Systems: Windows 10,11, Server 2016, 2019, 2022<br>Supported Architecture: 64"
},
{
"name": "Power BI Desktop",
"versionnumber": "2.129.1229.0",
"versionname": "",
"modified": "2024-06-03 09:27:15",
"description": "Publisher: Microsoft<br>Download: https://www.microsoft.com/en-us/download/details.aspx?id=58494<br>Supported Operating Systems: Windows 10,11, Server 2016, 2019, 2022<br>Supported Architecture: 64<br><br>Requires .NET 4.8 or later to be installed"
},
{
"name": "KeePass Password Safe",
"versionnumber": "2.57",
"versionname": "",
"modified": "2024-06-03 09:19:59",
"description": "Publisher: KeePass<br>Download: https://keepass.info/download.html<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br>Dependencies: Microsoft .NET Framework 2.0 or higher is required."
},
{
"name": "Git for Windows",
"versionnumber": "2.45.2",
"versionname": "",
"modified": "2024-06-03 09:18:49",
"description": "Publisher: The Git Development Community<br>Download: https://git-scm.com/download/win<br>Supported Operating Systems: All<br>Supported Architecture: 64<br>Special Notes:<br>This package may automatically stop/restart running applications dependent on files modified by the installer. To prevent this behavior, you can remove /CLOSEAPPLICATIONS and /RESTARTAPPLICATION from each argument list, but this may result in the installation failing."
},
{
"name": "GanttProject",
"versionnumber": "3.3.3309",
"versionname": "",
"modified": "2024-06-03 09:17:42",
"description": "Publisher: GanttProject<br>Download: https://www.ganttproject.biz/download/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>Notes:<br>1. This package will stop running GanttProject AND Javaw.exe processes<br>2. Requires Java Runtime version 7 or higher to be installed<br>3. This version is the latest stable release according to the Publisher's website, but after<br>installation, the user may be prompted for additional updates<br>4. Updates are enabled and must be disabled manually per user<br>5. Removes previous version<br>6. Removes desktop icon<br>7. Adds version info in registry"
},
{
"name": "Draw.io",
"versionnumber": "24.4.13",
"versionname": "",
"modified": "2024-06-03 09:16:25",
"description": "Publisher: JGraph Ltd<br>Download: https://github.com/jgraph/drawio-desktop/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "Google Chrome Enterprise",
"versionnumber": "125.0.6422.142",
"versionname": "",
"modified": "2024-05-31 07:59:59",
"description": "Publisher: Google<br>Download: https://www.google.com/chrome/<br>Supported Operating Systems: Windows 10, 11, Server 2016, 2019, 2022<br>Supported Architecture: 32/64<br><br>Custom Settings Applies:<br>1. Auto Update is disabled.<br>2. If you recive a deployment error on Step 1 or 2 due to Conditions, you should check this value on the endpoint:<br>Key: HKEY_LOCAL_MACHINE\\Software\\Policies\\Google\\Update\\Install{8A69D345-D564-463C-AFF1-A69D9E530F96}<br>Value = 0<br>This registry value is commonly found in organizations using Chrome GPOs.<br>Forcing this installation will result in uninstallation of the old Chrome package and <br>installation of the new Chrome package will fail with a resulting error 1603.<br>https://admx.help/?Category=GoogleUpdate&Policy=Google.Policies.Update::Pol_AllowInstallationGoogleChrome<br><br>If you want to enable auto-updates, you can still download Chrome as an auto-download package:<br>1. Add a Command step as a post-step<br>2. Copy and paste this line:<br>%SystemRoot%\\System32\\Reg.exe DELETE \"HKLM\\SOFTWARE\\Policies\\Google\\Update\" /v \"Update{8A69D345-D564-463C-AFF1-A69D9E530F96}\" /f<br>3. Save the package."
},
{
"name": "PDQ Inventory",
"versionnumber": "19.3.559.0",
"versionname": "",
"modified": "2024-05-29 14:09:48",
"description": "Publisher: PDQ<br>Download: https://www.pdq.com/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>This will silently install/update PDQ Inventory and may require a reboot<br>to complete the installation."
},
{
"name": "PDQ Deploy",
"versionnumber": "19.3.559.0",
"versionname": "",
"modified": "2024-05-29 14:09:33",
"description": "Publisher: PDQ<br>Download: https://www.pdq.com/releases/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>This will silently install/update PDQ Deploy and may require a reboot<br>to complete the installation."
},
{
"name": "Mozilla Thunderbird",
"versionnumber": "115.11.1",
"versionname": "",
"modified": "2024-05-29 09:21:35",
"description": "Publisher: Mozilla<br>Download: https://www.thunderbird.net/en-US/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64"
},
{
"name": "SysInternalsSuite",
"versionnumber": "2024.5.28",
"versionname": "",
"modified": "2024-05-29 09:20:42",
"description": "Publisher: Microsoft<br>Download: https://learn.microsoft.com/en-us/sysinternals/downloads/<br>Supported Operating Systems: All<br>Supported Architecture: 32/64<br><br>The SysInternalsSuite package will be extracted to:<br>C:\\PDQ\\SysInternalsSuite"
},
{
"name": "Microsoft .NET Framework 8",
"versionnumber": "8.0.6",
"versionname": "",
"modified": "2024-05-29 09:19:39",
"description": "Publisher: Microsoft<br>Download: https://dotnet.microsoft.com/en-us/download/dotnet/8.0<br>Supported Operating Systems: Windows 10 (1607+), 11, Server 2012 R2, 2016, 2019, 2022<br>Supported Architecture: 32/64"
},
{
"name": "Microsoft .NET Framework 7",
"versionnumber": "7.0.20",
"versionname": "",
"modified": "2024-05-29 09:18:46",
"description": "Publisher: Microsoft<br>Download: https://dotnet.microsoft.com/en-us/download/dotnet/7.0<br>Supported Operating Systems: Windows 10 (1607+), 11, Server 2012, 2012 R2, 2016, 2019, 2022<br>Supported Architecture: 32/64"
},
{
"name": "Microsoft .NET Framework 6",
"versionnumber": "6.0.31",
"versionname": "",