Realtek PCIe GBE Family Controller {Best Settings},help.


  1. Posts : 167
    Microsoft Windows 7 Home Premium 64bit
       #1

    Realtek PCIe GBE Family Controller {Best Settings},help.


    Hey, it's me Cris1

    Today I need the best settings for Realtek PCIe GBE Family Controller so I can play online games with out lag , specifically I want speed.

    Thanks!
      My Computer


  2. Posts : 33
    Windows 7 Ultimate x64
       #2

    Code:
    :: Script that finds the enabled network adapter of a certain name and sets the default gateway or TCP/IP Parameters
    
    @Echo Off
    SETLOCAL EnableDelayedExpansion
    
    set networkCardKey=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}
    set enabledKey=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\
    set interfaceKey=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\
    
    for /f "tokens=* skip=2" %%i in ('reg query "%networkCardKey%"') do (
    
      set I=%%i
     
      if "!I:~0,4!"=="HKEY" (
        if not "!I:~-10!"=="Properties" (
          for /f "tokens=3*" %%A in ('reg query "%%i" /v DriverDesc') do set name=%%A %%B
          for /f "tokens=3" %%C in ('reg query "%%i" /v DeviceInstanceID') do set dev=%%C
          for /f "tokens=3" %%D in ('reg query "%%i" /v NetCfgInstanceId') do set guid=%%D
           for /f "tokens=3" %%E in ('reg query "%enabledKey%!dev!" /v ConfigFlags') do set flag=%%E
           if "!flag!"=="0x0" (
             set __adapter_!I:~-4!.name=!name!
             set __adapter_!I:~-4!.guid=!guid!
           )
         )
      )
    )
    
    set targetName=Realtek PCIe GBE Family Controller
    
    set guid=
    set testguid=
    
    for /f "tokens=2* delims=.=" %%A in ('set __adapter_') do (
      if "%%A"=="guid" (
        set testguid=%%B
      )
      if "%%A"=="name" (
        if "%%B"=="%targetName%" (
           set guid=!testguid!
         )
      )
    )
    
    if defined guid (
       reg add %interfaceKey%!guid! /v TcpAckFrequency /t REG_DWORD /d 0x1 /f
       reg add %interfaceKey%!guid! /v TCPNoDelay /t REG_DWORD /d 0x1 /f
       reg add %interfaceKey%!guid! /v TcpDelAckTicks /t REG_DWORD /d 0x0 /f
    ) else (
      echo "Not Found!"
    )
    
    set guid=
    
    ENDLOCAL
    Echo On
    save this as .bat file and run it as Administrator
    restart PC
      My Computer


  3. Posts : 167
    Microsoft Windows 7 Home Premium 64bit
    Thread Starter
       #3

    KEiGHT said:
    Code:
    :: Script that finds the enabled network adapter of a certain name and sets the default gateway or TCP/IP Parameters
    
    @Echo Off
    SETLOCAL EnableDelayedExpansion
    
    set networkCardKey=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}
    set enabledKey=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\
    set interfaceKey=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\
    
    for /f "tokens=* skip=2" %%i in ('reg query "%networkCardKey%"') do (
    
      set I=%%i
     
      if "!I:~0,4!"=="HKEY" (
        if not "!I:~-10!"=="Properties" (
          for /f "tokens=3*" %%A in ('reg query "%%i" /v DriverDesc') do set name=%%A %%B
          for /f "tokens=3" %%C in ('reg query "%%i" /v DeviceInstanceID') do set dev=%%C
          for /f "tokens=3" %%D in ('reg query "%%i" /v NetCfgInstanceId') do set guid=%%D
           for /f "tokens=3" %%E in ('reg query "%enabledKey%!dev!" /v ConfigFlags') do set flag=%%E
           if "!flag!"=="0x0" (
             set __adapter_!I:~-4!.name=!name!
             set __adapter_!I:~-4!.guid=!guid!
           )
         )
      )
    )
    
    set targetName=Realtek PCIe GBE Family Controller
    
    set guid=
    set testguid=
    
    for /f "tokens=2* delims=.=" %%A in ('set __adapter_') do (
      if "%%A"=="guid" (
        set testguid=%%B
      )
      if "%%A"=="name" (
        if "%%B"=="%targetName%" (
           set guid=!testguid!
         )
      )
    )
    
    if defined guid (
       reg add %interfaceKey%!guid! /v TcpAckFrequency /t REG_DWORD /d 0x1 /f
       reg add %interfaceKey%!guid! /v TCPNoDelay /t REG_DWORD /d 0x1 /f
       reg add %interfaceKey%!guid! /v TcpDelAckTicks /t REG_DWORD /d 0x0 /f
    ) else (
      echo "Not Found!"
    )
    
    set guid=
    
    ENDLOCAL
    Echo On
    save this as .bat file and run it as Administrator
    restart PC
    before I do this what does this do?
      My Computer


  4. Posts : 33
    Windows 7 Ultimate x64
       #4

    open a text file
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 06:19.
Find Us