Hi,
Thanks for the replies and pointing me in the right direction. I have to look further into VM Report vCheck very cool.
I ended up using powershell. I obtained the info from: ->http://www.virtu-al.net/script-list/#VirtualMachines
Get-VIEvent -maxsamples 10000 -Start (Get-Date).AddDays(-14) |where {$_.Gettype().Name-eq "VmRemovedEvent"} |Sort CreatedTime -Descending |Select CreatedTime, UserName,FullformattedMessage
So thanks to Alan Renouf.
Cheers
Jeff