-
Notifications
You must be signed in to change notification settings - Fork 1
/
DeployWiz_ComputerBackup.xml
executable file
·91 lines (82 loc) · 2.93 KB
/
DeployWiz_ComputerBackup.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
<?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_ComputerBackup.vbs</CustomScript>
</Global>
<Pane id="ComputerBackup" title="Computer Backup">
<Body><![CDATA[
<H1>Specify where to save a complete computer backup.</H1>
<table>
<tr>
<td>
<input type=radio name="ComputerBackupLocation" id="CBRadio1" value="AUTO" language=vbscript onclick=ValidateComputerBackupLocation AccessKey=A>
</td>
<td>
<Label class="Larger" for=CBRadio1 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 language=vbscript onclick="javascript:CBRadio1.value= this.checked?'AUTO':'NETWORK';" AccessKey=L>
<Label for=AllowLocal>Allow the computer backup to be stored <u>l</u>ocally when possible.</Label>
</td>
</tr>
<tr><td colspan=2> </td></tr>
<tr>
<td>
<input type=radio name="ComputerBackupLocation" id="CBRadio2" Value="SpecifyLocation" language=vbscript onclick=ValidateComputerBackupLocation AccessKey=S>
</td>
<td>
<Label class="Larger" for=CBRadio2 language=vbscript ><u class=larger>S</u>pecify a location.</Label>
</td>
</tr>
<tr>
<td></td>
<td>
<div>Save the computer backup to the specified location.</div>
<br>
<div>L<u>o</u>cation: <label class=ErrMsg for=DataPath>* Required (MISSING)</label></div>
<input type=text id="DataPath" size=65 disabled language=vbscript onpropertychange=ValidateComputerBackupLocation AccessKey=O>
<input type="button" id="DataPathBrowse" language=vbscript onclick="javascript:DataPath.value = BrowseForFolder(DataPath.value);" Value="Browse" disabled />
</td>
</tr>
<tr><td colspan=2> </td></tr>
<tr>
<td>
<input type=radio name="ComputerBackupLocation" id="CBRadio3" checked value="NONE" language=vbscript onclick=ValidateComputerBackupLocation AccessKey=K>
</td>
<td>
<Label class="Larger" for=CBRadio3 language=vbscript >Do not bac<u class=larger>k</u> up the existing computer.</Label>
</td>
</tr>
<tr>
<td></td>
<td>
<p>No backup should be performed.</p>
</td>
</tr>
</table>
]]>
</Body>
<Initialization><![CDATA[InitializeComputerBackupLocation]]></Initialization>
<Validation><![CDATA[ValidateComputerBackupLocation]]></Validation>
</Pane>
</Wizard>