Bonjour,
Pour mon examen je prépare des projets à présenter et parmi ces projets, j'ai pris le WDS.
Donc je bosse dessus dans le but d'approfondir le projet. J'ai tous d'abord réfléchis à déployer un OS sans cliquer sur suivant à chaque fois (sans assistance). Pour cela, pas de soucis j'ai réussi.
Ensuite, la seconde manœuvre que je souhaite faire, c'est une fois l'OS déployé, l'ordinateur ai un nom, qu'il intègre le domaine et qu'il se connecte automatiquement à la session. Je crée alors mon fichier de réponse, puis je teste. Après le déploiement, l'utilisateur n'est pas directement connecté, il faut que je rentre ses identifiants (Client1/mdp), je vais alors voir si son PC a été renommé et si il est dans le domaine (e4-sio.local), le nom du PC a bien été ajouté, mais la machine n'est pas dans le domaine.
J'ai donc 2 problèmes : La connexion non automatique, et l'intégration de domaine.
Je précise que j'effectue ces test sur machine virtuelle avec virtual box.
Une petite solution svp ?
Mon fichier de réponse est le suivant
Spoiler :
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ComputerName>TestClient</ComputerName>
<RegisteredOwner>Utilisateur</RegisteredOwner>
<TimeZone>pacific standard time</TimeZone>
<ProductKey>FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4</ProductKey>
</component>
<component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Identification>
<Credentials>
<Domain>e4-sio.local</Domain>
<Password>mdp</Password>
<Username>Admin</Username>
</Credentials>
<JoinDomain>e4-sio.local</JoinDomain>
</Identification>
</component>
</settings>
<settings pass="oobeSystem">
<component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<InputLocale>fr-fr</InputLocale>
<SystemLocale>fr-fr</SystemLocale>
<UILanguage>fr-fr</UILanguage>
<UILanguageFallback>fr-fr</UILanguageFallback>
<UserLocale>fr-fr</UserLocale>
</component>
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AutoLogon>
<Password>
<Value>bQBkAHAAUABhAHMAcwB3AG8AcgBkAA==</Value>
<PlainText>false</PlainText>
</Password>
<Domain>e4-sio.local</Domain>
<Enabled>true</Enabled>
<LogonCount>5</LogonCount>
<Username>Utilisateur</Username>
</AutoLogon>
<OOBE>
<HideEULAPage>true</HideEULAPage>
<HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
<NetworkLocation>Work</NetworkLocation>
<ProtectYourPC>1</ProtectYourPC>
</OOBE>
<UserAccounts>
<AdministratorPassword>
<Value>bQBkAHAAQQBkAG0AaQBuAGkAcwB0AHIAYQB0AG8AcgBQAGEAcwBzAHcAbwByAGQA</Value>
<PlainText>false</PlainText>
</AdministratorPassword>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value>bQBkAHAAUABhAHMAcwB3AG8AcgBkAA==</Value>
<PlainText>false</PlainText>
</Password>
<DisplayName>Client1</DisplayName>
<Group>Administrateur</Group>
<Name>Client1</Name>
</LocalAccount>
</LocalAccounts>
<DomainAccounts>
<DomainAccountList wcm:action="add">
<Domain>e4-sio.local</Domain>
<DomainAccount wcm:action="add">
<Group>Utilisateurs du domaine</Group>
<Name>Utilisateur</Name>
</DomainAccount>
</DomainAccountList>
</DomainAccounts>
</UserAccounts>
<RegisteredOwner>Utilisateur</RegisteredOwner>
<TimeZone>pacific standard time</TimeZone>
</component>
</settings>
<cpi:offlineImage cpi:source="wim://e4wds/reminst/win7c.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend> |