Link to home
Start Free TrialLog in
Avatar of collages
collagesFlag for United States of America

asked on

How to get all network adapter information for domain workstations?

I'm looking for a way to get all network adapter information via powershell or a free 3rd party utility.  Anyone have any suggestions?
Avatar of Joshua Grantom
Joshua Grantom
Flag of United States of America image

what information are you wanting?
Avatar of Stampel
Stampel

You can list all adapters from command line using :
netsh interface ipv4 show interfaces
netsh interface ipv4 show ipaddresses
If you prefer you can use powershell Get-NetAdapter cmdlet that will return name, interface description, index number, and status of all the network adapters present on your system.
Look there : http://blogs.technet.com/b/heyscriptingguy/archive/2014/01/12/weekend-scripter-use-powershell-to-identify-network-adapter-characteristics.aspx
Get-NetAdapter only works in Server 2012 or Windows 8. Depending on what info you are needing I can give you a script.
Avatar of collages

ASKER

I should have been clearer.

I'm looking to generate a report of all workstations on the domain and their assigned IPv4 addresses, default gateways, and DNS entries.
ASKER CERTIFIED SOLUTION
Avatar of Stampel
Stampel

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This question has been classified as abandoned and is closed as part of the Cleanup Program. See the recommendation for more details.