Hyper-V
How to find the Hyper-V host name of a guest VM
Reading Time: < 1 minuteIn all of our environments we all know EXACTLY what’s going on, where it’s going on, and where everything is right? Chances are that’s not true, and like most of us, especially in large home-grown development environments there are servers sitting under peoples desks, in some random closets, etc. Here’s an easy way to find out on what Hyper-V host a guest resides.
(get-item “HKLM:\SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters”).GetValue(“HostName”)
Pop that into powershell and you’re good to go!
Hope I’ve made your day at least a little bit easiser.
Thanks,