|
1.更改服务配置之前,请关闭所有正在运行的应用程序,以增强稳定性。 2.这些设置是针对个人用户,且没有特殊需要的用户设计的。 3.如果你的电脑的一些特别的设备需要某一服务,请进入服务自行设置。 4.支持XP\Vista,如有错误请记录后及时反馈.谢谢..
可对系统进行如下配置:
1 安全配置(推荐); 2 网络共享配置(局域网用户); 3 游戏配置; 4 发烧型配置; 5 恢复WINDOWS默认配置;
截图“图一”如下:
截图“图二”如下:

源代码如下:
@echo off :start cls color F0 title 服务优化 echo. echo echo --------------------------------------------------------- echo. echo echo echo. echo 1 安全配置(推荐); echo 2 网络共享配置(局域网用户); echo 3 游戏配置; echo 4 发烧型配置; echo 5 恢复WINDOWS默认配置; echo Q 退出 echo. echo --------------------------------------------------------- echo echo. set /p choice= 请作出选择: if /i "%choice%"=="1" goto safe if /i "%choice%"=="2" goto work if /i "%choice%"=="3" goto game if /i "%choice%"=="4" goto hot if /i "%choice%"=="5" goto restore if /i "%choice%"=="Q" goto end goto start
[1] [2] [3] [4] 下一页
:safe cls echo. echo. echo 正在配置安全型配置...... sc config Alerter start= disabled>nul sc config ALG start= demand>nul sc config AppMgmt start= demand>nul sc config wuauserv start= disabled>nul sc config BITS start= disabled>nul sc config ClipSrv start= disabled>nul sc config EventSystem start= demand>nul sc config COMSysApp start= demand>nul sc config Browser start= disabled>nul sc config CryptSvc start= auto>nul sc config DcomLaunch start= auto>nul sc config Dhcp start= auto>nul sc config TrkWks start= demand>nul sc config MSDTC start= demand>nul sc config Dnscache start= auto>nul sc config ERSvc start= disabled>nul sc config Eventlog start= auto>nul sc config FastUserSwitchingCompatibility start= demand>nul sc config FAX start= disabled>nul sc config helpsvc start= disabled>nul sc config HidServ start= disabled>nul sc config HTTPFilter start= demand>nul sc config ImapiService start= demand>nul sc config CiSvc start= disabled>nul sc config SharedAccess start= auto& [1] [2] [3] [4] [5] [6] [7] [8] 下一页
|