Skip to content

Instantly share code, notes, and snippets.

@kmondesir
Last active July 3, 2021 14:17
Show Gist options
  • Save kmondesir/792ca30a770c662ba1c6f2e19d2604a1 to your computer and use it in GitHub Desktop.
Save kmondesir/792ca30a770c662ba1c6f2e19d2604a1 to your computer and use it in GitHub Desktop.
Get the vCenter Server from the virtual machine name
# https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/get-vCenter-name-for-VM/td-p/318609
New-VIProperty -Name vCenterServer -ObjectType VirtualMachine -Value {$Args[0].Uid.Split(":")[0].Split("@")[1]}
Get-vm YourVMName | Select-Object -Property Name,vCenterServer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment