mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-13 05:47:23 +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
|
author: aczechowski
|
||||||
ms.author: aaroncz
|
ms.author: aaroncz
|
||||||
manager: aaroncz
|
manager: aaroncz
|
||||||
ms.date: 06/28/2024
|
ms.date: 09/27/2024
|
||||||
ms.topic: landing-page
|
ms.topic: landing-page
|
||||||
ms.service: windows-client
|
ms.service: windows-client
|
||||||
ms.subservice: itpro-apps
|
ms.subservice: itpro-apps
|
||||||
|
@ -4,7 +4,7 @@ description: Learn about per-user services, how to change the template service s
|
|||||||
author: aczechowski
|
author: aczechowski
|
||||||
ms.author: aaroncz
|
ms.author: aaroncz
|
||||||
manager: aaroncz
|
manager: aaroncz
|
||||||
ms.date: 12/22/2023
|
ms.date: 10/01/2024
|
||||||
ms.topic: how-to
|
ms.topic: how-to
|
||||||
ms.service: windows-client
|
ms.service: windows-client
|
||||||
ms.subservice: itpro-apps
|
ms.subservice: itpro-apps
|
||||||
@ -99,7 +99,7 @@ $services = Get-Service
|
|||||||
foreach ( $service in $services ) {
|
foreach ( $service in $services ) {
|
||||||
# For each specific service, check if the service type property includes the 64 bit using the bitwise AND operator (-band).
|
# 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 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.
|
# When a per-user service is found, then add that service object to the results array.
|
||||||
$serviceList += $service
|
$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`:
|
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
|
```cmd
|
||||||
REG.EXE ADD HKLM\System\CurrentControlSet\Services\CDPUserSvc /v Start /t REG_DWORD /d 4 /f
|
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\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\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\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\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
|
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
|
#### 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`.
|
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
|
#### 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
|
author: aczechowski
|
||||||
ms.author: aaroncz
|
ms.author: aaroncz
|
||||||
manager: aaroncz
|
manager: aaroncz
|
||||||
ms.date: 12/22/2023
|
ms.date: 09/27/2024
|
||||||
ms.topic: how-to
|
ms.topic: how-to
|
||||||
ms.service: windows-client
|
ms.service: windows-client
|
||||||
ms.subservice: itpro-apps
|
ms.subservice: itpro-apps
|
||||||
|
@ -15,7 +15,7 @@ metadata:
|
|||||||
author: aczechowski
|
author: aczechowski
|
||||||
ms.author: aaroncz
|
ms.author: aaroncz
|
||||||
manager: aaroncz
|
manager: aaroncz
|
||||||
ms.date: 08/27/2024
|
ms.date: 10/01/2024
|
||||||
|
|
||||||
highlightedContent:
|
highlightedContent:
|
||||||
# itemType: architecture | concept | deploy | download | get-started | how-to-guide | training | overview | quickstart | reference | sample | tutorial | video | whats-new
|
# 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
|
- title: Windows 11, version 24H2 group policy settings reference
|
||||||
itemType: download
|
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
|
- title: Windows administrative tools
|
||||||
itemType: concept
|
itemType: concept
|
||||||
@ -73,7 +73,7 @@ conceptualContent:
|
|||||||
|
|
||||||
- title: Privacy in Windows
|
- title: Privacy in Windows
|
||||||
links:
|
links:
|
||||||
- url: /windows/privacy/required-diagnostic-events-fields-windows-11-22h2
|
- url: /windows/privacy/required-diagnostic-events-fields-windows-11-24h2
|
||||||
itemType: reference
|
itemType: reference
|
||||||
text: Windows 11 required diagnostic data
|
text: Windows 11 required diagnostic data
|
||||||
- url: /windows/privacy/configure-windows-diagnostic-data-in-your-organization
|
- url: /windows/privacy/configure-windows-diagnostic-data-in-your-organization
|
||||||
|
Loading…
x
Reference in New Issue
Block a user