
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-18-2016 11:31 PM
When you click on a VMware ESXi host currently towards the bottom it shows a report like the picture that I have attached
I have written the following report to grab VMware Guest details which I want to show from all of my VMware ESXi's that are being scanned, however, how do I make the green up/down dot show and how do I make the VMware Guest name a link to the object if it exists in Lansweeper as shown in the picture?
Thanks,
Cam
I have written the following report to grab VMware Guest details which I want to show from all of my VMware ESXi's that are being scanned, however, how do I make the green up/down dot show and how do I make the VMware Guest name a link to the object if it exists in Lansweeper as shown in the picture?
Select Top 1000000 tblVmwareGuest.Name As Guest,
Ceiling(tblVmwareGuest.Memory / 1024) As [Memory (GB)],
tblVmwareGuest.CpuCount,
tblVmwareGuest.IsRunning As State,
tblVmwareGuest.lastchanged,
Case When tblVmwareGuest.IsRunning = 'poweredOff' Then 'red'
End As foregroundcolor,
tblAssets.AssetName As [ESXi Name]
From tblVmwareGuest
Inner Join tblAssets On tblAssets.AssetID = tblVmwareGuest.AssetID
Where tblVmwareGuest.Name Not Like 'hmcvm%'
Order By Guest
Thanks,
Cam
Labels:
- Labels:
-
Report Center
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2017 05:31 PM
I am trying to figure out something similar.... I cant believe there hasn't been a response.
