You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to add the name of the host when the machine is virtual (to the Info tab under Configuration)? I think this solution may only work for HyperV hosts, but maybe someone will know how to get it for VMWare as well.
Would it be possible to add the name of the host when the machine is virtual (to the Info tab under Configuration)? I think this solution may only work for HyperV hosts, but maybe someone will know how to get it for VMWare as well.
DECLARE @value VARCHAR(100)
EXEC master..xp_regread
'HKEY_LOCAL_MACHINE',
'SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters',
'PhysicalHostName',
@value = @value OUTPUT
SELECT TOP 1 @value AS PhysicalHostName
The text was updated successfully, but these errors were encountered: