Enable LLDP on Windows Server

Install-WindowsFeature RSAT-DataCenterBridging-LLDP-Tools
Get-NetAdapter | Where-Object { $_.Name -like "*Ethernet*" -and $_.Status -eq 'Up' } | ForEach { Enable-NetLldpAgent -NetAdapterName $_.Name -Verbose }