vmware
VMworld 2012 Day 2 Observations!
There are pro’s and con’s of going to an event of this magnitude, some of which is to be expected, some of which is not. That being said, here are my VMworld 2012 Day 2 Observations. Food – They seem to have heard the griping over at socialcast.com where every single person seems to agree […]
Tags: cloud, vmware, vmworld2012
Posted in Cloud, PowerCLI, Powershell, vmware, VMworld2012 | No Comments »
VMworld 2012 Day 1 Observations
There are pro’s and con’s of going to an event of this magnitude, some of which is to be expected, some of which is not. That being said, here are my VMworld 2012 Day 1 Observations. People – holy crap is there a lot of people here. Seemingly double or triple VMworld 2008 Las Vegas. […]
Tags: vmware, VMworld, vmworld2012
Posted in vmware, VMworld2012 | No Comments »
List the vMotion IP Address and Subnet mask for each vSphere ESX host using PowerCLI
I ran into a couple misconfigurations, so I wrote a quick online to audit all of my host configurations without having to use the dreaded host profiles get-vmhost | % {(get-view $_.id).config.vmotion.ipconfig} | select ipaddress, subnetmask
Tags: PowerCLI, PowerShell, vmware
Posted in Cloud, PowerCLI, Powershell, vmware | 1 Comment »
List the Path and Path State for every vSphere Datastore using PowerCLI
List the Path and Path State for every vSphere Datastore and then output to CSV using PowerCLI $initalTime = Get-Date $filepath = “C:\tmp” $filename = “LunPathState” $date = Get-Date ($initalTime) -uformat %Y%m%d $time = Get-Date ($initalTime) -uformat %H%M Write-Host “$(Get-Date ($initalTime) -uformat %H:%M:%S) – Starting” $AllHosts = Get-VMHost | Sort Name $reportLunPathState = @() Write-Host […]
Tags: PowerCLI, PowerShell, vmware
Posted in Cloud, PowerCLI, Powershell, vmware | 14 Comments »