Subtle Coolness · chrono index · alpha index


Find a Computer on the Active Directory With Just an IP Address

by William Jackson on 2011-02-17

This is PowerShell.

import-module activedirectory get-adcomputer -filter * -properties ipv4address | where {$_.ipv4address -eq '10.0.0.1'}