Get-DHCPServerV4Scope | ForEach {

Get-DHCPServerv4Lease -ScopeID $_.ScopeID | where {$_.AddressState -like ‘*Reservation’}

} | Select-Object ScopeId,IPAddress,HostName,ClientID,AddressState | Export-Csv “c:\temp\Reservations.csv” -NoTypeInformation