Skip to content

Instantly share code, notes, and snippets.

@rchaganti
Created November 24, 2014 12:05
Show Gist options
  • Select an option

  • Save rchaganti/88f1ed7c7f2b815fc7ea to your computer and use it in GitHub Desktop.

Select an option

Save rchaganti/88f1ed7c7f2b815fc7ea to your computer and use it in GitHub Desktop.
Get-PENetworkAdapter
#Download the module from http://en.community.dell.com/techcenter/systems-management/w/wiki/7727.powershell-cmdlets-for-poweredge-servers
Import-Module DellPEPowerShellTools
$idracSession = New-PEDRACSession -Credential (Get-Credential) -IPAddress 192.168.100.1
$NicView = Get-CimInstance -ResourceUri 'http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_NICView' -Namespace root\dcim -CimSession $idracSession
$NicView | Select DeviceDescription, DeviceNumber, EFIVersion, MediaType
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment