-
Notifications
You must be signed in to change notification settings - Fork 1
/
DeployWiz_UserData.xml
executable file
·92 lines (83 loc) · 2.91 KB
/
DeployWiz_UserData.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8" ?>
<!--
' // ***************************************************************************
' //
' // Copyright (c) Microsoft Corporation. All rights reserved.
' //
' // Microsoft Deployment Toolkit Solution Accelerator
' //
' // File: DeployWiz_Definition_ENU.wsf
' //
' // Version: 6.3.8330.1000
' //
' // Purpose: Main Client Deployment Wizard Defintion File
' //
' // ***************************************************************************
-->
<Wizard>
<Global>
<CustomScript>DeployWiz_UserData.vbs</CustomScript>
</Global>
<Pane id="UserData" title="User Data">
<Body>
<![CDATA[
<H1>Specify where to save your data and settings.</H1>
<table>
<tr>
<td>
<input type=radio name="UserDataLocation" id="UDRadio1" value="AUTO" language=vbscript onclick=ValidateUserDataLocation AccessKey=A>
</td>
<td>
<Label class="Larger" for=UDRadio1 language=vbscript ><u class=larger>A</u>utomatically determine the location.</Label>
</td>
</tr>
<tr>
<td></td>
<td>
<div>Let the system determine the best location based on available disk space.</div>
<br>
<input type=checkbox id="AllowLocal" checked onclick="javascript:UDRadio1.value= this.checked?'AUTO':'NETWORK';" AccessKey=L>
<Label for=AllowLocal>Allow data and settings to be stored <u>l</u>ocally when possible.</Label>
</td>
</tr>
<tr><td colspan=2> </td></tr>
<tr>
<td>
<input type=radio name="UserDataLocation" id="UDRadio2" Value="SpecifyLocation" language=vbscript onclick=ValidateUserDataLocation AccessKey=S>
</td>
<td>
<Label class="Larger" for=UDRadio2 language=vbscript ><u class=larger>S</u>pecify a location.</Label>
</td>
</tr>
<tr>
<td></td>
<td>
<div>Save all configuration information for later restoration.</div>
<br>
<div>L<u>o</u>cation: <label class=ErrMsg for=DataPath>* Required (MISSING)</label><label class=ErrMsg id=InvalidPath>* Invalid local path!</label></div>
<input type=text id="DataPath" size=65 disabled language=vbscript onpropertychange=ValidateUserDataLocation AccessKey=O>
<input type="button" id="DataPathBrowse" onclick="javascript:DataPath.value = BrowseForFolder(DataPath.value);" Value="Browse" disabled />
</td>
</tr>
<tr><td colspan=2> </td></tr>
<tr>
<td>
<input type=radio name="UserDataLocation" id="UDRadio3" checked value="NONE" language=vbscript onclick=ValidateUserDataLocation AccessKey=V>
</td>
<td>
<Label class="Larger" for=UDRadio3 language=vbscript >Do not sa<u class=larger>v</u>e data and settings.</Label>
</td>
</tr>
<tr>
<td></td>
<td>
<p>All user data and settings will be lost.</p>
</td>
</tr>
</table>
]]>
</Body>
<Initialization><![CDATA[InitializeUserDataLocation]]></Initialization>
<Validation><![CDATA[ValidateUserDataLocation]]></Validation>
</Pane>
</Wizard>