Загрузка данных


# Блокировка фоновой интеллектуальной службы передачи
Stop-Service -Name "BITS" -Force -ErrorAction SilentlyContinue
Set-Service -Name "BITS" -StartupType Disabled

# Отключение Windows Search (Индексация диска, сильно бьющая по HDD)
Stop-Service -Name "WSearch" -Force -ErrorAction SilentlyContinue
Set-Service -Name "WSearch" -StartupType Disabled

# Отключение Центра Обновлений (Windows Update)
Stop-Service -Name "wuauserv" -Force -ErrorAction SilentlyContinue
Set-Service -Name "wuauserv" -StartupType Disabled

# Отключение службы телеметрии и сбора логов
Stop-Service -Name "DiagTrack" -Force -ErrorAction SilentlyContinue
Set-Service -Name "DiagTrack" -StartupType Disabled

# Отключение Xbox-сервисов (Game Bar оверлей)
Get-Service -Name "*Xbox*" | Stop-Service -Force -ErrorAction SilentlyContinue
Get-Service -Name "*Xbox*" | Set-Service -StartupType Disabled