I have a windows server 2016 with dhcp, i would to see a dhcp lease on HA its possible?
You make so sense. Are you wanting to know what dhcp address that your windows server has? Or are you wanting to see what dhcp leases your windows server has handed out.
I want to see the leases from my dhcp (the dhcp role is active on server2016)
Using PowerShell:
Get-DhcpServerv4Lease -ComputerName "whatever your server is named" -ScopeId x.x.x.x
x.x.x.x would be the whater scope you have used. Like 192.168.1.0
If you do this on the server itself:
Get-DhcpServerv4Lease -ScopeId 192.168.1.0
is enough
This will give you all active leases.
For more information: Get-DhcpServerv4Lease (DhcpServer) | Microsoft Docs
i now powershell for them, but this is integrable on dashboard HA?
With ssh server installed on the windows machine and a commandline HA sensor it should be possible.
This way is is it doable, do you have any examples I can see?