Meilleur auteur de réponses
Fichier de réponse déploiement Windows10

Question
-
Bonjour,
Je souhaite déployer Windows 10 anniversary Entreprise x64. L'image est prête, et le déploiement fonctionne bien sauf un point concernant le fichier de réponse xml.
J'ai créé ce fichier de réponse avec Windows imaging and configuration Designer.
Globalement ça fonctionne bien sauf que ça ne passe pas automatiquement la sélection de la langue. Il faut que je clique sur suivant pour passer cette étape. Le reste se fait parfaitement bien.
Voici le fichier de réponse généré :
<?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"> <OEMInformation> <SupportPhone>9870</SupportPhone> <SupportURL>http://supportDSI</SupportURL> </OEMInformation> <CopyProfile>true</CopyProfile> <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-2YT43</ProductKey> <RegisteredOrganization>DSI</RegisteredOrganization> <RegisteredOwner>DSI</RegisteredOwner> <ComputerName>%ldHostname%</ComputerName> <AutoLogon> <Password> <Value>QABmADEAMABOAFYAOABtAGQAKgBQAGEAcwBzAHcAbwByAGQA</Value> <PlainText>false</PlainText> </Password> <Domain>mondomain</Domain> <Enabled>true</Enabled> <LogonCount>1</LogonCount> <Username>admin</Username> </AutoLogon> <ShowPowerButtonOnStartScreen>true</ShowPowerButtonOnStartScreen> </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>mondomain.fr</Domain> <Password>monpass</Password> <Username>admin</Username> </Credentials> <JoinDomain>mondomain.fr</JoinDomain> <MachineObjectOU>OU=Desktop,OU=Computers_GPO,DC=mondomain,DC=fr</MachineObjectOU> </Identification> </component> <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-Deployment" 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"> <RunSynchronous> <RunSynchronousCommand wcm:action="add"> <Order>1</Order> <Path>cscript.exe C:\Temp\Date_Master.vbs</Path> <Description>Insertion date installation</Description> </RunSynchronousCommand> </RunSynchronous> </component> </settings> <settings pass="oobeSystem"> <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"> <OOBE> <HideEULAPage>true</HideEULAPage> <HideLocalAccountScreen>true</HideLocalAccountScreen> <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen> <HideOnlineAccountScreens>true</HideOnlineAccountScreens> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <ProtectYourPC>2</ProtectYourPC> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>TgBlAHQAUABhAHMAcwAkAG8AcgBsAGUAYQBuAHMAUABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </Password> <DisplayName>admin</DisplayName> <Group>Administrateurs</Group> <Name>admin</Name> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings> <cpi:offlineImage cpi:source="wim:c:/windows/system32/sysprep/install.wim#Windows 10 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
Avez -vous une idée de ce qui peut bloquer ?
D'avance merci
- Modifié Fabien-VIRT lundi 24 octobre 2016 20:27
Réponses
-
place ton bloc:
<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>
dans la phase OOBE, comme ceci:
<?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"> <OEMInformation> <SupportPhone>9870</SupportPhone> <SupportURL>http://supportDSI</SupportURL> </OEMInformation> <CopyProfile>true</CopyProfile> <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-2YT43</ProductKey> <RegisteredOrganization>DSI</RegisteredOrganization> <RegisteredOwner>DSI</RegisteredOwner> <ComputerName>%ldHostname%</ComputerName> <AutoLogon> <Password> <Value>QABmADEAMABOAFYAOABtAGQAKgBQAGEAcwBzAHcAbwByAGQA</Value> <PlainText>false</PlainText> </Password> <Domain>mondomain</Domain> <Enabled>true</Enabled> <LogonCount>1</LogonCount> <Username>admin</Username> </AutoLogon> <ShowPowerButtonOnStartScreen>true</ShowPowerButtonOnStartScreen> </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>mondomain.fr</Domain> <Password>monpass</Password> <Username>admin</Username> </Credentials> <JoinDomain>mondomain.fr</JoinDomain> <MachineObjectOU>OU=Desktop,OU=Computers_GPO,DC=mondomain,DC=fr</MachineObjectOU> </Identification> </component> <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-Deployment" 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"> <RunSynchronous> <RunSynchronousCommand wcm:action="add"> <Order>1</Order> <Path>cscript.exe C:\Temp\Date_Master.vbs</Path> <Description>Insertion date installation</Description> </RunSynchronousCommand> </RunSynchronous> </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"> <OOBE> <HideEULAPage>true</HideEULAPage> <HideLocalAccountScreen>true</HideLocalAccountScreen> <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen> <HideOnlineAccountScreens>true</HideOnlineAccountScreens> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <ProtectYourPC>2</ProtectYourPC> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>TgBlAHQAUABhAHMAcwAkAG8AcgBsAGUAYQBuAHMAUABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </Password> <DisplayName>admin</DisplayName> <Group>Administrateurs</Group> <Name>admin</Name> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings> <cpi:offlineImage cpi:source="wim:c:/windows/system32/sysprep/install.wim#Windows 10 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
B.
- Proposé comme réponse Krash Mole mercredi 26 octobre 2016 08:11
- Marqué comme réponse Teodora Sharkova lundi 31 octobre 2016 16:22
Toutes les réponses
-
place ton bloc:
<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>
dans la phase OOBE, comme ceci:
<?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"> <OEMInformation> <SupportPhone>9870</SupportPhone> <SupportURL>http://supportDSI</SupportURL> </OEMInformation> <CopyProfile>true</CopyProfile> <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-2YT43</ProductKey> <RegisteredOrganization>DSI</RegisteredOrganization> <RegisteredOwner>DSI</RegisteredOwner> <ComputerName>%ldHostname%</ComputerName> <AutoLogon> <Password> <Value>QABmADEAMABOAFYAOABtAGQAKgBQAGEAcwBzAHcAbwByAGQA</Value> <PlainText>false</PlainText> </Password> <Domain>mondomain</Domain> <Enabled>true</Enabled> <LogonCount>1</LogonCount> <Username>admin</Username> </AutoLogon> <ShowPowerButtonOnStartScreen>true</ShowPowerButtonOnStartScreen> </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>mondomain.fr</Domain> <Password>monpass</Password> <Username>admin</Username> </Credentials> <JoinDomain>mondomain.fr</JoinDomain> <MachineObjectOU>OU=Desktop,OU=Computers_GPO,DC=mondomain,DC=fr</MachineObjectOU> </Identification> </component> <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-Deployment" 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"> <RunSynchronous> <RunSynchronousCommand wcm:action="add"> <Order>1</Order> <Path>cscript.exe C:\Temp\Date_Master.vbs</Path> <Description>Insertion date installation</Description> </RunSynchronousCommand> </RunSynchronous> </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"> <OOBE> <HideEULAPage>true</HideEULAPage> <HideLocalAccountScreen>true</HideLocalAccountScreen> <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen> <HideOnlineAccountScreens>true</HideOnlineAccountScreens> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <ProtectYourPC>2</ProtectYourPC> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>TgBlAHQAUABhAHMAcwAkAG8AcgBsAGUAYQBuAHMAUABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </Password> <DisplayName>admin</DisplayName> <Group>Administrateurs</Group> <Name>admin</Name> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings> <cpi:offlineImage cpi:source="wim:c:/windows/system32/sysprep/install.wim#Windows 10 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
B.
- Proposé comme réponse Krash Mole mercredi 26 octobre 2016 08:11
- Marqué comme réponse Teodora Sharkova lundi 31 octobre 2016 16:22
-