cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
danielm
Champion Sweeper II
I have a hyperv server 2012r2 that is hosting a unix guest os.
on the SERVER asset in lansweeper the guest list shows the name status and memory. The name itself is not the same as the "guest" though.
On the Guest it shows as a model:Virtual Machine, and some stats, but it does not link back to the hyperv host machine.
The name of it does not match exactly though.
Not a major issue but is this something I can fix up myself?

1 REPLY 1
Esben_D
Lansweeper Employee
Lansweeper Employee
I did a quick check on this and the functionality to automatically link Linux or UNIX Hyper-v guests is not yet in Lansweeper.

I've linked your topic to the existing feature request. As a workaround, you could use the following report:

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.IPAddress,
tblAssets.Lastseen,
tHost.AssetName As [Hyper-V host]
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join TblHyperVGuestNetwork
On tblAssets.Mac = TblHyperVGuestNetwork.MacAddress
Inner Join tblHyperVGuest On tblHyperVGuest.hypervguestID =
TblHyperVGuestNetwork.HyperVGuestID
Left Join tblAssets tHost On tHost.AssetID = tblHyperVGuest.AssetID
Where tblAssetCustom.State = 1
Order By [Hyper-V host]


Theoretically, you can also fiddle with the database to get it working.