- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How can I find duplicate UUIDs in vCD?
I use Zerto to replicate customer VMs from one site to another, however Zerto "freaks out" when it finds different VMs with the same UUID in vCloud Director.
Zerto support found 2 VMs with the same UUID such as this one:
ID = 'urn:vcloud:vm:2ec418fe-23d0-4ff4-62ba-b5f72c347ceb'
I thus want to know if it is possible to find duplicate vCloud Director UUIDs for virtual servers? Can this be done in PowerShell?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
not sure of how to do that all inside powercli, but you could do something like:
get-civm | select name,id | export-csv -path c:\temp\uuid.csv
Then use excel to find the duplicates
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello.
You can try doing it like this.
Get-Civm | group-object Id | where {$_.count -gt 1}