-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugins.xml
998 lines (998 loc) · 48.3 KB
/
plugins.xml
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
<pluginlist>
<plugin>
<name>
</name>
<description>
</description>
<author>
</author>
<version>1.20</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/00 Initialize/00 Connection Plugin for vCenter.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>General details on the infrastructure</description>
<author>Alan Renouf, Frederic Martin</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/00 Initialize/01 General Information.ps1</href>
</plugin>
<plugin>
<name>Checking VI Events</name>
<description>The following errors were logged in the vCenter Events tab, you may wish to investigate these</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/10 vCenter/23 VI Events.ps1</href>
</plugin>
<plugin>
<name>VC Services</name>
<description>The following vCenter Services are not in the required state</description>
<author>Alan Renouf</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/10 vCenter/41 vCenter Services.ps1</href>
</plugin>
<plugin>
<name>Windows vCenter Error Event Logs</name>
<description>The following errors were found in the vCenter Event Logs, you may wish to check these further</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/10 vCenter/42 Windows vCenter Error Event Logs.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following errors were found in the vCenter Event Logs in the past {0} days, you may wish to check these further</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/10 vCenter/42 Windows vCenter Event Logs.ps1</href>
</plugin>
<plugin>
<name>Windows vCenter Warning Event Logs</name>
<description>The following warnings were found in the vCenter Event Logs, you may wish to check these further</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/10 vCenter/43 Windows vCenter Warning Event Logs.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following displays vCenter sessions that exceed the maximum session age ($MaxvCenterSessionAge Hour(s)).</description>
<author>Rudolf Kleijwegt</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/10 vCenter/47 vCenter Session Age.ps1</href>
</plugin>
<plugin>
<name>vCenter License Report</name>
<description>The following displays licenses registered with this server and usage. Include Evals: $licenseEvals</description>
<author>Justin Mercier, Bill Wall</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/10 vCenter/82 License Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following clusters have HA configuration issues. This will impact your disaster recovery.</description>
<author>John Sneddon</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/10 HA Configuration Issues.ps1</href>
</plugin>
<plugin>
<name>Clusters Without Host Profile attached</name>
<description>The following clusters do not have a host profile attached</description>
<author>John Sneddon</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/104 Clusters with no Host Profile.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have been restarted by HA in the last {0} days</description>
<author>Alan Renouf</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/15 HA VMs restarted.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Multiple DRS Migrations may be an indication of overloaded hosts, check resource levels of the cluster</description>
<author>Alan Renouf, Jonathan Medd</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/17 DRS Migrations.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Available slots in the below cluster are less than is specified, this may cause issues with creating new VMs, for more information click here: <a href='http://www.yellow-bricks.com/vmware-high-availability-deepdiv/' target='_blank'>Yellow-Bricks HA Deep Dive</a></description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/18 Cluster Slot Sizes.ps1</href>
</plugin>
<plugin>
<name>Cluster Configuration Issues</name>
<description>The following alarms have been registered against clusters in vCenter</description>
<author>Alan Renouf</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/38 Cluster Configuration Issues.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Virtual Machines residing on these datastores will not be able to run on all hosts in the cluster</description>
<author>Robert Sexstone</author>
<version>1.6</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/52 Datastore Consistency.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following clusters have DRS disabled. This may impact the performance of your cluster.</description>
<author>Robert van den Nieuwendijk</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/55 Clusters with DRS Disabled.ps1</href>
</plugin>
<plugin>
<name>Cluster Node version</name>
<description>Display per cluster nodes version if unique or mismatch</description>
<author>Raphael Schitz, Frederic Martin</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/70 Cluster Node Version.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following gives brief capacity information for each cluster based on QuickStats CPU/Mem usage and counting for HA failover requirements</description>
<author>Raphael Schitz, Frederic Martin</author>
<version>1.7</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/71 Capacity Planning.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>s/vMotions and how long they took to migrate between hosts and datastores</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/72 s-vMotion Information.ps1</href>
</plugin>
<plugin>
<name>More RAM than free space on Datastore</name>
<description>The following VMs can't vMotion because they have more RAM than free space on datastore</description>
<author>Olivier TABUT, Bob Cote</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/73 VM - More RAM than free space on Datastore.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Contains all DRS rules defined in this vCenter - {0}</description>
<author>John Sneddon</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/20 Cluster/75 DRS Rules.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Overcommitted hosts may cause issues with performance if memory is not issued when needed, this may cause ballooning and swapping</description>
<author>Alan Renouf</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/07 Hosts Overcommit State.ps1</href>
</plugin>
<plugin>
<name>Hosts Dead LUN Path</name>
<description>Dead LUN Paths may cause issues with storage performance or be an indication of loss of redundancy</description>
<author>Alan Renouf, Frederic Martin</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/08 Hosts Dead LUN Path.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following hosts have an excessive amount of Inodes in use on the local ESXi filesystem. This can cause hosts to disconnect from vCenter and becoming completely unmanageable even locally, requiring a hard reboot. See <a href=`</description>
<author>Matthias Koehler</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/101 ESXi Inode Usage.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Failures</description>
<author>John Sneddon</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/105 Host Profile Compliance.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following hosts have certificates that will expire soon and will need to be replaced.</description>
<author>
</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/110 Host Certificate Expiration Check.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>See the Storage/SAN section of the <a href='https://www.vmware.com/resources/compatibility/search.php?deviceCategory=san' target='_blank'>VMware Compatibility Guide</a> or your array/storage vendor's documentation for the supported/recommended policy.</description>
<author>Doug Taliaferro</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/115 Host Multipath Policy.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following hosts are not using the specified power management policy. Power management may impact performance for latency sensitive workloads. For details see <a href='https://www.vmware.com/content/dam/digitalmarketing/vmware/en/pdf/techpaper/performance/Perf_Best_Practices_vSphere65.pdf' >Performance Best Practices for VMware vSphere 6.5</a></description>
<author>Doug Taliaferro</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/120 Power Management Policy.ps1</href>
</plugin>
<plugin>
<name>Host Swapfile datastores</name>
<description>The following hosts are in a cluster which is set to store the swap file in the datastore specified by the host but no location has been set on the host</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/16 Host Swapfile datastores.ps1</href>
</plugin>
<plugin>
<name>ESXi with Technical Support mode or ESXi Shell enabled</name>
<description>The following ESXi Hosts have Technical support mode or ESXi Shell enabled, this may not be the best security option, see here for more information: <a href='http://www.yellow-bricks.com/2010/03/01/disable-tech-support-on-esxi/' target='_blank'>Yellow-Bricks Disable Tech Support on ESXi</a>.</description>
<author>Alan Renouf</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/20 ESXi with Technical Support mode enabled.ps1</href>
</plugin>
<plugin>
<name>ESXi hosts which do not have Lockdown mode enabled</name>
<description>The following ESXi Hosts do not have lockdown enabled, think about using lockdown as an extra security feature.</description>
<author>Alan Renouf</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/21 ESXi hosts which do not have Lockdown mode enabled.ps1</href>
</plugin>
<plugin>
<name>Active Directory Authentication</name>
<description>Active Directory configuration and status for each host. (Domain: $ADDomainName, Admin Group: $ADAdminGroup, Display all results: $ADDisplayOK)</description>
<author>Bill Wall, Dan Barr</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/29 AD Authentication.ps1</href>
</plugin>
<plugin>
<name>NTP Name and Service</name>
<description>The following hosts do not have the correct NTP settings and may cause issues if the time becomes far apart from the vCenter/Domain or other hosts</description>
<author>Alan Renouf, Dan Barr</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/31 NTP Name and Service.ps1</href>
</plugin>
<plugin>
<name>Host Configuration Issues</name>
<description>The following configuration issues have been registered against Hosts in vCenter</description>
<author>Alan Renouf, Dan Barr</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/35 Host Configuration Issues.ps1</href>
</plugin>
<plugin>
<name>Host Alarms</name>
<description>The following alarms have been registered against hosts in vCenter</description>
<author>Alan Renouf, John Sneddon</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/36 Host Alarms.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMKernel issues were found, it is suggested all unknown issues are explored on the VMware Knowledge Base. Use the below links to automatically search for the string</description>
<author>Alan Renouf, Frederic Martin</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/44 VMKernel Warnings.ps1</href>
</plugin>
<plugin>
<name>Missing ESX(i) updates and patches</name>
<description>KB</description>
<author>Luc Dekens</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/46 Missing ESX patches.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following hosts do not have the correct Syslog settings which may cause issues if ESXi hosts experience issues and logs need to be investigated</description>
<author>Jonathan Medd, Dan Barr</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/51 Syslog Name.ps1</href>
</plugin>
<plugin>
<name>Hardware status warnings/errors</name>
<description>Details can be found in the Hardware Status tab</description>
<author>Raphael Schitz</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/53 Hardware status warnings-errors.ps1</href>
</plugin>
<plugin>
<name>Hosts with reboot required</name>
<description>The following hosts require a reboot.</description>
<author>Robert van den Nieuwendijk</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/57 Hosts with reboot required.ps1</href>
</plugin>
<plugin>
<name>Host Build versions in use</name>
<description>The following host builds are in use in this vCenter</description>
<author>Frederic Martin</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/67 Host OS Pivot Table.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Check VM per LUN dispatch and esxtop for very high values over {0}ms</description>
<author>Raphael Schitz, Frederic Martin</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/68 Disk Max Total Latency.ps1</href>
</plugin>
<plugin>
<name>Network redundancy lost</name>
<description>The following Hosts have lost network redundancy</description>
<author>Olivier TABUT</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/74 Host - Network Redundancy lost.ps1</href>
</plugin>
<plugin>
<name>Hosts with different hostname</name>
<description>The following hosts have a different hostname than their name in the vCenter Server. This might give troubles with HA.</description>
<author>Robert van den Nieuwendijk</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/75 Hosts with Different Hostnames.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following hosts have lost access to a volume. This may indicate a problem with your storage solution.</description>
<author>Robert van den Nieuwendijk, Jonathan Medd</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/77 Lost Access to Volume.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Not enough storage paths can effect storage availability in a FC SAN environment</description>
<author>Craig Smith</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/81 LUN Paths Check.ps1</href>
</plugin>
<plugin>
<name>Hosts not Connected or Alarms Disabled</name>
<description>Shows hosts not in service and those with alarms disabled.</description>
<author>Chris Monahan</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/30 Host/83 Hosts not Connected or Alarms Disabled.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Datastores which run out of space will cause impact on the virtual machines held on these datastores</description>
<author>Alan Renouf, Jonathan Medd</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/03 Datastore Information.ps1</href>
</plugin>
<plugin>
<name>Datastore Clusters with sDRS Disabled</name>
<description>The following Datastore Clusters either do not have sDRS enabled or it is set to manual</description>
<author>Shawn Masterson</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/115 Datastore Clusters with sDRS Disabled.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs are overriding the Datastore Cluster sDRS automation level</description>
<author>Shawn Masterson</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/116 sDRS VM Behavior not Default.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The Maximum number of VMs per datastore is 256, the following VMs are above the defined $NumVMsPerDatastore and may cause performance issues</description>
<author>Alan Renouf, Frederic Martin</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/34 Number of VMs per Datastore.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following datastores may be overcommitted, it is strongly suggested you check these</description>
<author>Alan Renouf</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/39 Datastore OverAllocation.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Datastores with Storage I/O Control Disabled can impact the performance of your virtual machines. Excludes {0}</description>
<author>Robert van den Nieuwendijk</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/59 Datastores with Storage IO Control Disabled.ps1</href>
</plugin>
<plugin>
<name>Datastores in Maintenance Mode</name>
<description>Datastore held in Maintenance mode will not be hosting any virtual machine, check the below Datastore are in an expected state</description>
<author>Frederic Martin</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/69 Datastores in Maintenance mode.ps1</href>
</plugin>
<plugin>
<name>Datastores with Alarms Disabled</name>
<description>The datastores will not generate alarms which may highlight problems with the datastore</description>
<author>John Sneddon</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/70 Datastores with Alarms Disabled.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>VSAN Datastore Capacity Report - Modified version from Alan Renouf & Jonathan Medd's Datastore Report</description>
<author>William Lam</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/990 VSAN Capacity Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>VSAN hosts approaching {0}% limit of {1} Disk Groups per host</description>
<author>William Lam</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/991 VSAN Configuration Maximum Disk Group Per Host Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>VSAN hosts approaching {0}% limit of {1} magnetic disks per Disk Group</description>
<author>William Lam</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/992 VSAN Configuration Maximum Magnetic Disks Per Disk Group Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>VSAN hosts approaching {0}% limit of {1} total magnetic disks in all Disk Groups per host</description>
<author>William Lam</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/993 VSAN Configuration Maximum Total Magnetic Disks In All Disk Groups Per Host Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>VSAN hosts approaching {0}% limit of {1} components per host. For more information please refer to Cormac Hogan's article <a href='http://cormachogan.com/2013/09/04/vsan-part-4-understanding-objects-and-components/' target='_blank'>Understanding Objects and Components</a></description>
<author>William Lam</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/994 VSAN Configuration Maximum Component Per Host Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>VSAN hosts approaching {0}% limit of {1} hosts per VSAN Cluster. For more information about enabling 16+ VSAN Host per VSAN Cluster please refer to William Lam's article <a href='http://www.virtuallyghetto.com/2014/03/required-esxi-advanced-setting-to-support-16-node-vsan-cluster.htmlhttp://cormachogan.com/2013/09/04/vsan-part-4-understanding-objects-and-components/' target='_blank'>Required ESXi advanced setting to support 16+ node VSAN Cluster</a></description>
<author>William Lam</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/995 VSAN Configuration Maximum Hosts Per Cluster Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>VSAN hosts approaching {0}% limit of {1} VMs per host</description>
<author>William Lam</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/996 VSAN Configuration Maximum VMs Per Host Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>VSAN hosts approaching {0}% limit of {1} VMs per VSAN Cluster</description>
<author>William Lam</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/40 Datastore/997 VSAN Configuration Maximum VMs Per Cluster Report.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following standard vSwitches have less than $vSwitchLeft left</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/50 Network/24 vSwitch with less than x Ports Free.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following Distributed vSwitch Port Groups have less than $vSwitchLeft left</description>
<author>Kyle Ruddy</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/50 Network/80 DvPG with less than x Ports Free.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>All security options for standard and distributed switches and port groups should be set to REJECT unless explicitly required, except for ForgedTrasmits which is required on vDS uplink port groups.</description>
<author>Justin Mercier, Sam McGeown, John Sneddon, Ben Hocker, Dan Barr</author>
<version>1.5</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/50 Network/98 vSwitch Security.ps1</href>
</plugin>
<plugin>
<name>Snapshot Information</name>
<description>
</description>
<author>Alan Renouf, Raphael Schitz</author>
<version>1.5</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/02 Snapshot Information.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>These may occur due to VCB issues, check <a href='http://kb.vmware.com/kb/1007331' target='_blank'>this article</a> for more details</description>
<author>Alan Renouf</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/04 Map disk region event.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have been created over the last {0} Days</description>
<author>Alan Renouf</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/09 Created or cloned VMs.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have been removed/deleted over the last {0} days</description>
<author>Alan Renouf</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/10 Removed VMs.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have a CPU or Memory Reservation configured which may impact the performance of the VM. Note: -1 indicates no reservation</description>
<author>Dan Jellesma</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/100 VMs with CPU or Memory Reservations.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following virtual machines are not configured to rotate logs at $RotateSize bytes and/or to store {0} logs.</description>
<author>Bob Cote</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/102 VM Logging.ps1</href>
</plugin>
<plugin>
<name>Find Phantom Snapshots</name>
<description>The following VM's have Phantom Snapshots</description>
<author>Mads Fog Albrechtslund</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/106 Find Phantom Snapshots.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have over {0} CPU(s) and may impact performance due to CPU scheduling</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/11 VMs with over CPU Count.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs are running an older version of Tools than is available on its Host (Max Shown: {0} Exceptions: {1})</description>
<author>Alan Renouf, Shawn Masterson</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/114 VM Tools Not Up to Date.ps1</href>
</plugin>
<plugin>
<name>VMs Ballooning or Swapping</name>
<description>Ballooning and swapping may indicate a lack of memory or a limit on a VM, this may be an indication of not enough memory in a host or a limit held on a VM, <a href='http://www.virtualinsanity.com/index.php/2010/02/19/performance-troubleshooting-vmware-vsphere-memory/' target='_blank'>further information is available here</a>.</description>
<author>Alan Renouf, Frederic Martin</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/12 VMs Swapping or Ballooning.ps1</href>
</plugin>
<plugin>
<name>Multi-writer</name>
<description>The following VMs have multi-writer parameter. A problem will occur in case of svMotion without reconfiguration of the applications which are using these virtual disks and also change of the VM configuration concerned. More information <a href='http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1034165'>here</a>.</description>
<author>Petar Enchev, Luc Dekens</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/120 Multi-writer.ps1</href>
</plugin>
<plugin>
<name>BusSharingMode - Physical and Virtual</name>
<description>The following VMs have physical and/or virtual bus sharing. A problem will occur in case of svMotion without reconfiguration of the applications which are using these virtual disks and also change of the VM configuration concerned.</description>
<author>Petar Enchev, Luc Dekens</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/121 BusSharingMode - Physical and Virtual.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following server VMs have disks in NonPersistent mode (excludes all desktop VMs). A problem will occur in case of svMotion without reconfiguration of these virtual disks.</description>
<author>Petar Enchev, Luc Dekens</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/122 NonPersistent Disks.ps1</href>
</plugin>
<plugin>
<name>VMs with configuration files (*.vmx, etc) isolated from their disks</name>
<description>The following VMs have their configuration files (*.vmx, etc) stored in a different datastore than their disks</description>
<author>Kristofor Hines</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/125 VMs with Isolated Configuration Files.ps1</href>
</plugin>
<plugin>
<name>Invalid or inaccessible VM</name>
<description>The following VMs are marked as inaccessible or invalid</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/13 Invalid or inaccessible VMs.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have been restarted by HA in the last {0} days</description>
<author>Alan Renouf</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/14 VMs restarted due to Guest OS Error.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following guests have less than {0} MB Free, if a guest disk fills up it may cause issues with the guest Operating System</description>
<author>Alan Renouf</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/19 Guests with less than X MB free.ps1</href>
</plugin>
<plugin>
<name>VMs on Ephemeral Portgroup</name>
<description>
</description>
<author>Tim Williams</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/200 VMs on ephemeral portgroup.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following lists all VMs with CPU hot plug {0} or Memory hot add {1}</description>
<author>Marc Bouchard</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/201 VMs Hot Add Configuration.ps1</href>
</plugin>
<plugin>
<name>Hardware CPU/MMU virtualization configuration</name>
<description>The following lists all VMs and their hardware CPU/MMU virtualization configuration</description>
<author>Marc Bouchard</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/202 VMs MMU Configuration.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs are not at the latest hardware version, you may gain performance enhancements if you convert them to the latest version</description>
<author>Alan Renouf</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/22 Checking VM Hardware Version.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs are not stored in folders consistent to their names (excluding those on datastores {0}), this may cause issues when trying to locate them from the datastore manually</description>
<author>Alan Renouf</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/25 VMs in inconsistent folders.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have No VMTools installed, for optimal configuration and performance these should be installed</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/26 No VM Tools.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have issues with VMTools, these should be checked and reinstalled if necessary</description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/27 VM Tools Issues.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have removable media connected (i.e. CD/Floppy), this may cause issues if this machine needs to be migrated to a different host</description>
<author>Alan Renouf, Frederic Martin</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/28 Removable Media Connected.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs are located on storage which is only accessible by 1 host, these will not be compatible with vMotion and may be disconnected in the event of host failure</description>
<author>Alan Renouf, Frederic Martin, Dan Barr</author>
<version>1.5</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/30 Single Storage VMs.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have high CPU RDY times, this can cause performance issues for more information please read <a href='http://communities.vmware.com/docs/DOC-7390' target='_blank'>This article</a></description>
<author>Alan Renouf</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/32 VM CPU Percent RDY.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have high CPU usage and may have rogue guest processes or not enough CPU resource assigned</description>
<author>Alan Renouf, Sam McGeown</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/33 VM CPU Usage.ps1</href>
</plugin>
<plugin>
<name>VM Alarms</name>
<description>The following alarms have been registered against VMs in vCenter</description>
<author>Alan Renouf</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/37 VM Alarms.ps1</href>
</plugin>
<plugin>
<name>Backup Garbage</name>
<description>The following VMs have snapshots left over from backup products. You may wish to investigate if these are still needed.</description>
<author>Alan Renouf, Frederic Martin, Dan Barr</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/40 VCB Garbage.ps1</href>
</plugin>
<plugin>
<name>VMs needing snapshot consolidation</name>
<description>The following VMs have snapshots that failed to consolidate. See <a href='http://blogs.vmware.com/vsphere/2011/08/consolidate-snapshots.html' target='_blank'>this article</a> for more details</description>
<author>Luc Dekens, Frederic Martin</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/45 VMs needing snapshot consolidation.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have have $diskformat provisioned vmdk(s)</description>
<author>David Chung</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/48 Find VM Disk Format.ps1</href>
</plugin>
<plugin>
<name>EVC Mismatch</name>
<description>List of VMs for which the EVC mode does not match the Host/Cluster. This can negatively impact performance.</description>
<author>Bill Wall</author>
<version>1.0</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/49 EVC Mismatch.ps1</href>
</plugin>
<plugin>
<name>VMs with CPU or Memory Limits Configured</name>
<description>The following VMs have a CPU or memory limit configured which may impact the performance of the VM. Note: -1 indicates no limit</description>
<author>Jonathan Medd</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/50 VMs with CPU or Memory Limits Configured.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following virtual machines have an installed OS that is different from the configured OS. This can impact the performance of the virtual machine.</description>
<author>Robert van den Nieuwendijk</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/54 Virtual Machines with incorrect OS Configuration.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Virtual machines with less hard disks than partitions. Probably they have more than one partition on a hard disk.</description>
<author>Robert van den Nieuwendijk</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/58 Virtual machines with less hard disks than partitions.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>May want to consider deleting VMs that have been powered off for more than {0} days</description>
<author>Adam Schwartzberg</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/60 Powered Off VMs.ps1</href>
</plugin>
<plugin>
<name>VMs by Operating System</name>
<description>The following Operating Systems are in use in this vCenter</description>
<author>Raymond</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/61 Guest OS Pivot table.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Certain kinds of hardware are unwanted on virtual machines as they may cause unnecessary vMotion constraints.</description>
<author>Frederic Martin</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/62 Unwanted Virtual Hardware.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>
</description>
<author>Cyril Epiney</author>
<version>1.2</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/620 CBT Status.ps1</href>
</plugin>
<plugin>
<name>Snapshots Oversize</name>
<description>VMware snapshots which are kept for a long period of time may cause issues, filling up datastores and also may impact performance of the virtual machine.</description>
<author>Raphael Schitz, Shawn Masterson</author>
<version>1.4</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/64 Snapshots Oversize.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following guest names do not match the name inside of the guest.</description>
<author>Frederic Martin</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/66 Misnamed VM.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>Check if all network cards are connected</description>
<author>Cyril Epiney</author>
<version>1.3</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/76 VM Network State.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>The following VMs have been reset over the last {0} days</description>
<author>James Scholefield</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/78 Reset VMs.ps1</href>
</plugin>
<plugin>
<name>VMs in uncontrolled snapshot mode</name>
<description>The following VMs are in snapshot mode, but vCenter isn't aware of it. See http://kb.vmware.com/kb/1002310</description>
<author>Rick Glover, Matthias Koehler, Dan Rowe</author>
<version>1.5</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/79 Find VMs in Uncontrolled Snapshot Mode.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>TaskEvent</description>
<author>Chris Monahan, but is a minor mod of two plugins by Raphael Schitz and Frederic Martin</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/60 VM/85 Snapshot Activity.ps1</href>
</plugin>
<plugin>
<name>
</name>
<description>This is a customizable report of RPO violations found in the vCenter event log.</description>
<author>Joel Gibson, based on work by Alan Renouf</author>
<version>0.7</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/70 Misc/108 SRM RPO Violations.ps1</href>
</plugin>
<plugin>
<name>Disconnecting from vCenter</name>
<description>Disconnect plugin</description>
<author>Alan Renouf</author>
<version>1.1</version>
<category>vSphere</category>
<href>https://raw.github.com/alanrenouf/vCheck-vSphere/master/Plugins/80 Finish/999 VeryLastPlugin Used to Disconnect.ps1</href>
</plugin>
</pluginlist>