MSFN Forum: Error in disk configuration - MSFN Forum

Jump to content


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Error in disk configuration

#1 User is offline   kenpachizero 

  • Group: Members
  • Posts: 8
  • Joined: 14-October 12
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 14 October 2012 - 08:35 PM

Hey everyone,
i am having problems with the disk configuration section,
im just not sure where i went wrong, if someone can see what is wrong that would be awesome!
thanks in advanced


#2 User is offline   kenpachizero 

  • Group: Members
  • Posts: 8
  • Joined: 14-October 12
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 14 October 2012 - 08:56 PM

Sorry forgot to attach file

Attached File(s)



#3 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,397
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 15 October 2012 - 07:44 AM

You can try to change the values inside your Autounattend.xml file like this:

<DiskConfiguration>
    <WillShowUI>OnError</WillShowUI>
    <Disk wcm:action="add">
      <DiskID>0</DiskID>
      <WillWipeDisk>true</WillWipeDisk>
      <CreatePartitions>
         <CreatePartition wcm:action="add">
<!-- Create the system partition-->
            <Order>1</Order>
            <Type>Primary</Type>
            <Size>100</Size>
         </CreatePartition>
<!-- Create the Windows partition and fill the rest of the hard disk -->
         <CreatePartition wcm:action="add">
            <Order>2</Order>
            <Type>Primary</Type>
            <Extend>true</Extend>
         </CreatePartition>
      </CreatePartitions>
      <ModifyPartitions>
<!-- Modify the system partition-->
         <ModifyPartition wcm:action="modify">
            <Order>1</Order>
            <PartitionID>1</PartitionID>
            <Format>NTFS</Format>
            <Label>System</Label>
         </ModifyPartition>
<!-- Modify the Windows partition -->
         <ModifyPartition wcm:action="modify">
            <Order>2</Order>
            <PartitionID>2</PartitionID>
            <Format>NTFS</Format>
            <Label>Windows</Label>
            <Letter>C</Letter>
         </ModifyPartition>
      </ModifyPartitions>
   </Disk>
    <Disk wcm:action="add">
      <DiskID>1</DiskID>
      <WillWipeDisk>true</WillWipeDisk>
      <CreatePartitions>
<!-- Create a data partition and fill the rest of the hard disk -->
         <CreatePartition wcm:action="add">
            <Order>1</Order>
            <Type>Primary</Type>
            <Extend>true</Extend>
         </CreatePartition>
      </CreatePartitions>
      <ModifyPartitions>
<!-- Modify the system partition-->
         <ModifyPartition wcm:action="modify">
            <Order>1</Order>
            <PartitionID>1</PartitionID>
            <Format>NTFS</Format>
            <Label>Data</Label>
            <Letter>E</Letter>
         </ModifyPartition>
      </ModifyPartitions>
   </Disk>
</DiskConfiguration>



*Edit: It's needed to take care with these setttings and check the HDD order sequence inside the BIOS first!

This post has been edited by myselfidem: 15 October 2012 - 07:48 AM


#4 User is offline   kenpachizero 

  • Group: Members
  • Posts: 8
  • Joined: 14-October 12
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 15 October 2012 - 05:06 PM

OK thanks, i'll try this tomorrow

#5 User is offline   kenpachizero 

  • Group: Members
  • Posts: 8
  • Joined: 14-October 12
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 15 October 2012 - 07:38 PM

Hello myselfidem,
i tried that section but it still did not work, do you know if there is a way to log what it is doing?

#6 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,397
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 16 October 2012 - 12:51 AM

You need also to add:

<ImageInstall>
                <OSImage>
                    <InstallFrom>
                        <MetaData wcm:action="add">
                            <Key>/IMAGE/NAME</Key>
                            <Value>Windows 7 PROFESSIONAL</Value>
                        </MetaData>
                    </InstallFrom>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>2</PartitionID>
                    </InstallTo>
                    <WillShowUI>OnError</WillShowUI>
                    <InstallToAvailablePartition>false</InstallToAvailablePartition>
                </OSImage>
            </ImageInstall>




You can also remove the last line, or change manually the correct path:
<cpi:offlineImage cpi:source="wim:c:/users/jake.hardy/desktop/en_windows_7_professional_x64_dvd_x15-65805(1)/sources/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" />



Example mine :
<cpi:offlineImage cpi:source="wim:c:/Win7_SP1/sources/install.wim#Windows 7 ULTIMATE" xmlns:cpi="urn:schemas-microsoft-com:cpi" />



To avoid errors check your file with WSIM.

This post has been edited by myselfidem: 16 October 2012 - 12:55 AM


#7 User is offline   kenpachizero 

  • Group: Members
  • Posts: 8
  • Joined: 14-October 12
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 16 October 2012 - 12:59 AM

Hey thanks for that,
i have been building the script via windows aik,
i will try soon

#8 User is offline   maxXPsoft 

  • MSFN Master
  • Group: Developers
  • Posts: 2,752
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 16 October 2012 - 05:26 AM

View Postkenpachizero, on 15 October 2012 - 07:38 PM, said:

do you know if there is a way to log what it is doing?

yes, it is extremely logging everything it does

Here is how you can capture the logs
http://www.msfn.org/...486#entry888486

#9 User is offline   kenpachizero 

  • Group: Members
  • Posts: 8
  • Joined: 14-October 12
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 16 October 2012 - 06:12 PM

Hello maxXPsoft,
i am getting the files now

This post has been edited by kenpachizero: 16 October 2012 - 06:21 PM


#10 User is offline   kenpachizero 

  • Group: Members
  • Posts: 8
  • Joined: 14-October 12
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 16 October 2012 - 06:25 PM

i'll see if i can find out what is wrong, or if you find it faster please let me know, thanks

Attached File(s)



#11 User is offline   kenpachizero 

  • Group: Members
  • Posts: 8
  • Joined: 14-October 12
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 16 October 2012 - 06:53 PM

i see where i went wrong, the pagefile i choose its for windows pe not windows
i should also say thank you for your help guys!

This post has been edited by kenpachizero: 16 October 2012 - 09:19 PM


#12 User is offline   maxXPsoft 

  • MSFN Master
  • Group: Developers
  • Posts: 2,752
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 17 October 2012 - 05:59 AM

Yes that was an easy one. Most the time you have to look at setupact.log or in one of the sub folders if it makes it into actually installing. I've had errors in setuperr.log that are not the actual error and mean nothing

This post has been edited by maxXPsoft: 17 October 2012 - 06:00 AM


Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy