-
Notifications
You must be signed in to change notification settings - Fork 1
/
DeployWiz_Credentials.xml
executable file
·60 lines (50 loc) · 2.01 KB
/
DeployWiz_Credentials.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
<?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_Credentials.vbs</CustomScript>
</Global>
<Pane id="Credentials">
<Body>
<![CDATA[
<h1>Specify credentials for connecting to network shares.</h1>
<table>
<tr valign=top>
<td width=80>
<img src="DeployWiz_Credentials.png">
</td>
<td>
<span style="width: 100px;"><u >U</u>ser Name:</span>
<input type=text id=username name="UserID" size=37 language=vbscript onpropertychange=ValidateCredentials AccessKey=U><br>
<label class=ErrMsg for=username>* Required (MISSING)</label><br>
<span style="width: 100px;"><u>P</u>assword:</span>
<input type=password id=userpassword name="UserPassword" size=37 language=vbscript onpropertychange=ValidateCredentials AccessKey=P><br>
<label class=ErrMsg for=userpassword>* Required (MISSING)</label><br>
<span style="width: 100px;"><u>D</u>omain:</span>
<input type=text id=userdomain name="UserDomain" size=37 language=vbscript onpropertychange=ValidateCredentials AccessKey=D><br>
<label class=ErrMsg for=userdomain>* Required (MISSING)</label><br>
</td>
</tr>
</table>
<label class=ErrMsg id=InvalidCredentials>* Invalid credentials</label>
]]>
</Body>
<Initialization><![CDATA[ If Property("UserDomain") = Property("ComputerName") then userdomain.Value = "" ]]></Initialization>
<Initialization><![CDATA[ ParseAllWarningLabelsEx userdomain, username ]]></Initialization>
<Validation><![CDATA[ValidateCredentialsEx]]></Validation>
</Pane>
</Wizard>