-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDeployWiz_SelectTS.xml
executable file
·44 lines (36 loc) · 1.35 KB
/
DeployWiz_SelectTS.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8" ?>
<!--
' // ***************************************************************************
' //
' // Copyright (c) Microsoft Corporation. All rights reserved.
' //
' // Microsoft Deployment Toolkit Solution Accelerator
' //
' // File: DeployWiz_SelectTS.xml
' //
' // Version: 6.3.8330.1000
' //
' // Purpose: Main Client Deployment Wizard Defintion File
' //
' // ***************************************************************************
-->
<Wizard>
<Global>
<CustomScript>DeployWiz_SelectTS.vbs</CustomScript>
</Global>
<Pane id="SelectTaskSequence" title="Task Sequence">
<Condition><![CDATA[UCASE(Property("SkipTaskSequence"))<>"YES" ]]></Condition>
<Body>
<![CDATA[
<H1>Select a task sequence to execute on this computer.</H1>
<label class=ErrMsg id=Bad_OSGUID>Bad Task Sequence Item (Missing OS)</label>
<div class=TreeList id=TSListBox style="height: expression( GetDynamicListBoxSize(this) );">
<label class=errmsg style="display: inline;" >No task sequences are available (TaskSequences.xml does not exist, is empty, or is inaccessible)</label>
<!-- List goes here -->
</div>
]]>
</Body>
<Initialization><![CDATA[InitializeTSList]]></Initialization>
<Validation><![CDATA[ValidateTSList]]></Validation>
</Pane>
</Wizard>