This repository was archived by the owner on Dec 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDeployWiz_UserDataRestore.xml
More file actions
executable file
·76 lines (66 loc) · 2.4 KB
/
DeployWiz_UserDataRestore.xml
File metadata and controls
executable file
·76 lines (66 loc) · 2.4 KB
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
<?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_UserDataRestore.vbs</CustomScript>
</Global>
<Pane id="UserDataRestore" title="User Data (Restore)">
<Body>
<![CDATA[
<H1>Specify whether to restore user data.</H1>
<table>
<tr>
<td>
<input type=radio name="UserDataLocation" id="UDRadio1" checked value="NONE" language=vbscript onclick=ValidateUserDataRestoreLocation AccessKey=r>
</td>
<td>
<Label class="Larger" for=UDRadio1 language=vbscript >Do not <u class=larger>r</u>estore user data and settings.</Label>
</td>
</tr>
<tr>
<td></td>
<td>
<p>This is not a replacement computer, so there are no user data and settings to restore.</p>
</td>
</tr>
<tr><td colspan=2> </td></tr>
<tr>
<td>
<input type=radio name="UserDataLocation" id="UDRadio2" Value="NETWORK" language=vbscript onclick=ValidateUserDataRestoreLocation 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>Restore user data and settings from a network location created from a different machine.</div>
<br>
<div>L<u>o</u>cation:</div>
<input type=text id="StatePath" name="StatePath" size=65 disabled language=vbscript AccessKey=O>
<input type="button" id="StatePathBrowse" style="display: none;" onclick="javascript:StatePath.value = BrowseForFolder(StatePath.value);" Value="Browse" disabled /><br/>(Full network path to previously saved USMT data files).<br/>
<div><label class=ErrMsg for=StatePath>* Required (MISSING)</label> <label class=ErrMsg id=InvalidPath>* Invalid path!</label><br/></div>
</td>
</tr>
</table>
]]>
</Body>
<Initialization><![CDATA[InitializeUserDataRestoreLocation]]></Initialization>
<Validation><![CDATA[ValidateUserDataRestoreLocation]]></Validation>
</Pane>
</Wizard>