@echo off echo. echo Copy config file . echo. if exist C:\WINNT\system32\drivers\etc\hosts goto ks_2k if exist C:\WINDOWS\system32\drivers\etc\hosts goto ks_xp if exist C:\WINDOWS\hosts goto ks_9x echo. echo 检测不到当前操作系统hosts文件的位置! echo. Goto End :ks_2k echo. echo OS is windows 2000 or NT. echo. Goto End :ks_xp echo. echo OS is windows XP or 2003. echo. if exist C:\WINNT\system32\drivers\etc\hosts.bak del C:\WINNT\system32\drivers\etc\hosts.bak copy Goto End :ks_9x echo. echo OS is windows 9x. echo. Goto End :End @echo on