I have a script that can list all the snapshots on vcenter
get-vm | get-snapshot | Select-Object -Property vm,created,sizeGB,name,description | Export-Csv -Path 'C:\Scripts\snapshot\snapshots.csv' -NoTypeInformation -Delimiter ";"
is it possible to add cluster information into it?