metadata updates

This commit is contained in:
Aaron Czechowski 2023-08-18 12:31:10 -07:00
parent b77a3c3633
commit f23f0a7157
5 changed files with 37 additions and 49 deletions

View File

@ -1,25 +1,22 @@
--- ---
title: Learn about the different app types in Windows 10/11 | Microsoft Docs title: Overview of apps on Windows client devices
description: Learn more and understand the different types of apps that run on Windows 10 and Windows 11. For example, learn more about UWP, WPF, Win32, and Windows Forms apps, including the best way to install these apps. description: Learn more and understand the different types of apps that run on Windows 10 and Windows 11. For example, learn more about UWP, WPF, Win32, and Windows Forms apps, including the best way to install these apps.
author: aczechowski author: aczechowski
ms.author: aaroncz ms.author: aaroncz
manager: aaroncz manager: aaroncz
ms.date: 02/09/2023 ms.date: 02/09/2023
ms.topic: article ms.topic: overview
ms.prod: windows-client ms.prod: windows-client
ms.technology: itpro-apps ms.technology: itpro-apps
ms.localizationpriority: medium ms.localizationpriority: medium
ms.collection: tier2 ms.collection: tier2
ms.reviewer: appliesto:
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
--- ---
# Overview of apps on Windows client devices # Overview of apps on Windows client devices
**Applies to**:
- Windows 10
- Windows 11
## Before you begin ## Before you begin
As organizations become more global, and to support employees working from anywhere, it's recommended to use a Mobile Device Management (MDM) provider. MDM providers help manage your devices, and help manage apps on your devices. You can use the Microsoft Intune family of products. This family includes Microsoft Intune, which is a cloud service, and Configuration Manager, which is on-premises. As organizations become more global, and to support employees working from anywhere, it's recommended to use a Mobile Device Management (MDM) provider. MDM providers help manage your devices, and help manage apps on your devices. You can use the Microsoft Intune family of products. This family includes Microsoft Intune, which is a cloud service, and Configuration Manager, which is on-premises.

View File

@ -1,24 +1,21 @@
--- ---
title: Per-user services in Windows 10 and Windows Server title: Per-user services
description: Learn about per-user services, how to change the template service Startup Type, and manage per-user services through Group Policy and security templates. description: Learn about per-user services, how to change the template service Startup Type, and manage per-user services through Group Policy and security templates.
author: aczechowski author: aczechowski
ms.author: aaroncz ms.author: aaroncz
manager: aaroncz manager: aaroncz
ms.date: 09/14/2017 ms.date: 09/14/2017
ms.topic: article ms.topic: how-to
ms.prod: windows-client ms.prod: windows-client
ms.technology: itpro-apps ms.technology: itpro-apps
ms.localizationpriority: medium ms.localizationpriority: medium
ms.collection: tier2 ms.collection: tier2
ms.reviewer: appliesto:
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
- ✅ <a href="https://learn.microsoft.com/windows/release-health/windows-server-release-info" target="_blank">Windows Server</a>
--- ---
# Per-user services in Windows 10 and Windows Server # Per-user services in Windows
**Applies to**:
- Windows 10
- Windows Server
Per-user services are services that are created when a user signs into Windows or Windows Server and are stopped and deleted when that user signs out. These services run in the security context of the user account - this provides better resource management than the previous approach of running these kinds of services in Explorer, associated with a preconfigured account, or as tasks. Per-user services are services that are created when a user signs into Windows or Windows Server and are stopped and deleted when that user signs out. These services run in the security context of the user account - this provides better resource management than the previous approach of running these kinds of services in Explorer, associated with a preconfigured account, or as tasks.
@ -80,9 +77,9 @@ In light of these restrictions, you can use the following methods to manage per-
You can manage the CDPUserSvc and OneSyncSvc per-user services with a [security template](/windows/device-security/security-policy-settings/administer-security-policy-settings#bkmk-sectmpl). For more information, visit [Administer security policy settings](/windows/device-security/security-policy-settings/administer-security-policy-settings). You can manage the CDPUserSvc and OneSyncSvc per-user services with a [security template](/windows/device-security/security-policy-settings/administer-security-policy-settings#bkmk-sectmpl). For more information, visit [Administer security policy settings](/windows/device-security/security-policy-settings/administer-security-policy-settings).
For example: For example:
``` ```ini
[Unicode] [Unicode]
Unicode=yes Unicode=yes
[Version] [Version]
@ -128,7 +125,7 @@ If you can't use Group Policy Preferences to manage the per-user services, you c
To disable the Template Services, change the Startup Type for each service to 4 (disabled). To disable the Template Services, change the Startup Type for each service to 4 (disabled).
For example: For example:
```code ```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
@ -163,9 +160,10 @@ You can create a script to change the Startup Type for the per-user services. Th
Sample script using [sc.exe](/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc990290(v=ws.11)?f=255&MSPPError=-2147217396): Sample script using [sc.exe](/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc990290(v=ws.11)?f=255&MSPPError=-2147217396):
``` ```cmd
sc.exe configure <service name> start= disabled sc.exe configure <service name> start= disabled
``` ```
The space after "=" is intentional. The space after "=" is intentional.
Sample script using the [Set-Service PowerShell cmdlet](/previous-versions/windows/it-pro/windows-powershell-1.0/ee176963(v=technet.10)): Sample script using the [Set-Service PowerShell cmdlet](/previous-versions/windows/it-pro/windows-powershell-1.0/ee176963(v=technet.10)):

View File

@ -1,22 +1,21 @@
--- ---
title: How to keep apps removed from Windows 10 from returning during an update title: Keep removed apps from returning during an update
description: How to keep provisioned apps that were removed from your machine from returning during an update. description: When you remove provisioned apps from devices, this article explains how to keep those apps from returning during an update.
author: aczechowski author: aczechowski
ms.author: aaroncz ms.author: aaroncz
manager: aaroncz manager: aaroncz
ms.date: 05/25/2018 ms.date: 05/25/2018
ms.topic: article ms.topic: how-to
ms.prod: windows-client ms.prod: windows-client
ms.technology: itpro-apps ms.technology: itpro-apps
ms.localizationpriority: medium ms.localizationpriority: medium
ms.collection: tier1 ms.collection: tier1
ms.reviewer: appliesto:
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
--- ---
# How to keep apps removed from Windows 10 from returning during an update
**Applies to**: # Keep removed apps from returning during an update
- Windows 10
When you update a computer running Windows 10, version 1703 or 1709, you might see provisioned apps that you previously removed post-update. This can happen if the computer was offline when you removed the apps. Windows 10, version 1803 has fixed this issue. When you update a computer running Windows 10, version 1703 or 1709, you might see provisioned apps that you previously removed post-update. This can happen if the computer was offline when you removed the apps. Windows 10, version 1803 has fixed this issue.

View File

@ -1,24 +1,21 @@
--- ---
title: Sideload LOB apps in Windows client OS | Microsoft Docs title: Sideload line of business apps
description: Learn how to sideload line-of-business (LOB) apps in Windows client operating systems, including Windows 10/11. When you sideload an app, you deploy a signed app package to a device. description: Learn how to sideload line-of-business (LOB) apps in Windows client operating systems. When you sideload an app, you deploy a signed app package to a device.
author: aczechowski author: aczechowski
ms.author: aaroncz ms.author: aaroncz
manager: aaroncz manager: aaroncz
ms.date: 12/07/2017 ms.date: 12/07/2017
ms.topic: article ms.topic: how-to
ms.prod: windows-client ms.prod: windows-client
ms.technology: itpro-apps ms.technology: itpro-apps
ms.localizationpriority: medium ms.localizationpriority: medium
ms.collection: tier2 ms.collection: tier2
ms.reviewer: appliesto:
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
--- ---
# Sideload line of business (LOB) apps in Windows client devices # Sideload line of business (LOB) apps
**Applies to**:
- Windows 10
- Windows 11
> [!NOTE] > [!NOTE]
> Starting with Windows 10 2004, sideloading is enabled by default. You can deploy a signed package onto a device without a special configuration. > Starting with Windows 10 2004, sideloading is enabled by default. You can deploy a signed package onto a device without a special configuration.
@ -27,7 +24,7 @@ Sideloading apps is when you install apps that aren't from an official source, s
When you sideload an app, you deploy a signed app package to a device. You maintain the signing, hosting, and deployment of these apps. Sideloading was also available with Windows 8 and Windows 8.1 When you sideload an app, you deploy a signed app package to a device. You maintain the signing, hosting, and deployment of these apps. Sideloading was also available with Windows 8 and Windows 8.1
Starting with Windows 10, sideloading is different than earlier versions of Windows: Starting with Windows 10, sideloading is different than earlier versions of Windows:
- You can unlock a device for sideloading using an enterprise policy, or through the **Settings** app. - You can unlock a device for sideloading using an enterprise policy, or through the **Settings** app.
- License keys aren't required. - License keys aren't required.

View File

@ -1,23 +1,20 @@
--- ---
title: Service Host service refactoring in Windows 10 version 1703 title: Service host grouping in Windows 10
description: Learn about the SvcHost Service Refactoring introduced in Windows 10 version 1703. description: Learn about the Service Host (SvcHost) service refactoring introduced in Windows 10 version 1703.
author: aczechowski author: aczechowski
ms.author: aaroncz ms.author: aaroncz
manager: aaroncz manager: aaroncz
ms.date: 07/20/2017 ms.date: 07/20/2017
ms.topic: article ms.topic: concept-article
ms.prod: windows-client ms.prod: windows-client
ms.technology: itpro-apps ms.technology: itpro-apps
ms.localizationpriority: medium ms.localizationpriority: medium
ms.colletion: tier1 ms.colletion: tier2
ms.reviewer: appliesto:
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
--- ---
# Changes to Service Host grouping in Windows 10 # Service host grouping in Windows 10
**Applies to**:
- Windows 10
The **Service Host (svchost.exe)** is a shared-service process that serves as a shell for loading services from DLL files. Services are organized into related host groups, and each group runs inside a different instance of the Service Host process. In this way, a problem in one instance doesn't affect other instances. Service Host groups are determined by combining the services with matching security requirements. For example: The **Service Host (svchost.exe)** is a shared-service process that serves as a shell for loading services from DLL files. Services are organized into related host groups, and each group runs inside a different instance of the Service Host process. In this way, a problem in one instance doesn't affect other instances. Service Host groups are determined by combining the services with matching security requirements. For example: