Export list of VMs with Snapshots
get-vm | get-snapshot | select vm, name, description, created, sizegb | export-csv -path “c:\temp\file.csv” -notypeinformation
get-vm | get-snapshot | select vm, name, description, created, sizegb | export-csv -path “c:\temp\file.csv” -notypeinformation
This week i had been tasked with collecting lists of VMs that are tagged within certain vSphere tag categories and then compiling lists of their metrics so that service group owners can identify resource demand during testing. This information would also be useful if rightsizing your environment or planning new infrastructure. I used the following
Recently i had to go through tagging some VMs belonging to the same service group. Initially this is to speed up troubleshooting of performance issues within that service group but ultimately they will be used to assist with charge back to service groups/departments. This can be a very time consuming process when completed manually so