Author Topic: Windows 7 Customization - Set Some Unneeded Services To Manual Startup  (Read 587 times)

Offline GigaWatt

  • Администратор
  • Топ Експерт
  • *****
  • Posts: 12890
  • Gender: Male
  • Не фалширам
Дел од сервисите кои се подигаат автоматски под Windows 7, можете да ги подесите да се подигаат мануелно, односно on demand (кога определена апликација или некој друг сервис ќе го побара тоа). Дел од нив може и сосема да се исклучат, но safe setting би било Manual ;).

Класично, сервисите се подесуваат преку MMC (Microsoft Management Console) или директно преку Win + R --> services.msc.


Подесувањето треба да го правите за секој сервис засебно, а и треба да помните кои сервиси може слободно да се постават да се подигаат on demand.

За среќа, постои конзолната апликација Service Control (sc) со која може да го автоматизираме овој процес ;).

Направив еден batch фајл со кој е автоматизиран процесот на подесување на начинот на подигање на дел од сервисите во Manual. Дел од нив се сигурно веќе подесени да се подигаат on demand, но при инсталација на некои апликации, самите installer-и знаат да го сменат начинот на подигање на некои сервиси, а со ова се успорува процесот на подигање на Windows 7.

Code: [Select]
REM Sets the Application Experience service to Manual startup.

sc config AeLookupSvc start= demand

REM Sets the IP Helper service to Manual startup.

sc config iphlpsvc start= demand

REM Sets the Offline Files service to Manual startup.

sc config CscService start= demand

REM Sets the Portable Device Enumerator Service to Manual startup.

sc config WPDBusEnum start= demand

REM Sets the Protected Storage service to Manual startup.

sc config ProtectedStorage start= demand

REM Sets the Remote Registry service to Manual startup.

sc config RemoteRegistry start= demand

REM Sets the Secondary Logon service to Manual startup.

sc config seclogon start= demand

REM Sets the Security Center service to Manual startup.

sc config wscsvc start= demand

REM Sets the Tablet PC Input Service to Manual startup.

sc config TabletInputService start= demand

REM Sets the Windows Error Reporting Service to Manual startup.

sc config WerSvc start= demand

REM Sets the Windows Media Center Service Launcher service to Manual startup.

sc config ehstart start= demand

REM Sets the Windows Search service to Manual startup.

sc config WSearch start= demand

REM Sets the Fax service to Manual startup.

sc config Fax start= demand

REM Sets the Routing and Remote Access service to Manual startup.

sc config RemoteAccess start= demand

REM Sets the Bluetooth Support Service to Manual startup.

sc config bthserv start= demand

REM Sets the BitLocker Drive Encryption Service to Manual startup.

sc config BDESVC start= demand

REM Sets the Encrypting File System (EFS) service to Manual startup.

sc config EFS start= demand

REM Sets the Parental Controls service to Manual startup.

sc config WPCSvc start= demand

REM Sets the Remote Desktop Configuration service to Manual startup.

sc config SessionEnv start= demand

REM Sets the Remote Desktop Services service to Manual startup.

sc config TermService start= demand

REM Sets the Remote Desktop Services UserMode Port Redirector service to Manual startup.

sc config UmRdpService start= demand

REM Sets the Smart Card service to Manual startup.

sc config SCardSvr start= demand

REM Sets the Smart Card Removal Policy service to Manual startup.

sc config SCPolicySvc start= demand

REM Sets the Windows Defender service to Manual startup.

sc config WinDefend start= demand

REM Sets the Network Access Protection Agent service to Manual startup.

sc config napagent start= demand

REM Sets the Windows Media Center Receiver Service to Manual startup.

sc config ehRecvr start= demand

REM Sets the Windows Media Center Scheduler Service to Manual startup.

sc config ehSched start= demand

REM Sets the Function Discovery Provider Host service to Manual startup.

sc config fdPHost start= demand

REM Sets the Internet Connection Sharing (ICS) service to Manual startup.

sc config SharedAccess start= demand

REM Sets the Adaptive Brightness service to Manual startup.

sc config SensrSvc start= demand

REM Sets the Disk Defragmenter service to Manual startup.

sc config defragsvc start= demand

REM Sets the Windows Biometric Service to Manual startup.

sc config WbioSrvc start= demand

REM Sets the Windows Media Player Network Sharing Service to Manual startup.

sc config WMPNetworkSvc start= demand

REM Sets the WWAN AutoConfig service to Manual startup.

sc config WwanSvc start= demand
It's not schizophrenia... It's just a voice in my head...

"This is really a generic concept about human thinking - when faced with large tasks we're naturally inclined to try to break them down into a bunch of smaller tasks that together make up the whole."

"Newton's third law: The only way humans have ever figured out of getting somewhere is to leave something behind."