Add disable services

This commit is contained in:
Przemek Grondek 2023-05-01 01:35:21 +02:00
parent 51ea9362a5
commit 388c63f820
2 changed files with 49 additions and 0 deletions

View File

@ -10,6 +10,7 @@ features:
- features\lite\search.yml
- features\lite\scheduled-tasks.yml
- features\lite\improvements.yml
- features\lite\services.yml
- features\personalization\dark-mode.yml
- features\personalization\explorer.yml
- features\personalization\taskbar.yml

View File

@ -0,0 +1,48 @@
---
title: Services
description: Configures services
privilege: TrustedInstaller
actions:
- !writeStatus: {status: 'Configuring services'}
# Stop and disable Diagnostics Tracking Service
- !service: {name: 'DiagTrack', operation: stop}
- !service: {name: 'DiagTrack', startup: 4}
# Microsoft (R) Diagnostics Hub Standard Collector Service
- !service: {name: 'diagnosticshub.standardcollector.service', operation: stop}
- !service: {name: 'diagnosticshub.standardcollector.service', startup: 4}
# WAP Push Message Routing Service
- !service: {name: 'dmwappushservice', operation: stop}
- !service: {name: 'dmwappushservice', startup: 4}
# Geolocation Service
- !service: {name: 'lfsvc', operation: stop}
- !service: {name: 'lfsvc', startup: 4}
# Downloaded Maps Manager
- !service: {name: 'MapsBroker', operation: stop}
- !service: {name: 'MapsBroker', startup: 4}
# Net.Tcp Port Sharing Service
- !service: {name: 'NetTcpPortSharing', operation: stop}
- !service: {name: 'NetTcpPortSharing', startup: 4}
# Routing and Remote Access
- !service: {name: 'RemoteAccess', operation: stop}
- !service: {name: 'RemoteAccess', startup: 4}
# Internet Connection Sharing (ICS)
- !service: {name: 'SharedAccess', operation: stop}
- !service: {name: 'SharedAccess', startup: 4}
# Distributed Link Tracking Client
- !service: {name: 'TrkWks', operation: stop}
- !service: {name: 'TrkWks', startup: 4}
# Windows Biometric Service (required for Fingerprint reader / facial detection)
- !service: {name: 'WbioSrvc', operation: stop}
- !service: {name: 'WbioSrvc', startup: 4}
# Windows Media Player Network Sharing Service
- !service: {name: 'WMPNetworkSvc', operation: stop}
- !service: {name: 'WMPNetworkSvc', startup: 4}
# Windows Network Data Usage Monitor
- !service: {name: 'ndu', operation: stop}
- !service: {name: 'ndu', startup: 4}
# Stop and disable Home Groups services
- !service: {name: 'HomeGroupListener', operation: stop}
- !service: {name: 'HomeGroupListener', startup: 4}
- !service: {name: 'HomeGroupProvider', operation: stop}
- !service: {name: 'HomeGroupProvider', startup: 4}