top of page

PowerShell - Discover ALL Get-NetAdapter info from list of servers/computers

  • Writer: Jon Boyette
    Jon Boyette
  • Jan 11, 2022
  • 1 min read

Save as a self named.ps1, populate c:\temp\servers.txt with servers to discover ALL Network card information out to C:\temp\DomainComputerNICInfo.csv

#Add all Computers 1 per line in c:\temp\servers.txt, Gives all CimSession info every server that is online.

$A = Get-Content C:\temp\servers.txt

Get-netadapter -Physical -CimSession $A | Export-CSV C:\temp\DomainComputerNICInfo.csv -NoTypeInformation


 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page