From f3a517d381107705b230638a62b4295ddc8fbf85 Mon Sep 17 00:00:00 2001 From: farag2 Date: Mon, 5 Aug 2019 20:29:17 +0300 Subject: [PATCH] 05.08.2019 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed "Clipboard User Service" from per-user services list Удалена "Пользовательская служба буфера обмена" из списка отключения пользовательских служб --- Win 10.ps1 | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Win 10.ps1 b/Win 10.ps1 index 0fb5a902..5561cf51 100644 --- a/Win 10.ps1 +++ b/Win 10.ps1 @@ -1098,9 +1098,6 @@ Remove-Item -Path "$value\Microsoft Edge.lnk" -Force -ErrorAction SilentlyContin # Turn off per-user services # Отключить пользовательские службы $services = @( - # Clipboard User Service - # Пользовательская служба буфера обмена - "cbdhsvc_*", # Contact Data # Служба контактных данных "PimIndexMaintenanceSvc_*", @@ -1114,8 +1111,6 @@ foreach ($service in $services) { Get-Service -ServiceName $service | Stop-Service -Force } -New-ItemProperty -Path HKLM:\System\CurrentControlSet\Services\cbdhsvc -Name Start -Value 4 -Force -New-ItemProperty -Path HKLM:\System\CurrentControlSet\Services\cbdhsvc -Name UserServiceFlags -Value 0 -Force New-ItemProperty -Path HKLM:\System\CurrentControlSet\Services\PimIndexMaintenanceSvc -Name Start -Value 4 -Force New-ItemProperty -Path HKLM:\System\CurrentControlSet\Services\PimIndexMaintenanceSvc -Name UserServiceFlags -Value 0 -Force New-ItemProperty -Path HKLM:\System\CurrentControlSet\Services\UnistoreSvc -Name Start -Value 4 -Force