I want to change VM setting in my own guest VM. I can connect to vCenter but I'm not detecting my own VM.
What is a simple way to get the VM name?
I want to change VM setting in my own guest VM. I can connect to vCenter but I'm not detecting my own VM.
What is a simple way to get the VM name?
Pretty sure you can use a simple Powershell command like so:
get-vmmserver localhost | get-vm "vmname" | select Name, ComputerName, HostName | format-list
PowerCLI allows you to do this simply with:
Connect-VIServer -Server vcenterservername.fqdn
Get-VM -Name vmname
You can also just connect to the web client and perform a search at: https://vcenterservername.fqdn/