Files
Infra-LAB/projects/MDT/Scripts/DeployWiz_Credentials.xml

61 lines
1.9 KiB
XML

<?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.8456.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>