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

Cris1

A Random
Member
VIP
Local time
12:05 AM
Messages
167
Location
Somewhere your not.
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 My Computer

At a glance

Microsoft Windows 7 Home Premium 64biti7-2600 3.40GHz 3.70 GHz8.00 GBGTX 970 Zotac Extreme Core Editon
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Intel , Gigabyte , NVIDIA
OS
Microsoft Windows 7 Home Premium 64bit
CPU
i7-2600 3.40GHz 3.70 GHz
Motherboard
Gigabyte Technology Co. LTD. Z68AP-D3
Memory
8.00 GB
Graphics Card(s)
GTX 970 Zotac Extreme Core Editon
Sound Card
(1) NVIDIA High Definition Audio (2) NVIDIA High Definitio
Monitor(s) Displays
SHARP AQUOS (Single Monitor)
Screen Resolution
1920x1080
Hard Drives
Western Digital 1TB, SAMSUNG 850 EVO 120GB
PSU
Seasonic X-650 GOLD
Case
Cooler Master K350
Cooling
Silverstone TD03-LITE
Keyboard
Steelseries Gaming Keyboard
Mouse
Logitech G502 Proteous Core
Internet Speed
10MBPS
Antivirus
Malwarebytes Anti-Malware
Browser
Google Chrome
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 My Computer

At a glance

Windows 7 Ultimate x64Intel Core 2 Duo 3 Ghz
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Gigabyte
OS
Windows 7 Ultimate x64
CPU
Intel Core 2 Duo 3 Ghz
Internet Speed
14,4 Mbps
Antivirus
F-Secure
Browser
Firefox 31
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 My Computer

At a glance

Microsoft Windows 7 Home Premium 64biti7-2600 3.40GHz 3.70 GHz8.00 GBGTX 970 Zotac Extreme Core Editon
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Intel , Gigabyte , NVIDIA
OS
Microsoft Windows 7 Home Premium 64bit
CPU
i7-2600 3.40GHz 3.70 GHz
Motherboard
Gigabyte Technology Co. LTD. Z68AP-D3
Memory
8.00 GB
Graphics Card(s)
GTX 970 Zotac Extreme Core Editon
Sound Card
(1) NVIDIA High Definition Audio (2) NVIDIA High Definitio
Monitor(s) Displays
SHARP AQUOS (Single Monitor)
Screen Resolution
1920x1080
Hard Drives
Western Digital 1TB, SAMSUNG 850 EVO 120GB
PSU
Seasonic X-650 GOLD
Case
Cooler Master K350
Cooling
Silverstone TD03-LITE
Keyboard
Steelseries Gaming Keyboard
Mouse
Logitech G502 Proteous Core
Internet Speed
10MBPS
Antivirus
Malwarebytes Anti-Malware
Browser
Google Chrome
open a text file
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64Intel Core 2 Duo 3 Ghz
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Gigabyte
OS
Windows 7 Ultimate x64
CPU
Intel Core 2 Duo 3 Ghz
Internet Speed
14,4 Mbps
Antivirus
F-Secure
Browser
Firefox 31
Back
Top