mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 21:37:22 +00:00
Merge pull request #10263 from aczechowski/cz-24h2-8631996
24H2 minor updates
This commit is contained in:
commit
112a729fa7
@ -9,7 +9,7 @@ metadata:
|
||||
author: aczechowski
|
||||
ms.author: aaroncz
|
||||
manager: aaroncz
|
||||
ms.date: 06/28/2024
|
||||
ms.date: 09/27/2024
|
||||
ms.topic: landing-page
|
||||
ms.service: windows-client
|
||||
ms.subservice: itpro-apps
|
||||
|
@ -4,7 +4,7 @@ description: Learn about per-user services, how to change the template service s
|
||||
author: aczechowski
|
||||
ms.author: aaroncz
|
||||
manager: aaroncz
|
||||
ms.date: 12/22/2023
|
||||
ms.date: 10/01/2024
|
||||
ms.topic: how-to
|
||||
ms.service: windows-client
|
||||
ms.subservice: itpro-apps
|
||||
@ -99,7 +99,7 @@ $services = Get-Service
|
||||
foreach ( $service in $services ) {
|
||||
# For each specific service, check if the service type property includes the 64 bit using the bitwise AND operator (-band).
|
||||
# If the result equals the flag value, then the service is a per-user service.
|
||||
if ( ( $service.ServiceType -band $flag ) -eq $flag ) {
|
||||
if ( ( $service.ServiceType -band $flag ) -eq $flag ) {
|
||||
# When a per-user service is found, then add that service object to the results array.
|
||||
$serviceList += $service
|
||||
}
|
||||
@ -229,14 +229,14 @@ If you can't use group policy preferences to manage the per-user services, you c
|
||||
|
||||
1. The following example includes multiple commands that disable the specified Windows services by changing their **Start** value in the Windows Registry to `4`:
|
||||
|
||||
```cmd
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\CDPUserSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\OneSyncSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\PimIndexMaintenanceSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\UnistoreSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\UserDataSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\WpnUserService /v Start /t REG_DWORD /d 4 /f
|
||||
```
|
||||
```cmd
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\CDPUserSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\OneSyncSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\PimIndexMaintenanceSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\UnistoreSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\UserDataSvc /v Start /t REG_DWORD /d 4 /f
|
||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\WpnUserService /v Start /t REG_DWORD /d 4 /f
|
||||
```
|
||||
|
||||
#### Example 2: Use the Registry Editor user interface to edit the registry
|
||||
|
||||
@ -248,7 +248,7 @@ REG.EXE ADD HKLM\System\CurrentControlSet\Services\WpnUserService /v Start /t RE
|
||||
|
||||
1. Change the **Value data** to `4`.
|
||||
|
||||
:::image type="content" source="media/regedit-change-service-startup-type.png" alt-text="Screenshot of the Registry Editor open to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\CDPSvc and highlighting the Start value set to 4.":::
|
||||
:::image type="content" source="media/regedit-change-service-startup-type.png" alt-text="Screenshot of the Registry Editor open to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\CDPSvc and highlighting the Start value set to 4.":::
|
||||
|
||||
#### Example 3: Prevent the creation of per-user services
|
||||
|
||||
|
@ -4,7 +4,7 @@ description: Learn how to sideload line-of-business (LOB) apps in Windows client
|
||||
author: aczechowski
|
||||
ms.author: aaroncz
|
||||
manager: aaroncz
|
||||
ms.date: 12/22/2023
|
||||
ms.date: 09/27/2024
|
||||
ms.topic: how-to
|
||||
ms.service: windows-client
|
||||
ms.subservice: itpro-apps
|
||||
|
@ -15,7 +15,7 @@ metadata:
|
||||
author: aczechowski
|
||||
ms.author: aaroncz
|
||||
manager: aaroncz
|
||||
ms.date: 08/27/2024
|
||||
ms.date: 10/01/2024
|
||||
|
||||
highlightedContent:
|
||||
# itemType: architecture | concept | deploy | download | get-started | how-to-guide | training | overview | quickstart | reference | sample | tutorial | video | whats-new
|
||||
@ -31,7 +31,7 @@ highlightedContent:
|
||||
|
||||
- title: Windows 11, version 24H2 group policy settings reference
|
||||
itemType: download
|
||||
url: https://www.microsoft.com/download/details.aspx?id=105668
|
||||
url: https://www.microsoft.com/download/details.aspx?id=106255
|
||||
|
||||
- title: Windows administrative tools
|
||||
itemType: concept
|
||||
@ -73,7 +73,7 @@ conceptualContent:
|
||||
|
||||
- title: Privacy in Windows
|
||||
links:
|
||||
- url: /windows/privacy/required-diagnostic-events-fields-windows-11-22h2
|
||||
- url: /windows/privacy/required-diagnostic-events-fields-windows-11-24h2
|
||||
itemType: reference
|
||||
text: Windows 11 required diagnostic data
|
||||
- url: /windows/privacy/configure-windows-diagnostic-data-in-your-organization
|
||||
|
Loading…
x
Reference in New Issue
Block a user