Skip to content

Commit 6578219

Browse files
author
Angela Fleischmann
authored
Merge pull request #7150 from Roudabeh1348/Missing-description
[Bulk] Validation-Missing description
2 parents 0523463 + 3afc9bb commit 6578219

30 files changed

Lines changed: 38 additions & 6 deletions

File tree

memdocs/configmgr/develop/apps/how-to-define-the-hosting-technology.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "How to Define the Hosting Technology"
33
titleSuffix: "Configuration Manager"
4+
description: "The hosting technology is defined by implementing the `Microsoft.ConfigurationManagement.ApplicationManagement.HostingTechnology` class."
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk
@@ -19,7 +20,7 @@ To define a custom application management hosting technology, implement the `Mic
1920

2021
The HostingTechnology class supports run time interaction and configuration for technologies. The class contains the hosting rules as defined in the HostingTechnology.xml file. If needed, additional methods and properties can be added to this class, though in most cases the existing base should be sufficient.
2122

22-
In the Remote Desktop Protocol (RDP) sample project, a new hosting technology is required to handle Remote Desktop Protocol (RDP) files. Hosting support for RDP files is not built-in to Configuration Manager, so a custom hosting technology is required.
23+
In the Remote Desktop Protocol (RDP) sample project, a new hosting technology is required to handle Remote Desktop Protocol (RDP) files. Hosting support for RDP files is not built in to Configuration Manager, so a custom hosting technology is required.
2324

2425
> [!IMPORTANT]
2526
> The HostingTechnology class name must match the class specified in the HostingTechnology.xml file.
@@ -33,7 +34,7 @@ To define a custom application management hosting technology, implement the `Mic
3334
The following example from the RDP sample project demonstrates how to define a hosting technology.
3435

3536
```
36-
// Defines the hosting technology for RDP files. Hosting support for RDP files is not built-in, so a custom
37+
// Defines the hosting technology for RDP files. Hosting support for RDP files is not built in, so a custom
3738
// hosting technology is needed on the client.
3839
public class RdpHostingTechnology : HostingTechnology
3940
{

memdocs/configmgr/develop/compliance/about-general-configuration-items.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "About General Configuration Items"
33
titleSuffix: "Configuration Manager"
4+
description: "Models of settings and objects, which together represent a meaningful unit of configuration management."
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk

memdocs/configmgr/develop/compliance/operating-system-configuration-item-example-1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "OS Configuration Item Example 1"
33
titleSuffix: "Configuration Manager"
4+
description: "Example 1 for Operating System Configuration Item"
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk

memdocs/configmgr/develop/core/understand/calling-code-snippets.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Calling Code Snippets"
33
titleSuffix: "Configuration Manager"
4+
description: "How to set up the calling code for the code examples that are used throughout the Configuration Manager Software Development Kit (SDK)."
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk

memdocs/configmgr/develop/core/understand/configuration-manager-schema-sql-views.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Schema SQL Views"
33
titleSuffix: "Configuration Manager"
4+
description: "Creates schema information views. These are particularly useful for determining the names for custom inventory resource type (architecture) tables."
45
ms.date: "03/08/2018"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk

memdocs/configmgr/develop/core/understand/how-to-connect-to-an-sms-provider-in-configuration-manager-by-using-wmi.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Connect to an SMS Provider by Using WMI"
33
titleSuffix: "Configuration Manager"
4+
description: "Use the WMI SWbemLocator object or the Windows Script Host GetObject method to connect to an SMS Provider."
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk
@@ -41,7 +42,7 @@ Before connecting to the SMS Provider for a local or remote Configuration Manage
4142
5. Use the [SWbemServices](/windows/desktop/wmisdk/swbemservices) object to access provider objects. For more information, see [Objects overview](configuration-manager-objects-overview.md).
4243

4344
## Examples
44-
The following examples connects to the server. It then attempts to connect to the SMS Provider for that server. Typically this will be the same computer. If it is not, [SMS_ProviderLocation](../../../develop/reference/misc/sms_providerlocation-server-wmi-class.md) provides the correct computer name.
45+
The following example connects to the server. It then attempts to connect to the SMS Provider for that server. Typically this will be the same computer. If it is not, [SMS_ProviderLocation](../../../develop/reference/misc/sms_providerlocation-server-wmi-class.md) provides the correct computer name.
4546

4647
For information about calling the sample code, see [Calling Configuration Manager Code Snippets](../../../develop/core/understand/calling-code-snippets.md).
4748

@@ -100,7 +101,7 @@ Function Connect(server, userName, userPassword)
100101
End Function
101102
```
102103

103-
The following sample connects to the remote server using powerShell, and attempts a SMS connection.
104+
The following sample connects to the remote server using powerShell, and attempts an SMS connection.
104105
```powerShell
105106
$siteCode = ''
106107
$siteServer = 'server.domain'

memdocs/configmgr/develop/core/understand/how-to-create-a-configuration-manager-query.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Create a Query"
33
titleSuffix: "Configuration Manager"
4+
description: "Create an SMS_Query-based query by creating an instance of SMS_Query. The SMS_Query class Expression object defines a WQL query."
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk

memdocs/configmgr/develop/core/understand/how-to-read-a-configuration-manager-object-by-using-managed-code.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Read an Object by Using Managed Code"
33
titleSuffix: "Configuration Manager"
4+
description: "The GetInstance method takes a string that identifies a specific object instance and returns an IResultObject that is used to access the object."
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk

memdocs/configmgr/develop/osd/how-to-add-an-operating-system-install-package.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Add an OS Install Package"
33
titleSuffix: "Configuration Manager"
4+
description: "Creates and populates an instance of SMS_OperatingSystemInstallPackage."
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk

memdocs/configmgr/develop/osd/how-to-create-a-mof-file-for-a-configuration-manager-custom-action.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Create a MOF File for a Custom Action"
33
titleSuffix: "Configuration Manager"
4+
description: "A custom task sequence action, its properties and its user interface controls are defined by creating a managed object format (MOF) file to describe the class."
45
ms.date: "09/20/2016"
56
ms.prod: "configuration-manager"
67
ms.technology: configmgr-sdk

0 commit comments

Comments
 (0)