Imagine about a situation where you cannot access your virtual machines through VM console and there is no RDP enabled and your Critical Application is Down .Recently I faced this challenge and was not able to open windows 2012 R2...
We have discussed about the SPBM and how to create SPBM on previous posts , today we are going to discuss about how can backup and restore the SPBM from Power CLI . Why we need backup or restore operation on SPBM Just...
In this Post sharing the Script to collect the Virtual Standard Switch Information from vSPhere power cli to CSV file . You can Modify the Location of the file to save and directly apply to vSPhere Cli Window or you...
This Post will help you to understand and create multiple port groups , Esxi host network details for complete environment . Note : Below commands are used on vCenter with One host , it can be used multiple servers environment...
This Post explain how can we generate an output contains , Total number of vCpu used in an vCenter Cluster , also it shows many vCPU used per Esxi hosts . If you have multiple Cluster it is very easy...
Check NTP Services status Get-VMHost | Get-VmHostService | Where-Object {$_.key -eq “ntpd”} Check Firewall exception configuration Get-VMHost | Get-VMHostFirewallException | where {$_.Name -eq “NTP client”} ...
List all virtual machines where CBT enabled Get-VM| Where-Object{$_.ExtensionData.Config.ChangeTrackingEnabled -eq $true} Check specific virtual machines where CBT enabled Get-VM “TEST-VM-01” | Where-Object{$_.ExtensionData.Config.ChangeTrackingEnabled -eq $true} List all virtuals machine where CBT disabled Get-VM| Where-Object{$_.ExtensionData.Config.ChangeTrackingEnabled -eq $false} Check specific virtual machines where...