vmware
Reset the vSphere Memory Limit using PowerCLI
If you’ve ever migrated clusters or joined VM’s from a different cluster, I’m sure you’ve run into the bug where memory limits are set on the VM’s automatically. To remove this, simply use the powerful oneliner below! Get-VM | Get-VMResourceConfiguration | where {$_.MemLimitMB -ne ‘-1’} | Set-VMResourceConfiguration -MemLimitMB $null
Tags: PowerCLI, PowerShell, vmware
Posted in Cloud, PowerCLI, Powershell, vmware | No Comments »
List the Hostname, Cluster Name, Memory Size, CPU Sckets and CPU Cores of each ESX host using PowerCLI
List the Hostname, Cluster Name, Memory Size, CPU Sckets and CPU Cores of each ESX host using PowerCLI $myCol = @() ForEach ($Cluster in Get-Cluster) { ForEach ($vmhost in ($cluster | Get-VMHost)) { $VMView = $VMhost | Get-View $VMSummary = “” | Select HostName, ClusterName, MemorySizeGB, CPUSockets, CPUCores $VMSummary.HostName = $VMhost.Name $VMSummary.ClusterName = $Cluster.Name $VMSummary.MemorySizeGB […]
Tags: PowerCLI, PowerShell, vmware
Posted in Cloud, PowerCLI, Powershell, vmware | 1 Comment »
VMworld 2012 Shuttle Schedule!
Looking for the Hotel Shuttle Schedule for VMworld 2012 San Francisco?!?!? Look no further! as we’ve got it! Get it here! vmworld_2012_shuttle_hotel
Posted in Cloud, vmware | No Comments »
vmware vShieldApp versus vShieldEdge – the difference explained!
One of my colleagues today called me to ask what the difference was between vShieldApp and vShieldEdge, as he was looking at a competing firewall (Juniper VGW). For the life of me I could not explain it clearly as vmware’s website isn’t that clear about it either. I reached out to my trusted vmware SME […]
Tags: cloud, vmware, vshield, vshieldapp, vshieldedge
Posted in Cloud, Networking, vmware | No Comments »