forked from amidaware/community-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
community_scripts.json
1723 lines (1723 loc) · 60.8 KB
/
community_scripts.json
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
[
{
"guid": "6820cb5e-5a7f-4d9b-8c22-d54677e3cc04",
"filename": "Win_Firefox_Clear_Cache.ps1",
"submittedBy": "https://github.com/Omnicef",
"name": "Firefox - Clean Cache",
"description": "This script will clean up Mozilla Firefox for all users.",
"shell": "powershell",
"category": "TRMM (Win):Browsers",
"supported_platforms": [
"windows"
],
"default_timeout": "300"
},
{
"guid": "720edbb7-8faf-4a77-9283-29935e8880d0",
"filename": "Win_Printer_ClearandRestart.bat",
"submittedBy": "https://github.com/wh1te909",
"name": "Printers - Clear all print jobs",
"description": "This script will stop the spooler, delete all pending print jobs and restart the spooler",
"shell": "cmd",
"category": "TRMM (Win):Printing",
"supported_platforms": [
"windows"
],
"default_timeout": "300"
},
{
"guid": "eb15bb8b-a2c5-4452-b16a-8a758fbb6722",
"filename": "Win_Printers_List_Installed.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Printers - Gets a list of all installed printers",
"description": "This script will get a list of all installed printers, their ports and if shared or not",
"shell": "powershell",
"category": "TRMM (Win):Printing",
"supported_platforms": [
"windows"
],
"default_timeout": "300"
},
{
"guid": "3ff6a386-11d1-4f9d-8cca-1b0563bb6443",
"filename": "Win_Google_Chrome_Clear_Cache.ps1",
"submittedBy": "https://github.com/Omnicef",
"name": "Chrome - Clear Cache for All Users",
"description": "This script will clean up Google Chrome for all users.",
"shell": "powershell",
"category": "TRMM (Win):Browsers",
"supported_platforms": [
"windows"
],
"default_timeout": "300"
},
{
"guid": "d3c74105-d1e5-40d8-94ff-b4d6b216fe0f",
"filename": "Win_Chocolatey_List_Installed.bat",
"submittedBy": "https://github.com/silversword411",
"name": "Chocolatey - List Installed apps",
"description": "Lists apps locally installed by chocolatey",
"shell": "cmd",
"category": "TRMM (Win):3rd Party Software>Chocolatey",
"supported_platforms": [
"windows"
],
"default_timeout": "90"
},
{
"guid": "be1de837-f677-4ac5-aa0c-37a0fc9991fc",
"filename": "Win_Install_Adobe_Reader.ps1",
"submittedBy": "https://github.com/Omnicef",
"name": "Adobe Reader DC - Install",
"description": "Installs Adobe Reader DC.",
"shell": "powershell",
"category": "TRMM (Win):3rd Party Software>Chocolatey",
"supported_platforms": [
"windows"
],
"default_timeout": "300"
},
{
"guid": "7b1d90a1-3eda-48ab-9c49-20e714c9e82a",
"filename": "Win_Duplicati_Install.bat",
"submittedBy": "https://github.com/dinger1986",
"name": "Duplicati - Install 2.0.6.3 to work with Community Check Status",
"description": "This script installs Duplicati 2.0.6.3 as a service and creates status files to be used with community check",
"shell": "cmd",
"category": "TRMM (Win):3rd Party Software",
"supported_platforms": [
"windows"
],
"default_timeout": "300"
},
{
"guid": "7c14beb4-d1c3-41aa-8e70-92a267d6e080",
"filename": "Win_Duplicati_Status.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Duplicati - Check Status",
"description": "Checks Duplicati Backup is running properly over the last 24 hours",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):3rd Party Software>Monitoring"
},
{
"guid": "5a60c13b-1882-4a92-bdfb-6dd1f6a11dd14",
"filename": "Win_Windows_Update_RevertToDefault.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Windows Update - Re-enable Microsoft managed Windows Update",
"description": "TRMM agent will set registry key to disable Windows Auto Updates. This will re-enable Windows standard update settings",
"shell": "powershell",
"category": "TRMM (Win):Updates",
"supported_platforms": [
"windows"
],
"default_timeout": "90"
},
{
"guid": "81cc5bcb-01bf-4b0c-89b9-0ac0f3fe0c04",
"filename": "Win_Windows_Update_Reset.ps1",
"submittedBy": "https://github.com/Omnicef",
"name": "Windows Update - Reset",
"description": "This script will reset all of the Windows Updates components to DEFAULT SETTINGS.",
"shell": "powershell",
"category": "TRMM (Win):Updates",
"supported_platforms": [
"windows"
],
"default_timeout": "300"
},
{
"guid": "8db87ff0-a9b4-4d9d-bc55-377bbcb85b6d",
"filename": "Win_Start_Cleanup.ps1",
"submittedBy": "https://github.com/Omnicef",
"name": "Disk - Cleanup C: drive",
"description": "Cleans the C: drive's Window Temporary files, Windows SoftwareDistribution folder, the local users Temporary folder, IIS logs (if applicable) and empties the recycling bin. All deleted files will go into a log transcript in $env:TEMP. By default this script leaves files that are newer than 7 days old however this variable can be edited.",
"shell": "powershell",
"category": "TRMM (Win):Maintenance",
"supported_platforms": [
"windows"
],
"default_timeout": "25000"
},
{
"guid": "2f28e8c1-ae0f-4b46-a826-f513974526a3",
"filename": "Win_Defender_FullScan_Background.ps1",
"submittedBy": "https://github.com/Omnicef",
"name": "Defender - Full Scan",
"description": "Runs a Windows Defender Full background scan.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Security>Antivirus"
},
{
"guid": "adf81ddb-3b77-415c-a89b-2ccc826b5aa7",
"filename": "Win_Defender_QuickScan_Background.ps1",
"submittedBy": "https://github.com/Omnicef",
"name": "Defender - Quick Scan",
"description": "Runs a Quick Scan using Windows Defender in the Background.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Security>Antivirus"
},
{
"guid": "3c46290b-85db-4cd2-93a2-943c8c93b3b1",
"filename": "all_network_speedtest.py",
"submittedBy": "https://github.com/wh1te909",
"name": "Network - Speed Test",
"description": "Runs a Speed Test using Python",
"shell": "python",
"category": "TRMM (All):Network",
"supported_platforms": [
"windows",
"linux",
"darwin"
],
"default_timeout": "120"
},
{
"guid": "9d34f482-1f0c-4b2f-b65f-a9cf3c13ef5f",
"filename": "Win_TRMM_Rename_Installed_App.ps1",
"submittedBy": "https://github.com/bradhawkins85",
"name": "TacticalRMM - Agent Rename",
"description": "Updates the DisplayName registry entry for the Tactical RMM windows agent to your desired name. This script takes 1 required argument: the name you wish to set.",
"syntax": "<string>",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):TacticalRMM Related"
},
{
"guid": "01845406-d83d-4ba5-960e-06bafe67a235",
"filename": "Win_TRMM_GetLogs.ps1",
"submittedBy": "https://github.com/RemiOS0456",
"name": "TacticalRMM - Get Agent Logs for debugging",
"description": "Pulls last 50 lines, unless more are requested from TRMM agent and Mesh Agent",
"syntax": "[-Lines <Int>]",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):TacticalRMM Related"
},
{
"guid": "e2a21b69-b446-429c-ab56-328d4e8696fb",
"filename": "Win_TRMM_Agent_Debugmode.bat",
"submittedBy": "https://github.com/silversword411",
"name": "TacticalRMM - TRMM Agent enable Debug Mode",
"description": "Puts TRMM agent into debug mode temporarily. Restart PC to end debug session. Pull logs with Get Agent Logs script.",
"shell": "cmd",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):TacticalRMM Related"
},
{
"guid": "910e4ac3-5c6d-47a2-ab99-0d8bb2ddf166",
"filename": "Win_TRMM_Agent_DebugmodeUndo.bat",
"submittedBy": "https://github.com/silversword411",
"name": "TacticalRMM - TRMM Agent disable Debug Mode",
"description": "Reverts TRMM agent debug mode back to normal mode. Pull logs with Get Agent Logs script.",
"shell": "cmd",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):TacticalRMM Related"
},
{
"guid": "2af2e283-8397-41df-899d-474c581a36cb",
"filename": "Win_TRMM_Mesh_Debug.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "TacticalRMM - Check Mesh Agent for problems",
"description": "For debugging mesh, see if something is broken",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):TacticalRMM Related"
},
{
"guid": "b90fb6a1-cf53-48d4-9747-60dd333c7159",
"filename": "Win_TRMM_Mesh_Install.ps1",
"submittedBy": "https://github.com/NiceGuyIT",
"name": "TacticalRMM - Install Mesh Agent if it's not installed",
"description": "For deployments where Mesh Agent was not installed or failed to be installed. See script notes for requirements.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"syntax": "[-Reinstall]\n[-UseTemp]\nEnvironmental: TRMM_API_KEY=<string>",
"category": "TRMM (Win):TacticalRMM Related"
},
{
"guid": "525ae965-1dcf-4c17-92b3-5da3cf6819f5",
"filename": "Win_Bitlocker_Drive_Check_Status.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Bitlocker - Check Drive for Status",
"description": "Runs a check on drive for Bitlocker status. Returns 0 if Bitlocker is not enabled, 1 if Bitlocker is enabled",
"syntax": "[Drive <string>]",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Storage"
},
{
"guid": "2ea35fa2-c227-4d17-a40e-4d39f252e27a",
"filename": "Win_Bitlocker_Create_Status_Report.ps1",
"submittedBy": "https://github.com/ThatsNASt",
"name": "Bitlocker - Create Status Report",
"description": "Creates a Bitlocker status report.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Storage"
},
{
"guid": "9e5769c1-3873-4941-bf70-e851e0afbd6d",
"filename": "Win_Bitlocker_Retrieve_Status_Report.ps1",
"submittedBy": "https://github.com/ThatsNASt",
"name": "Bitlocker - Retrieve Status Report",
"description": "Retrieves a Bitlocker status report.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Storage"
},
{
"guid": "72b93487-0266-43f0-97cc-03d4c7ee0b44",
"filename": "Win_Bitlocker_Get_Recovery_Keys.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Bitlocker - Get Recovery Keys",
"description": "Retrieves a Bitlocker Recovery Keys",
"shell": "powershell",
"syntax": "[-KeyOnly]",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Storage"
},
{
"guid": "11be7136-0416-47b4-a6dd-9776fa857dca",
"filename": "Win_Storage_CheckPools.ps1",
"submittedBy": "https://github.com/wh1te909",
"name": "Storage Pools - Check Health",
"description": "Checks all storage pools for health, returns error 1 if unhealthy",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Monitoring"
},
{
"guid": "cfa14c28-4dfc-4d4e-95ee-a380652e058d",
"filename": "Win_Bios_Check.ps1",
"submittedBy": "https://github.com/ThatsNASt",
"name": "BIOS - Check Information",
"description": "Retrieves and reports on BIOS make, version, and date.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Hardware"
},
{
"guid": "e1c27982-b955-4766-85b6-d92527a177cf",
"filename": "Win_Hardware_Monitor_Get_Info.ps1",
"submittedBy": "https://github.com/MaxAnderson95/",
"name": "Monitor - Get Info",
"description": "Retrieves and reports on Monitor info: Manufacturer, Model, Serial",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Hardware"
},
{
"guid": "ae231ac4-b01f-4a39-a9d2-3d817af75260",
"filename": "Win_Hardware_RAM_Status.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "RAM - Check Information",
"description": "Retrieves and reports on RAM info: DIMM's, total memory, slots total and used",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Hardware"
},
{
"guid": "2cf918d1-1cc8-4208-bc94-9ca7b34e61c2",
"filename": "Win_Lenovo_Driver_Updates.ps1",
"submittedBy": "https://github.com/maltekiefer",
"name": "Lenovo - Driver Updates",
"description": "Searches the Lenovo support system for new drivers and installs them",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Hardware",
"default_timeout": "3600"
},
{
"guid": "72c56717-28ed-4cc6-b30f-b362d30fb4b6",
"filename": "Win_Hardware_SN.ps1",
"submittedBy": "https://github.com/subzdev",
"name": "Hardware - Get Serial Number",
"description": "Returns BIOS Serial Number - Use with Custom Fields for later use",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Collectors"
},
{
"guid": "973c34d7-cab0-4fda-999c-b4933655f946",
"filename": "Win_Screenconnect_GetGUID.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Screenconnect - Get GUID for client",
"description": "Returns Screenconnect GUID for client - Use with Custom Fields for later use.",
"args": [
"{{client.ScreenConnectService}}"
],
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Collectors"
},
{
"guid": "bbe5645f-c8d8-4d86-bddd-c8dbea45c974",
"filename": "Win_Splashtop_Get_ID.ps1",
"submittedBy": "https://github.com/r3die",
"name": "Splashtop - Get SUUID for client",
"description": "Returns Splashtop SUUID for client - Use with Custom Fields for later use.",
"args": [
"{{agent.SplashtopSUUID}}"
],
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Collectors"
},
{
"guid": "9cfdfe8f-82bf-4081-a59f-576d694f4649",
"filename": "Win_Teamviewer_Get_ID.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "TeamViewer - Get ClientID for client",
"description": "Returns Teamviewer ClientID for client - Use with Custom Fields for later use.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Collectors"
},
{
"guid": "4f1f20e8-b3f6-495d-8436-c7368500b5f6",
"filename": "Win_Supremo_GetID.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Supremo - Get ClientID for client",
"description": "Returns Supremo ClientID for client - Use with Custom Fields for later use.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Collectors"
},
{
"guid": "e43081d4-6f71-4ce3-881a-22da749f7a57",
"filename": "Win_AnyDesk_Get_Anynet_ID.ps1",
"submittedBy": "https://github.com/meuchels",
"name": "AnyDesk - Get AnyNetID for client",
"description": "Returns AnyNetID for client - Use with Custom Fields for later use.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Collectors"
},
{
"guid": "672403e4-f9b5-4442-8d8c-4fb376dd0a62",
"filename": "Win_Securepoint_Get_DeviceId.ps1",
"submittedBy": "https://github.com/maltekiefer",
"name": "Securepoint - Get DeviceId for client",
"description": "Returns Securepoint DeviceId for client - Use with Custom Fields for later use.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Collectors"
},
{
"guid": "3e9881a1-5860-4a4e-9e34-e2a091381da6",
"filename": "zzDEPRECATED_Win_RustDesk_GetID.ps1",
"submittedBy": "https://github.com/dinger1986/",
"name": "RustDesk - Get RustDeskID for client",
"description": "Script doesn't work and won't be updated please obtain up to date scripts from https://docs.tacticalrmm.com/3rdparty_rustdesk/",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "DEPRECATED"
},
{
"guid": "95a2ee6f-b89b-4551-856e-3081b041caa7",
"filename": "Win_Power_Profile_Reset_High_Performance_to_Defaults.ps1",
"submittedBy": "https://github.com/azulskyknight",
"name": "Power Profile - Reset High Perf Power Profile to defaults",
"description": "Resets monitor, disk, standby, and hibernate timers in the default High Performance power profile to their default values. It also re-indexes the AC and DC power profiles into their default order.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Power"
},
{
"guid": "2cbd30b0-84dd-4388-a36d-2e2e980f1a3e",
"filename": "Win_Power_Profile_Set_High_Performance.ps1",
"submittedBy": "https://github.com/azulskyknight",
"name": "Power Profile - Set High Performance",
"description": "Sets the High Performance Power profile to the active power profile. Use this to keep machines from falling asleep.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Power"
},
{
"guid": "553236d3-81bc-49f4-af8a-0cff925a7f6d",
"filename": "Win_10_Upgrade.ps1",
"submittedBy": "https://github.com/RVL-Solutions and https://github.com/darimm",
"name": "Windows 10 Upgrade",
"description": "Forces an upgrade to the latest release of Windows 10.",
"shell": "powershell",
"category": "TRMM (Win):Updates",
"supported_platforms": [
"windows"
],
"default_timeout": "25000"
},
{
"guid": "4d0ba685-2259-44be-9010-8ed2fa48bf74",
"filename": "Win_Win11_Ready.ps1",
"submittedBy": "https://github.com/adamjrberry/",
"name": "Windows 11 Upgrade capable check",
"description": "Checks to see if machine is Win11 capable",
"shell": "powershell",
"category": "TRMM (Win):Updates",
"supported_platforms": [
"windows"
],
"default_timeout": "3600"
},
{
"guid": "67bee6b8-7bbb-40d9-8b3f-8b144d9710e8",
"filename": "Win_Win11_Remove_Chat.bat",
"submittedBy": "https://github.com/silversword411",
"name": "Windows 11 - Remove Chat Icon from taskbar",
"description": "Removes the chat taskbar icon in Win11",
"shell": "cmd",
"category": "TRMM (Win):Win11 Tweaks",
"supported_platforms": [
"windows"
],
"default_timeout": "30"
},
{
"guid": "24a6fdbc-0909-46fe-813c-7f26933fe5fe",
"filename": "Win_Windows_Update_Block_Win11.ps1",
"submittedBy": "https://github.com/dinger1986/",
"name": "Windows 11 Upgrade Block",
"description": "Blocks Windows 11 Upgrade if machine is Win11 capable",
"shell": "powershell",
"category": "TRMM (Win):Updates",
"supported_platforms": [
"windows"
],
"default_timeout": "3600"
},
{
"guid": "375323e5-cac6-4f35-a304-bb7cef35902d",
"filename": "Win_Disk_Volume_Status.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Disk Drive Volume Health Check (using Event Viewer errors)",
"description": "Checks Drive Volumes for errors reported in event viewer within the last 24 hours",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Hardware"
},
{
"guid": "4ace28ee-98f7-4931-9ac9-0adaf1a757ed",
"filename": "Win_Software_Install_Report.ps1",
"submittedBy": "https://github.com/silversword",
"name": "Software Install - Reports new installs",
"description": "This will check for software install events in the application Event Viewer log. If a number is provided as a command parameter it will search that number of days back.",
"syntax": "[<int>]",
"shell": "powershell",
"category": "TRMM (Win):Monitoring",
"supported_platforms": [
"windows"
],
"default_timeout": "90"
},
{
"guid": "907652a5-9ec1-4759-9871-a7743f805ff2",
"filename": "Win_Software_Uninstall.ps1",
"submittedBy": "https://github.com/subzdev",
"name": "Software Uninstaller - list, find, and uninstall most software",
"description": "Allows listing, finding and uninstalling most software on Windows. There will be a best effort to uninstall silently if the silent uninstall string is not provided.",
"syntax": "-list <string>\n[-u <uninstall string>]\n[-u quiet <uninstall string>]",
"shell": "powershell",
"category": "TRMM (Win):3rd Party Software",
"supported_platforms": [
"windows"
],
"default_timeout": "600"
},
{
"guid": "64c3b1a8-c85f-4800-85a3-485f78a2d9ad",
"filename": "Win_Bitdefender_GravityZone_Install.ps1",
"submittedBy": "https://github.com/jhtechIL/",
"name": "BitDefender Gravity Zone Install",
"description": "Installs BitDefender Gravity Zone, requires client custom field setup. See script comments for details",
"syntax": "[-log]",
"args": [
"-url {{client.bdurl}}",
"-exe {{client.bdexe}}"
],
"default_timeout": "2500",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):3rd Party Software"
},
{
"guid": "7de49f72-d654-460d-9f32-44325e947ac0",
"filename": "Win_ESET_ProtectAgent_Install.ps1",
"submittedBy": "https://github.com/clanto007/",
"name": "ESET Protect Agent Install",
"description": "Installs ESET Protect Agent, requires client custom field setup. See script comments for details",
"syntax": "[-log]",
"args": [
"-eset_protect_host {{client.eset_protect_host}}",
"-eset_protect_port {{client.eset_protect_port}}",
"-eset_cert {{client.eset_cert}}",
"-eset_cert_password {{client.eset_cert_password}}",
"-eset_cert_auth {{client.eset_cert_auth}}",
"-eset_static_group {{client.eset_static_group}}",
"-eset_custom_policy {{client.eset_custom_policy}}"
],
"default_timeout": "2500",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):3rd Party Software"
},
{
"guid": "bfd61545-839b-45da-8b3d-75ffc4d43272",
"filename": "Win_Sophos_EndpointProtection_Install.ps1",
"submittedBy": "https://github.com/bc24fl/",
"name": "Sophos Endpoint Protection Install",
"description": "Installs Sophos Endpoint Protection via the Sophos API. Products include Antivirus, InterceptX, MDR, Device Encryption. The script requires API credentials, Custom Fields, and Arguments passed to script. See script comments for details",
"args": [
"-ClientId {{client.SophosClientId}}",
"-ClientSecret {{client.SophosClientSecret}}",
"-TenantName {{client.SophosTenantName}}",
"-Products antivirus,intercept"
],
"default_timeout": "3600",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):3rd Party Software"
},
{
"guid": "a9d2a6c0-8afa-4d69-8faf-f83b49c11702",
"filename": "Win_Printer_Restart_Jobs.ps1",
"submittedBy": "https://github.com/bc24fl/",
"name": "Printers - Restarts stuck printer jobs.",
"description": "Cycles through each printer and restarts any jobs that are stuck with error status.",
"shell": "powershell",
"category": "TRMM (Win):Printing",
"supported_platforms": [
"windows"
],
"default_timeout": "90"
},
{
"guid": "da51111c-aff6-4d87-9d76-0608e1f67fe5",
"filename": "Win_Defender_Enable.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Defender - Enable",
"description": "Enables Windows Defender and sets preferences",
"shell": "powershell",
"syntax": "[-NoControlledFolders][-AuditOnly]",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Security>Antivirus"
},
{
"guid": "5d476062-7a0d-4531-b291-3df4a3353081",
"filename": "Win_Defender_Revert.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Defender - Revert back to Default Settings",
"description": "Restores Windows Defender settings back to default",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Security>Antivirus"
},
{
"guid": "a223d03a-e22e-40e0-94f2-92dd8c481d14",
"filename": "Win_Open_SSH_Server_Install.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "SSH - Install Feature and Enable",
"description": "Installs and enabled OpenSSH Server Feature in Win10",
"shell": "powershell",
"category": "TRMM (Win):Windows Features",
"supported_platforms": [
"windows"
],
"default_timeout": "300"
},
{
"guid": "2435297a-6263-4e90-8688-1847400d0e22",
"filename": "Win_RDP_enable.bat",
"submittedBy": "https://github.com/dinger1986",
"name": "RDP - Enable",
"description": "Enables RDP",
"shell": "cmd",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Windows Features"
},
{
"guid": "0afd8d00-b95b-4318-8d07-0b9bc4424287",
"filename": "Win_Feature_NET35_Enable.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Windows Feature - Enable .NET 3.5",
"description": "Enables the Windows .NET 3.5 Framework in Turn Features on and off",
"shell": "powershell",
"default_timeout": "300",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Windows Features"
},
{
"guid": "24f19ead-fdfe-46b4-9dcb-4cd0e12a3940",
"filename": "Win_Speedtest.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Speed Test - Powershell",
"description": "Speed Test with Powershell(win 10 or server2016+)",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Network"
},
{
"guid": "5aabbecd-4f3b-47a4-9810-95d9992d2e3f",
"filename": "Win_Network_Scan.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Network IP Scan",
"description": "Checks for all devices on a network using ping and arp",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Network"
},
{
"guid": "caeeab69-71a4-4ef4-bf69-0641b6ff01df",
"filename": "Win_Network_Speed_Test.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Test Network Speed",
"description": "This will download and run iperf to check network speeds, you need one machine on the network as a server and another as a client",
"syntax": "[-mode <string>]\n[-IP <string>]",
"default_timeout": "600",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Network"
},
{
"guid": "a821975c-60df-4d58-8990-6cf8a55b4ee0",
"filename": "Win_Time_Sync.bat",
"submittedBy": "https://github.com/dinger1986",
"name": "ADDC - Sync DC Time",
"description": "Syncs time with domain controller",
"shell": "cmd",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Active Directory"
},
{
"guid": "5320dfc8-022a-41e7-9e39-11c493545ec9",
"filename": "Win_AD_Hudu_ADDS_Documentation.ps1",
"submittedBy": "https://github.com/unplugged216",
"name": "ADDS - Directory documentation in Hudu",
"description": "Auto generates ADDS documentation and submits it to your Hudu instance.",
"args": [
"-ClientName {{client.name}}",
"-HuduBaseDomain {{global.HuduBaseDomain}}",
"-HuduApiKey {{global.HuduApiKey}}"
],
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Active Directory"
},
{
"guid": "b6b9912f-4274-4162-99cc-9fd47fbcb292",
"filename": "Win_ADDC_Sync_Start.bat",
"submittedBy": "https://github.com/silversword411",
"name": "ADDC - Sync AD",
"description": "Trigger AD Sync on domain controller",
"shell": "cmd",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Active Directory"
},
{
"guid": "b720e320-7755-4c89-9992-e1a6c43699ed",
"filename": "Win_Defender_Clear_Logs.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Defender - Clear Logs",
"description": "Clears Windows Defender Logs",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Security>Antivirus"
},
{
"guid": "d980fda3-a068-47eb-8495-1aab07a24e64",
"filename": "Win_Defender_Status_Report.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Defender - Status Report",
"description": "This will check for Malware and Antispyware within the last 24 hours and display, otherwise will report as Healthy. Command Parameter: (number) if provided will check that number of days back in the log.",
"syntax": "[<int>]",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Security>Antivirus"
},
{
"guid": "9956e936-6fdb-4488-a9d8-8b274658037f",
"filename": "Win_Disable_Fast_Startup.bat",
"submittedBy": "https://github.com/dinger1986",
"name": "Power - Fast Startup Disable",
"description": "Disables Faststartup on Windows 10",
"shell": "cmd",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Power"
},
{
"guid": "f628a02b-16c3-4ab5-b788-dec5bc2af1d9",
"filename": "Win_Power_Disable_Hibernation.bat",
"submittedBy": "https://github.com/silversword411",
"name": "Power - Hibernate Disable",
"description": "Disables Hibernation",
"shell": "cmd",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Power"
},
{
"guid": "2472bbaf-1941-4722-8a58-d1dd0f528801",
"filename": "Win_TRMM_AV_Update_Exclusion.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "TRMM Defender Exclusions",
"description": "Windows Defender Exclusions for Tactical RMM",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Security>Antivirus"
},
{
"guid": "b253dc76-41a0-48ca-9cea-bee4277402c4",
"filename": "Win_Display_Message_To_User.ps1",
"submittedBy": "https://github.com/bradhawkins85",
"name": "Message Popup To User",
"syntax": "<string>",
"description": "Displays a popup notification message to the currently logged on user using BurntToast",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Other"
},
{
"guid": "19224d21-bd39-44bc-b9cf-8f1ba3ca9c11",
"filename": "Win_Antivirus_Verify.ps1",
"submittedBy": "https://github.com/beejayzed",
"name": "Antivirus - Verify Status",
"syntax": "[-antivirusName <string>] [-customfield]",
"description": "Verify and display status for all installed Antiviruses",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Security>Antivirus"
},
{
"guid": "f88c5c52-c6fe-44db-b727-b7912a4279ed",
"filename": "Win_Create_All_User_Logon_Script.ps1",
"submittedBy": "https://github.com/nr-plaxon",
"name": "Template Example - Create User Logon Script",
"description": "Creates a powershell script that runs at logon of any user on the machine in the security context of the user.",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Other"
},
{
"guid": "6c78eb04-57ae-43b0-98ed-cbd3ef9e2f80",
"filename": "Win_Chocolatey_Manage_Apps_Bulk.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Chocolatey - Install, Uninstall, List and Upgrade Software",
"description": "This script installs, uninstalls and updates software using Chocolatey with logic to slow tasks to minimize hitting community limits. Mode install/uninstall/upgrade/upgrade-only-installed Hosts x",
"syntax": "-PackageName <string>\n[-Hosts <string>]\n[-mode {(install) | upgrade | upgrade-only-installed | uninstall | list}]",
"shell": "powershell",
"category": "TRMM (Win):3rd Party Software>Chocolatey",
"supported_platforms": [
"windows"
],
"default_timeout": "600"
},
{
"guid": "b2362f48-cedd-4f5b-8848-68fe58131c98",
"filename": "Win_WinGet_Manage_Apps.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Winget - Install, Uninstall and Upgrade Software",
"description": "This script installs, uninstalls and updates software using winget. Mode install/uninstall/upgrade/search",
"syntax": "-PackageName <string>]\n[-mode {install | search | upgrade | uninstall }]",
"shell": "powershell",
"category": "TRMM (Win):3rd Party Software>WinGet",
"supported_platforms": [
"windows"
],
"default_timeout": "600"
},
{
"guid": "fff8024d-d72e-4457-84fa-6c780f69a16f",
"filename": "Win_AD_Check_And_Enable_AD_Recycle_Bin.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "ADDC - Check and Enable AD Recycle Bin",
"description": "Only run on Domain Controllers, checks for Active Directory Recycle Bin and enables if not already enabled",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Active Directory"
},
{
"guid": "3afd07c0-04fd-4b23-b5f2-88205c0744d4",
"filename": "Win_User_Admins_Local_Disable.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Local Administrators - Disables all local admins if joined to domain or AzureAD",
"description": "Checks to see if computer is either joined to a AD domain or Azure AD. If it is, it disables all local admin accounts. If not joined to domain/AzureAD, leaves admin accounts in place",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):User Management"
},
{
"guid": "ad918098-510f-41a1-98a9-3e10a6443324",
"filename": "Win_User_Admin_LAPS.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "For Setting up and running a LAPS (Local Administrator Password Solution) for non-AD",
"description": "This will create a local administrator, with each run it will change that localadmin user's password. This will let you make users non-administrators, but still have a local admin account.",
"syntax": "[-LAPSID <string>]\n[-PassLength <Int>]\n[HideUser]\n[ShowUser]",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):User Management"
},
{
"guid": "71090fc4-faa6-460b-adb0-95d7863544e1",
"filename": "Win_Bluescreen_Report.ps1",
"submittedBy": "https://github.com/bbrendon",
"name": "Event Viewer - Bluescreen Notification",
"description": "Event Viewer Monitor - Notify on BSOD events on your system",
"syntax": "[<int>]",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Monitoring"
},
{
"guid": "8373846f-facc-49b9-9891-3a780a394c89",
"filename": "Win_User_Local_Created_Monitor.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Event Viewer - New User Notification",
"description": "Event Viewer Monitor - Notify when new Local user is created. If parameter provided will search back that number of days",
"syntax": "[<int>]",
"shell": "powershell",
"supported_platforms": [
"windows"
],
"category": "TRMM (Win):Monitoring"
},
{
"guid": "65e5cef1-8338-4180-a0bc-cd54e62de690",
"filename": "Win_Task_Scheduler_New_Items_Monitor.ps1",
"submittedBy": "https://github.com/dinger1986",
"name": "Event Viewer - Task Scheduler New Item Notification",
"description": "Event Viewer Monitor - Notify when new Task Scheduler item is created",
"syntax": "[<int>]",
"shell": "powershell",
"supported_platforms": [