Ajout dela structure MDT dans Infra-LAB
This commit is contained in:
@@ -0,0 +1,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.8456.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>
|
||||
Reference in New Issue
Block a user