Skip to content

Commit a41e12d

Browse files
authored
Merge pull request #19313 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/memdocs (branch main)
2 parents b1cc6e2 + 24e6b43 commit a41e12d

6 files changed

Lines changed: 9 additions & 9 deletions

intune/configmgr/develop/apps/how-to-define-the-create-application-wizard-xml-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description: How to create a custom deployment technology XML File for the Creat
1515
ms.reviewer: mstewart
1616
---
1717
# How to Define the Create Application Wizard XML File
18-
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.
18+
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.
1919

2020
### To define the create application wizard XML file
2121

@@ -25,7 +25,7 @@ To define the custom deployment technology XML file, create an XML file based on
2525

2626
```xml
2727
<?xml version="1.0" encoding="utf-8"?>
28-
<SmsFormData xmlns="http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework" FormatVersion="1">
28+
<SmsFormData xmlns="https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework" FormatVersion="1">
2929
<Form Id="{FD19DEC6-81ED-447B-9D88-3AAD7DE499F1}" CustomData="CreateApp" FormType="PropertySheet" ForceRefresh="true">
3030
<Pages>
3131
<Page Assembly="AdminUI.DeploymentType.Rdp.dll" Namespace="RdpTechnology.AdminConsole" VendorId="Partner Company Name" Id="{6802BC91-30EF-49A5-80F6-D4902CD5181C}" Type="RdpDeploymentTechnologyPageControl" />

intune/configmgr/develop/apps/how-to-define-the-create-deployment-type-wizard-xml-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.collection: tier3
1515
ms.reviewer: mstewart
1616
---
1717
# How to Define the Create Deployment Type Wizard XML File
18-
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.
18+
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.
1919

2020
### To define the create deployment type wizard XML file
2121

@@ -25,7 +25,7 @@ To define the custom create deployment type wizard XML file, create an XML file
2525

2626
```xml
2727
<?xml version="1.0" encoding="utf-8"?>
28-
<SmsFormData xmlns="http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework" FormatVersion="1">
28+
<SmsFormData xmlns="https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework" FormatVersion="1">
2929
<Form Id="{FD19DEC6-81ED-447B-9D88-3AAD7DE499F1}" CustomData="CreateDT" FormType="PropertySheet" ForceRefresh="true">
3030
<Pages>
3131
<Page Assembly="AdminUI.DeploymentType.Rdp.dll" Namespace="RdpTechnology.AdminConsole" VendorId="Partner Company Name" Id="{6802BC91-30EF-49A5-80F6-D4902CD5181C}" Type="RdpDeploymentTechnologyPageControl" />

intune/configmgr/develop/apps/how-to-define-the-deployment-type-property-sheet-xml-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.collection: tier3
1515
ms.reviewer: mstewart
1616
---
1717
# How to Define the Deployment Type Property Sheet XML File
18-
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.
18+
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.
1919

2020
### To define the deployment type property page XML file
2121

@@ -25,7 +25,7 @@ To define the custom deployment type property page XML file, create an XML file
2525

2626
```xml
2727
<?xml version="1.0" encoding="utf-8" ?>
28-
<SmsFormData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" FormatVersion="1" xmlns="http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework">
28+
<SmsFormData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" FormatVersion="1" xmlns="https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework">
2929
<Form Id="f1908d6f-1ef8-4304-a229-c521c8e33713" FormType="PropertySheet">
3030
<Resources>
3131
<Title Name="_AppTitle" />

intune/configmgr/develop/apps/how-to-define-the-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To support the Installer, a custom XML schema should be included as part of the
4040

4141
```xml
4242
<?xml version="1.0" encoding="utf-8"?>
43-
<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">
43+
<xs:schema id="RdpInstaller" version="1" elementFormDefault="qualified" targetNamespace="https://schemas.microsoft.com/SystemsManagement/2009/ApplicationManagement" xmlns="http://schemas.microsoft.com/SystemsManagement/2009/ApplicationManagement" xmlns:xs="http://www.w3.org/2001/XMLSchema">
4444
<xs:complexType name="RdpInstaller">
4545
<xs:complexContent mixed="false">
4646
<xs:extension base="Installer">

intune/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-dialog-box.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In Configuration Manager, to create the form XML for a Configuration Manager dia
3232
```
3333
3434
<?xml version="1.0" encoding="utf-8"?>
35-
<SmsFormData FormatVersion="1.0" xmlns="http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework">
35+
<SmsFormData FormatVersion="1.0" xmlns="https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework">
3636
<Form Id="{DIALOGGUID}" CustomData="User Properties" FormType="CustomDialog" >
3737
<Assembly Name="ConfigMgrDialogControl" Namespace="Microsoft.ConfigurationManagement.AdminConsole.ConfigMgrDialogBox" ClassType="ConfigMgrDialogControl"/>
3838
</Form>

intune/configmgr/develop/core/servers/console/how-to-create-form-xml-for-a-configuration-manager-property-sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In Configuration Manager, to create the form XML for a Configuration Manager pro
3737

3838
```xml
3939
<?xml version="1.0" encoding="utf-8"?>
40-
<SmsFormData xmlns="http://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework" FormatVersion="1">
40+
<SmsFormData xmlns="https://schemas.microsoft.com/SystemsManagementServer/2005/03/ConsoleFramework" FormatVersion="1">
4141
<Form Id="PROPERTYSHEETGUID" CustomData="SomeData" FormType="PropertySheet" ForceRefresh="true">
4242
<Assembly Name="ConfigMgrControl.dll" Namespace="Microsoft.ConfigurationManagement.AdminConsole.ConfigMgrPropertySheet" />
4343
<Pages>

0 commit comments

Comments
 (0)