How to get VM creation date PowerCLI script

By |2016-10-26T12:43:04+01:00December 23rd, 2014|Vmware|

I had a customer who wanted to know who created the vm and when so i started to look on the internet to see if anyone wrote a script already and some one did. so thank you Matt Bradford here is his script and i tested on my vmware vsphere 5.5 U1 home lab and worked without erros #Enter your vCenter Host below $vcenter = "your_vcenter_server" #Enter the CSV file to be created $csvfile = "VM_Birthdays.CSV" ################################ #Load the VMware Powershell snapin if the script is being executed in PowerShell Add-PSSnapin VMware.VimAutomation.Core -ErrorAction 'SilentlyContinue' #Connect to the vCenter server defined [...]

Go to Top