Here is what My output looks like, It's just lease information where the host name is:
IPAddress ScopeId ClientId HostName AddressState
--------- ------- -------- -------- ------------
10.10.10.10 99.99.99.99 11-11-11-11-11-11 AL10 Active
Using this PowerShell script:
$hostname = "AL10"
$locationArray = @()
foreach ($Server in $DHServers){
$scope = Get-DHCPServerv4scope -ComputerName $Server.dnsname | Get-DHCPServerv4Lease -ComputerName $Server.dnsname | Where-Object HostName -like "$hostName*"
$locationArray += $scope
}
$locationArray
What I would like, is it just to output:
ScopeID Name
---------
Name
Goal is: Provide a .txt of hostnames, find the corresponding DHCP Server leases, then output the "name" of the ScopeID like when using Get-DHCPServerv4scope -ComputerName $Server.dnsname | Select-Object "name"
I used a hash table.
Then I called it in my
PSCustomObject