0

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?

Nemo
  • 2,441
  • 2
  • 29
  • 63

2 Answers2

0

Pretty sure you can use a simple Powershell command like so:

get-vmmserver localhost | get-vm "vmname" | select Name, ComputerName, HostName | format-list

0

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/

Kyle Ruddy
  • 1,886
  • 1
  • 7
  • 5