-
Notifications
You must be signed in to change notification settings - Fork 1
/
DeployWiz_AdminPassword.xml
executable file
·58 lines (46 loc) · 1.67 KB
/
DeployWiz_AdminPassword.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
<?xml version="1.0" encoding="utf-8" ?>
<!--
' // ***************************************************************************
' //
' // Copyright (c) Microsoft Corporation. All rights reserved.
' //
' // Microsoft Deployment Toolkit Solution Accelerator
' //
' // File: DeployWiz_AdminPassword.xml
' //
' // Version: 6.3.8330.1000
' //
' // Purpose: Wizard pane for specifying Administrator account password
' //
' // ***************************************************************************
-->
<Wizard>
<Global>
<CustomScript>DeployWiz_AdminPassword.vbs</CustomScript>
</Global>
<Pane id="AdministratorPassword" title="Administrator Password">
<Body>
<![CDATA[
<H1>Specify the Administrator account password.</H1>
<p>This password will be used for logging onto the computer after a restart.</p>
<table>
<tr valign=top>
<td width=100>
<img src="DeployWiz_Administrator.png">
</td>
<td width="100%">
Administrator Password: <br>
<input type=password id="Password1" name="AdminPassword" size=20 language=vbscript onchange=ValidatePassword onpropertychange=ValidatePassword>
<label class=ErrMsg For=Password1>* Required (MISSING)</label><br><br>
Confirm Administrator Password: <br>
<input type=password id="Password2" size=20 language=vbscript onchange=ValidatePassword onpropertychange=ValidatePassword>
<label id=NonMatchPassword class=ErrMsg For=Password2>* Passwords do not match!</label><br><br>
</td>
</tr>
</table>
]]>
</Body>
<Initialization><![CDATA[ Password2.Value = Password1.Value ]]></Initialization>
<Validation><![CDATA[ValidatePassword]]></Validation>
</Pane>
</Wizard>