
Powershell
Powecli Tags, Customattributes, Notes
One of the main known issues in vCenter or even any object managements is the mess that can collected so fast if you are not managing your VM’s, Objects, so thoroughly, you see oldest objects […]
One of the main known issues in vCenter or even any object managements is the mess that can collected so fast if you are not managing your VM’s, Objects, so thoroughly, you see oldest objects […]
$Clusters = get-cluster $Result =@( Foreach ($Cluster in $Clusters) { $VMhosts = Get-VMHost -Location $Cluster foreach($VMhost in $VMhosts) { [pscustomobject]@{ “Host” = $VMhost.Name “Cluster Name” = $Cluster } } } ) $Result
HI All, Over the week i have prepared useful PowerCLi script that will help you to inform your End-users, IT teammates about existing snapshots on vCenter. In my environment, the vCenter filled with some custom […]