diff --git a/memdocs/configmgr/develop/apps/how-to-define-the-create-application-wizard-xml-file.md b/memdocs/configmgr/develop/apps/how-to-define-the-create-application-wizard-xml-file.md index 61a436daaf0..d43286de588 100644 --- a/memdocs/configmgr/develop/apps/how-to-define-the-create-application-wizard-xml-file.md +++ b/memdocs/configmgr/develop/apps/how-to-define-the-create-application-wizard-xml-file.md @@ -15,7 +15,7 @@ description: How to create a custom deployment technology XML File for the Creat ms.reviewer: mstewart,aaroncz --- # How to Define the Create Application Wizard XML File -To define the custom deployment technology XML file, create an XML file based on the `http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework` schema. The XML file for the Create Application Wizard should be named, CreateApp_\<*TechnologyID*>.xml. +To define the custom deployment technology XML file, create an XML file based on the `https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework` schema. The XML file for the Create Application Wizard should be named, CreateApp_\<*TechnologyID*>.xml. ### To define the create application wizard XML file @@ -25,7 +25,7 @@ To define the custom deployment technology XML file, create an XML file based on ```xml - +
diff --git a/memdocs/configmgr/develop/apps/how-to-define-the-create-deployment-type-wizard-xml-file.md b/memdocs/configmgr/develop/apps/how-to-define-the-create-deployment-type-wizard-xml-file.md index 13db2ce7040..2e81c5fd01a 100644 --- a/memdocs/configmgr/develop/apps/how-to-define-the-create-deployment-type-wizard-xml-file.md +++ b/memdocs/configmgr/develop/apps/how-to-define-the-create-deployment-type-wizard-xml-file.md @@ -15,7 +15,7 @@ ms.collection: tier3 ms.reviewer: mstewart,aaroncz --- # How to Define the Create Deployment Type Wizard XML File -To define the custom create deployment type wizard XML file, create an XML file based on the `http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework` schema. The XML file for the Create Application Wizard should be named CreateDeploymentWizard_\<*TechnologyID*>.xml. +To define the custom create deployment type wizard XML file, create an XML file based on the `https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework` schema. The XML file for the Create Application Wizard should be named CreateDeploymentWizard_\<*TechnologyID*>.xml. ### To define the create deployment type wizard XML file @@ -25,7 +25,7 @@ To define the custom create deployment type wizard XML file, create an XML file ```xml - + diff --git a/memdocs/configmgr/develop/apps/how-to-define-the-deployment-type-property-sheet-xml-file.md b/memdocs/configmgr/develop/apps/how-to-define-the-deployment-type-property-sheet-xml-file.md index cb5e250699a..7ed88e949f4 100644 --- a/memdocs/configmgr/develop/apps/how-to-define-the-deployment-type-property-sheet-xml-file.md +++ b/memdocs/configmgr/develop/apps/how-to-define-the-deployment-type-property-sheet-xml-file.md @@ -15,7 +15,7 @@ ms.collection: tier3 ms.reviewer: mstewart,aaroncz --- # How to Define the Deployment Type Property Sheet XML File -To define the custom deployment type property page XML file, create an XML file based on the `http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework` schema. The XML file for the deployment type property sheet should be named \<*TechnologyID*>DeploymentTypePropertySheet.xml. +To define the custom deployment type property page XML file, create an XML file based on the `https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework` schema. The XML file for the deployment type property sheet should be named \<*TechnologyID*>DeploymentTypePropertySheet.xml. ### To define the deployment type property page XML file @@ -25,7 +25,7 @@ To define the custom deployment type property page XML file, create an XML file ```xml - + diff --git a/memdocs/configmgr/develop/apps/how-to-define-the-resources.md b/memdocs/configmgr/develop/apps/how-to-define-the-resources.md index 82aafabd123..58aacbe6df3 100644 --- a/memdocs/configmgr/develop/apps/how-to-define-the-resources.md +++ b/memdocs/configmgr/develop/apps/how-to-define-the-resources.md @@ -40,7 +40,7 @@ To support the Installer, a custom XML schema should be included as part of the ```xml <?xml version="1.0" encoding="utf-8"?> - <xs:schema id="RdpInstaller" version="1" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/SystemsManagement/2009/ApplicationManagement" xmlns="http://schemas.microsoft.com/SystemsManagement/2009/ApplicationManagement" xmlns:xs="http://www.w3.org/2001/XMLSchema"> + <xs:schema id="RdpInstaller" version="1" elementFormDefault="qualified" targetNamespace="https://schemas.microsoft.com/SystemsManagement/2009/ApplicationManagement" xmlns="https://schemas.microsoft.com/SystemsManagement/2009/ApplicationManagement" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:complexType name="RdpInstaller"> <xs:complexContent mixed="false"> <xs:extension base="Installer"> diff --git a/memdocs/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-dialog-box.md b/memdocs/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-dialog-box.md index 45bc2efa0df..4cec55d6b11 100644 --- a/memdocs/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-dialog-box.md +++ b/memdocs/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-dialog-box.md @@ -32,7 +32,7 @@ In Configuration Manager, to create the form XML for a Configuration Manager dia ``` <?xml version="1.0" encoding="utf-8"?> - <SmsFormData FormatVersion="1.0" xmlns="http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework"> + <SmsFormData FormatVersion="1.0" xmlns="https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework"> <Form Id="{DIALOGGUID}" CustomData="User Properties" FormType="CustomDialog" > <Assembly Name="ConfigMgrDialogControl" Namespace="Microsoft.ConfigurationManagement.AdminConsole.ConfigMgrDialogBox" ClassType="ConfigMgrDialogControl"/> </Form> diff --git a/memdocs/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-property-sheet.md b/memdocs/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-property-sheet.md index cecfd9a4eeb..ccbefa2c31f 100644 --- a/memdocs/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-property-sheet.md +++ b/memdocs/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-property-sheet.md @@ -37,7 +37,7 @@ In Configuration Manager, to create the form XML for a Configuration Manager pro ```xml <?xml version="1.0" encoding="utf-8"?> - <SmsFormData xmlns="http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework" FormatVersion="1"> + <SmsFormData xmlns="https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework" FormatVersion="1"> <Form Id="PROPERTYSHEETGUID" CustomData="SomeData" FormType="PropertySheet" ForceRefresh="true"> <Assembly Name="ConfigMgrControl.dll" Namespace="Microsoft.ConfigurationManagement.AdminConsole.ConfigMgrPropertySheet" /> <Pages>