::Vista_Outlook_fix.BAT ::Written by: Joe L ::created: 12-27-07 ::updated: 1-7-07 :: ::Disables vistas autotuning ::The if statement detects if not ran as an administrator netsh interface tcp set global autotuninglevel=disabled @echo off If ERRORLEVEL 1 GOTO Label1 GOTO Label0 ::This is ran if the program detects an error 1 such as not running as administrator. :Label1 @echo You need to run as this as an administrator. Press a key to close this box and right click on this file. Then click "Run as Administrator".Then click continue on the box that pops up. pause Exit ::This is ran if the program runs successfully. :Label0 @echo This program has run successfully. If you still have problems please contact the helpdesk at (507)-389-6654. pause exit