Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.77 KB

how-to-define-the-create-deployment-type-wizard-xml-file.md

File metadata and controls

38 lines (33 loc) · 1.77 KB
title description titleSuffix ms.date ms.subservice ms.service ms.topic ms.assetid author ms.author manager ms.localizationpriority ms.collection ms.reviewer
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 schema.
Configuration Manager
09/20/2016
sdk
configuration-manager
how-to
249a6d47-c45f-491d-a846-8082665c6185
Banreet
banreetkaur
apoorvseth
low
tier3
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 create deployment type wizard XML file

  1. Create a Create Deployment Type Wizard XML file.

    The following example from the RDP sample project demonstrates how to define the Deployment Type Wizard XML file.

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

See Also

Configuration Manager Reference