Summary: Use Windows PowerShell and the Active Directory module to get a listing of computers and IP addresses from Active Directory.
How can I get a list of all computers, the operating system version, the service pack, and the IP address from Active Directory?
Use the Get-ADComputer cmdlet and specify the ipv4Address, OperatingSystem, and OperatingSystemServicePack properties, as shown here.
Get-ADComputer -Filter * -Properties ipv4Address, OperatingSystem, OperatingSystemServicePack | Format-List name, ipv4*, oper*
The above command is not working in W Server 2008. May I request you to please give me further update. Thanks in advance