echo Install additional settings echo. REM Some workarounds for weird settings and weird Windows bugs REM Workaround for Windows computers that deactivated some LAN interfaces autoconfig echo Enable LAN auto-configuration... netsh lan set autoconfig enabled=yes interface="*" echo. REM Workaround for Windows computers that don't want to forget wrong settings (some winxp) echo Reconnect LAN interface... netsh lan reconnect echo. REM Workaround for Windows computers with wrong IP settings echo Reset interface IP settings... netsh int ip reset resetlog.txt REM Disable Microsoft Link Layer Topology Discovery (LLTD) on all network adapters, because LLTD causes trouble in big networks with network layer 2 security (Microsoft-LLTD-MAC-adresses and too many ARP requests per second) REM netcfg.exe path is not included in program executed command line's search path (at least on 64 bit systems) REM The solution is to add "%SystemRoot%\sysnative\" path, see REM http://serverfault.com/qu ... m-that-calls-the-system-a echo Uninstall LLTD client protocol driver causing trouble in big networks... netcfg.exe -u ms_lltdio echo. echo Uninstall LLTD server protocol driver causing trouble in big networks... netcfg.exe -u ms_rspndr echo. echo Setting up automatic proxy-server script for saving data traffic... reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /f /t "REG_DWORD" /d "0x00000001" reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "AutoConfigURL" /f /t "REG_SZ" /d "http://www.uni-marburg.de/proxy.pac" echo Please check results, then press any key netsh lan show interfaces pause