标题: [系统相关] 批处理怎样关闭xp系统服务? [打印本页]
作者: shuaige100 时间: 2010-10-15 17:21 标题: 批处理怎样关闭xp系统服务?
我的是家里用笔记本,xpsp3的,想找个关闭无用服务的批处理,本论坛能开发个这个一定更火,360关闭的还不够多,比如我电脑不用打印机等的,而且说明还不够详细
作者: hfg1977 时间: 2010-10-15 18:14
服务优化一找一大堆,
这是我自己写的:- @echo off
- setlocal enabledelayedexpansion
-
- ::查看已运行的服务
- echo.查看已运行的服务...
- sc query type^= service|findstr "SERVICE_NAME: DISPLAY_NAME:">tmpinsrv.txt
- start "notepad.exe" tmpinsrv.txt
-
- :: 枚举所有服务
- cd.>tmpsrv.txt
- sc query type^= service state^= all|findstr /r /C:"SERVICE_NAME:">>tmpsrv.txt
- echo 正在运行 稍后...
- ::设置启动类型:关闭
- for /f "tokens=2 delims= " %%a in (tmpsrv.txt) do sc config %%a start= DISABLED>nul
- ::for /f "tokens=2 delims= " %a in (tmpsrv.txt) do sc config %a start= AUTO>nul
-
- ::打开必要的服务:
- (rem 显示名: remote Procedure Call (RPC)
- sc config RpcSs start= AUTO
- rem 显示名: Plug and Play (随插随用)
- sc config PlugPlay start= AUTO
- sc config AudioSrv start= AUTO
- sc config Eventlog start= AUTO
- rem 显示名: Network Connections
- sc config Netman start= DEMAND
- rem 显示名: Telephony (电话语音)
- sc config TapiSrv start= DEMAND
- rem 显示名: Remote Access Connection Manager(PPPOE)
- sc config RasMan start= DEMAND
- rem 显示名: Windows Installer (Windows 安装程序)
- sc config MSIServer start= DEMAND
- rem 显示名: Telnet
- sc config TlntSvr start= DEMAND
- rem 显示名: NVIDIA Display Driver Service (N显卡驱动)
- sc config NVSvc start= AUTO
- rem 显示名: Kaspersky Internet Security 7.0 (卡巴斯基)
- sc config AVP start= DEMAND
- )>nul
-
- set /p "choice=需要打印服务?(y|n)"
- if /i "%choice%"=="y" (sc config Spooler start= AUTO)
- set /p "choice=需要使用扫描仪/摄像头?(y|n)"
- if /i "%choice%"=="y" (sc config stisvc start= DEMAND)
- set /p "choice=需要DCOM/COM+服务?(y|n)"
- if /i "%choice%"=="y" (sc config DcomLaunch start= AUTO & sc config EventSystem start= DEMAND)
- set /p "choice=IP地址自动获得(DHCP)?(y|n)"
- if /i "%choice%"=="y" (sc config dhcp start= AUTO)
- set /p "choice=ASP.NET 玩大型网游?(y|n)"
- if /i "%choice%"=="y" (sc config aspnet_state start= DEMAND)
-
- echo 任务结束
- pause>nul
- del /q tmpsrv.txt tmpinsrv.txt
- exit /b
复制代码
作者: shuaige100 时间: 2010-10-15 18:44 标题: 回复 2楼 的帖子
感觉数量太少了,玩大型网游?是什么?
作者: cjiabing 时间: 2010-10-15 20:54 标题: 回复 3楼 的帖子
2L的已经够清晰了,你还想怎么样?优化系统服务的网上大把多,随便搜索都可以下载的!~
不过奉劝还是自己手动去优化甚至不动为妙!~
作者: Batcher 时间: 2010-10-15 22:29
Google搜索WinXP服务详解
里面详细介绍了每个服务的作用、是否建议关闭等
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |