Query Orphan/Old/Off/Snapshot VMDKs
find -iname "*-flat.vmdk" -mtime +7 -ls you could identify vmdk files older then 7 days that have not been modified and are either off or orphaned. or find -iname "*-delta.vmdk" -mtime +7 -ls to find old snapshots
More »