【Windows】为节省系统资源,停掉不必要的服务

1.windows服务名称(注册表名称)和显示名称对照表如下:

<

显示名称 状态 服务名称
Application Management demand AppMgmt
ASP.NET State Service demand aspnet_state
COM+ System Application demand COMSysApp
Computer Browser demand Browser
Extensible Authentication Protocol Service demand EapHost
Health Key and Certificate Management Service demand hkmsvc
Help and Support demand helpsvc
Indexing Service demand CiSvc
LightScribeService Direct Disc Labeling Service demand LightScribeService
Logical Disk Manager Administrative Service demand dmadmin
MS Software Shadow Copy Provider demand SwPrv
Network Access Protection Agent demand napagent
Network Provisioning Service demand xmlprov
NT LM Security Support Provider demand NtLmSsp
QoS RSVP demand RSVP
Remote Access Auto Connection Manager demand RasAuto
Remote Access Connection Manager demand RasMan
Remote Procedure Call (RPC) Locator demand RpcLocator
Removable Storage demand NtmsSvc
Smart Card demand SCardSvr
Telephony demand TapiSrv
Uninterruptible Power Supply demand UPS
Volume Shadow Copy demand VSS
Windows Installer demand MSIServer
Windows Management Instrumentation Driver Extensions demand Wmi
Windows User Mode Driver Framework demand UMWdf
Wired AutoConfig demand Dot3svc
WMI Performance Adapter demand WmiApSrv
Alerter disabled Alerter
Application Layer Gateway Service disabled ALG
Automatic Updates disabled wuauserv
Background Intelligent Transfer Service disabled BITS
ClipBook disabled ClipSrv
COM+ Event System disabled EventSystem
Distributed Link Tracking Client disabled TrkWks
Distributed Transaction Coordinator disabled MSDTC
DNS Client disabled Dnscache
Error Reporting Service disabled ERSvc
Fast User Switching Compatibility disabled FastUserSwitchingCompatibility
Human Interface Device Access disabled HidServ
IMAPI CD-Burning COM Service disabled ImapiService
IPSEC Services disabled PolicyAgent
Messenger disabled Messenger
Net Logon disabled Netlogon
Network DDE disabled NetDDE
Network DDE DSDM disabled NetDDEdsdm
Network Location Awareness (NLA) disabled Nla
Performance Logs and Alerts disabled SysmonLog
Portable Media Serial Number Service disabled WmdmPmSN
Print Spooler disabled Spooler
Remote Desktop Help Session Manager disabled RDSessMgr
Remote Registry disabled RemoteRegistry
Routing and Remote Access disabled RemoteAccess
Secondary Logon disabled seclogon
Security Accounts Manager disabled SamSs
Shell Hardware Detection disabled ShellHWDetection
SSDP Discovery Service disabled SSDPSRV
System Event Notification disabled SENS
System Restore Service disabled srservice
Task Scheduler disabled Schedule
TCP/IP NetBIOS Helper disabled LmHosts
Telnet disabled TlntSvr
Terminal Services disabled TermService
Universal Plug and Play Device Host disabled upnphost
WebClient disabled WebClient
Windows Firewall/Internet Connection Sharing (ICS) disabled SharedAccess
Windows Service Pack Installer update service disabled spupdsvc
Windows Time disabled W32Time
Wireless Zero Configuration disabled WZCSVC
Workstation disabled lanmanworkstation
Cryptographic Services auto CryptSvc
DCOM Server Process Launcher auto DcomLaunch
DHCP Client auto Dhcp
Event Log auto Eventlog
HTTP SSL auto HTTPFilter
Logical Disk Manager auto dmserver
Network Connections auto Netman
Plug and Play auto PlugPlay
Protected Storage auto ProtectedStorage
Remote Procedure Call (RPC) auto RpcSs
Themes auto Themes
Windows Audio auto AudioSrv
Windows Image Acquisition (WIA) auto stisvc
Windows Management Instrumentation auto winmgmt

2.以上可以从数据可以通过注册表核对:

3.查看已经启动的服务列表

命令:  net start

4.停止不必要的服务

命令:

sc config BDESVC start= disabled

sc config bthserv start= disabled

sc config Fax start= disabled

sc config iphlpsvc start= disabled

sc config iPod Service start= disabled

sc config PPTVService start= disabled

sc config Spooler start= disabled

sc config PrintNotify start= disabled

sc config RemoteRegistry start= disabled

sc config SCardSvr start= disabled

sc config ScDeviceEnum start= disabled

sc config SCPolicySvc start= disabled

sc config SystemEventsBroker start= disabled

sc config TimeBroker start= disabled

sc config WbioSrvc start= disabled

sc config WwanSvc start= disabled

解释:

a)设置disable效果如下:

b)设置auto效果如下

 

参考:

http://blog.163.com/longermusket@126/blog/static/17282068120109310291667/

http://vdisk.weibo.com/search/?type=public&keyword=%E6%89%B9%E5%A4%84%E7%90%86    中的批处理禁用不必要的系统服务.zip

你可能感兴趣的:(windows)