2014-09-03 2 views
2

Windows 2008 r2 용 Get-NetAdapterAdvancedProperty와 같은 네트워크 어댑터의 고급 속성을 볼 수있는 방법이 있습니까?Get-NetAdapterAdvancedProperty와 같은 네트워크 어댑터의 고급 속성보기

+0

당신은 (Windows 7에서 시도) 네트워크 어댑터 cmdlet을 추가하는 표시되지 않습니다 서버에 파워 쉘 4.0 2008 년 – Matt

+0

업그레이드 4.0 PowerShell을 업그레이드 할 수있다. [Get-NetAdapterAdvancedProperty] (https://technet.microsoft.com/en-us/library/jj130901%28v=wps.630%29.aspx)에 대한 설명서는 Windows Server 2012 및 Windows 8에 명시 적으로 적용됩니다. – Kim

답변

1

나는이 같은 WmiObject Class, 뭔가 함께 갈 생각 :

Get-WmiObject -Class Win32_NetworkAdapterConfiguration | Format-List * 

, 당신은 몇 가지 정보 herehere을 찾을 수있는 네트워크 adapater를 구성합니다.

0

JumboPackets를 활성화/비활성화하기 위해 Windows Server 2008에서 동일한 문제가 발생했습니다. 나는이 스크립트를 똑같이 작성했다. 그것은 내 테스트 VM을 잘 작동합니다.

프로덕션 환경에서 사용하기 전에 테스트 시스템에서 테스트하십시오. 당신이 그 기능을 찾고 있다면

$TargetKeys = Get-ChildItem -Path 'HKLM:\SYSTEM\ControlSet001\Control\Class\' -Recurse -ErrorAction SilentlyContinue 

ForEach($TestKey In $TargetKeys) 
{ 
    $KeyName = $TestKey.Name.Replace("HKEY_LOCAL_MACHINE","HKLM:") 
    $SubKeys = Get-ChildItem -Path $KeyName -ErrorAction SilentlyContinue 
    ForEach($SubKey In $SubKeys) 
    { 
     If($SubKey -ne $null -or $SubKey -ne '') 
     { 
      $ErrorActionPreference = 'SilentlyContinue' 
      $ItemKey = $SubKey.Name.Replace("HKEY_LOCAL_MACHINE","HKLM:") 
      $PropNames = ForEach($PropName In (Get-ItemProperty -Path $ItemKey -ErrorAction SilentlyContinue | GM -MemberType Properties -ErrorAction SilentlyContinue | Select Name)) { $PropName.Name } 
      If($PropNames -contains '*JumboPacket') 
      { 
       # Set to 9014 for enabling and 1514 for disabling 
       Set-ItemProperty -Path $ItemKey -Name '*JumboPacket' -Value 9014 -ErrorAction SilentlyContinue 
       If($?) 
       { 
        Write-Host "'Jumbo Packets' enabled successfully for Network card." -ForegroundColor Green 
       } 
       Else 
       { 
        Write-Host "Error while enabling 'Jumbo Packets' for Network card." -ForegroundColor Red 
       } 
      } 
      $ErrorActionPreference = 'Continue' 
     } 
    } 
}