Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 create application wizard XML file
Create a Create Application Wizard XML file.
The following example from the RDP sample project shows how to define the Create Application Wizard XML file. Wizards aren't extensible for the UI. However, by creating this custom deployment technology XML, the contents of the wizard now include the ability to create an RDP deployment type.
<?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="CreateApp" 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>