Ako se koristi Windows Server 2003 R2 i Vista na radnim stanicama može se javiti izuzetno usporenje APP-a koje se rešava tako što se za Vistu napravi posebna skripta koju je potrebno uraditi samo jednom (odnosno svaki put ako se radi nova instalacija Viste).
Skripta izgleda ovako:
@echo off
Echo Interface settings before this setup…
netsh interface tcp show global
netsh interface tcp set global autotuning=disabled
netsh interface tcp set global autotuninglevel=disabled
netsh interface tcp set global rss=disabled
Echo Restart the machine for the setting to take effect….
Pause