Jump to content

How Deploy two operating system with DualBoot?


Recommended Posts

Hi Friends, Me again, now I need deploy two operating systems in dual boot with MDT 2010, but the unattend instalation process fails. the system shows me wich operating system I want to deploy but does not apply the other partitions. this is my unattend. somebody catch what is wrong?

The Idea is:

Windows XP in C partition

User Data shared in D partition

Windows Vista in E partition

Deployed with Server 2008 R2 x64

thanks a Lot in advance.

Best Regards

<?xml version="1.0" encoding="utf-8"?>

<unattend xmlns="urn:schemas-microsoft-com:unattend">

<servicing></servicing>

<settings pass="oobeSystem">

<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" 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>RwBEAHYANQAuAFAAQAAkACQAQQBEAE0AMQBOAFAAYQBzAHMAdwBvAHIAZAA=</Value>

<PlainText>false</PlainText>

</Password>

<Enabled>true</Enabled>

<LogonCount>3</LogonCount>

<Username>SoporteCau</Username>

</AutoLogon>

<UserAccounts>

<LocalAccounts>

<LocalAccount wcm:action="add">

<Password>

<Value>RwBEAHYANQAuAFAAQAAkACQAQQBEAE0AMQBOAFAAYQBzAHMAdwBvAHIAZAA=</Value>

<PlainText>false</PlainText>

</Password>

<DisplayName>SoporteCau</DisplayName>

<Group>Administrators</Group>

<Name>SoporteCau</Name>

</LocalAccount>

</LocalAccounts>

<AdministratorPassword>

<Value>RwBEAHYANQAuAFAAQAAkACQAQQBEAE0AMQBOAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>

<PlainText>false</PlainText>

</AdministratorPassword>

</UserAccounts>

<TimeZone>Central Standard Time (Mexico)</TimeZone>

<OOBE>

<HideEULAPage>true</HideEULAPage>

<NetworkLocation>Work</NetworkLocation>

<ProtectYourPC>1</ProtectYourPC>

<SkipUserOOBE>true</SkipUserOOBE>

</OOBE>

<RegisteredOrganization>KPMG</RegisteredOrganization>

<RegisteredOwner>KPMG</RegisteredOwner>

</component>

<component name="Microsoft-Windows-International-Core" processorArchitecture="x86" 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>080a:0000080a</InputLocale>

<SystemLocale>mx-US</SystemLocale>

<UILanguage>mx-US</UILanguage>

<UserLocale>mx-US</UserLocale>

<UILanguageFallback></UILanguageFallback>

</component>

</settings>

<settings pass="windowsPE">

<component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<SetupUILanguage>

<UILanguage>080a:00000409</UILanguage>

<WillShowUI>Never</WillShowUI>

</SetupUILanguage>

<InputLocale>080a:0000080a</InputLocale>

<LayeredDriver>1</LayeredDriver>

<SystemLocale>es-MX</SystemLocale>

<UILanguage></UILanguage>

<UILanguageFallback>es-MX</UILanguageFallback>

<UserLocale>es-MX</UserLocale>

</component>

<component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<Display>

<ColorDepth>32</ColorDepth>

<HorizontalResolution>1024</HorizontalResolution>

<VerticalResolution>768</VerticalResolution>

<RefreshRate>60</RefreshRate>

</Display>

<DiskConfiguration>

<WillShowUI>OnError</WillShowUI>

<Disk wcm:action="add">

<DiskID>0</DiskID>

<WillWipeDisk>true</WillWipeDisk>

<CreatePartitions>

<!-- Create the Windows partition and fill the rest of the hard disk -->

<CreatePartition>

<Order>1</Order>

<Type>Primary</Type>

<Extend>false</Extend>

<Size>20000</Size>

</CreatePartition>

<CreatePartition>

<Order>2</Order>

<Size>20000</Size>

<Type>Primary</Type>

</CreatePartition>

<CreatePartition>

<Extend>true</Extend>

<Order>3</Order>

<Type>Primary</Type>

</CreatePartition>

</CreatePartitions>

<ModifyPartitions>

<!-- Modify the system partition-->

<ModifyPartition>

<Order>1</Order>

<PartitionID>1</PartitionID>

<Format>NTFS</Format>

<Label>Windows_XP</Label>

<Letter>C</Letter>

</ModifyPartition>

<!-- Modify the Windows partition -->

<ModifyPartition>

<Order>3</Order>

<Label>Windows_Vista</Label>

<PartitionID>3</PartitionID>

<Letter>E</Letter>

<Format>NTFS</Format>

</ModifyPartition>

<ModifyPartition>

<Order>2</Order>

<Format>NTFS</Format>

<PartitionID>2</PartitionID>

<Label>User_Data</Label>

<Letter>D</Letter>

</ModifyPartition>

</ModifyPartitions>

</Disk>

</DiskConfiguration>

<ImageInstall>

<OSImage>

<InstallFrom>

<Credentials>

<Domain>image</Domain>

<Password>Pa$$w0rd$$</Password>

<Username>Administrator</Username>

</Credentials>

<Path>\\192.168.1.2\reminst\Images\GD32\DELL.wim</Path>

<MetaData wcm:action="add">

<Key>/IMAGE/INDEX</Key>

<Value>1</Value>

</MetaData>

</InstallFrom>

<InstallTo>

<DiskID>0</DiskID>

<PartitionID>1</PartitionID>

</InstallTo>

<WillShowUI>OnError</WillShowUI>

<InstallToAvailablePartition>false</InstallToAvailablePartition>

</OSImage>

<DataImage wcm:action="add">

<InstallTo>

<DiskID>0</DiskID>

<PartitionID>2</PartitionID>

</InstallTo>

<InstallFrom>

<Credentials>

<Domain>image</Domain>

<Password>Pa$$w0rd$$</Password>

<Username>Administrator</Username>

</Credentials>

<Path>\\192.168.1.2\reminst\HTA\Lab\D_drive.wim</Path>

<MetaData wcm:action="add">

<Key>/IMAGE/INDEX</Key>

<Value>1</Value>

</MetaData>

</InstallFrom>

<Order>1</Order>

</DataImage>

</ImageInstall>

<WindowsDeploymentServices>

<Login>

<Credentials>

<Domain>image</Domain>

<Password>Pa$$w0rd$$</Password>

<Username>Administrator</Username>

</Credentials>

<WillShowUI>OnError</WillShowUI>

</Login>

<ImageSelection>

<InstallImage>

<Filename>GD42_DELL.wim</Filename>

<ImageGroup>DualBoot</ImageGroup>

<ImageName>GD4.2 para D630 en DualBoot</ImageName>

</InstallImage>

<InstallTo>

<DiskID>0</DiskID>

<PartitionID>3</PartitionID>

</InstallTo>

<WillShowUI>OnError</WillShowUI>

</ImageSelection>

</WindowsDeploymentServices>

</component>

</settings>

<settings pass="specialize">

<component name="Microsoft-Windows-International-Core" processorArchitecture="x86" 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>080a:0000080a</InputLocale>

<SystemLocale>mx-US</SystemLocale>

<UILanguage>mx-US</UILanguage>

<UserLocale>mx-US</UserLocale>

<UILanguageFallback></UILanguageFallback>

</component>

<component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="x86" 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>

<JoinWorkgroup>CauTemp</JoinWorkgroup>

</Identification>

</component>

<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" 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>*</ComputerName>

<RegisteredOwner>XXXXX</RegisteredOwner>

<RegisteredOrganization>XXXX</RegisteredOrganization>

<ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey>

<DisableAutoDaylightTimeSet>true</DisableAutoDaylightTimeSet>

</component>

</settings>

<settings pass="generalize">

<component name="Microsoft-Windows-Security-Licensing-SLC" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<SkipRearm>1</SkipRearm>

</component>

</settings>

<cpi:offlineImage cpi:source="catalog://deploysrv2010/reminst/hta/lab/gdv5_rc_base_gdv5 factory mode.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />

</unattend>

Edited by Sacriestory
Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...