Jump to content

Ask your Seven xml ? here


Recommended Posts

yes have to check for version you have

DisableFirstRunWizard

Specifies whether to skip the First Run Wizard when the user opens Internet Explorer for the first time.

Internet Explorer 8 through Internet Explorer 10

Edited by maxXPsoft
Link to comment
Share on other sites


  • 3 weeks later...

SkipMachineOOBE and SkipUserOOBE are not valid for Windows 7. SkipReArm will only work if the install image was created using that setting.

Thanks sir. So can I delete 3 sections (SkipMachineOOBE, SkipUserOOBE and SkipReArm) from my autounattend.xml file?

Link to comment
Share on other sites

Thanks sir. So can I delete 3 sections (SkipMachineOOBE, SkipUserOOBE and SkipReArm) from my autounattend.xml file?

Yes. My activation problem is solved by deleting 3 sections (SkipMachineOOBE, SkipUserOOBE and SkipReArm). But before desktop setup shows option to select OEM logo (Brand logo) and Information now.

Link to comment
Share on other sites

  • 2 weeks later...

When installing Windows in UEFI mode, do I need to format the two system partitions in any way? I am reading this, and it only covers the creation (and for some reason they say the first partition should be 200MB, but everywhere I look it's usually only 100).

Link to comment
Share on other sites

When installing Windows in UEFI mode, do I need to format the two system partitions in any way? I am reading this, and it only covers the creation (and for some reason they say the first partition should be 200MB, but everywhere I look it's usually only 100).

When manually installing windows creates nessesary partitions itself. With XML this is a part of my UEFI XML for virtual machine (Formats and creates partitions on a single drive). Might be dangerous on a multi-drive system as the wrong disk may be selected for format (thats why i never use automatic partitioning on a real machine in XML). Goes under windowsPE pass under diskconfiguration:

<DiskConfiguration> <Disk wcm:action="add">                <DiskID>0</DiskID>                <WillWipeDisk>true</WillWipeDisk>                <CreatePartitions>                  <CreatePartition wcm:action="add">                    <Order>1</Order>                    <Type>Primary</Type>                    <Size>300</Size>                  </CreatePartition>                  <CreatePartition wcm:action="add">                    <Order>2</Order>                    <Type>EFI</Type>                    <Size>100</Size>                  </CreatePartition>                  <CreatePartition wcm:action="add">                    <Order>3</Order>                    <Type>MSR</Type>                    <Size>128</Size>                  </CreatePartition>                  <CreatePartition wcm:action="add">                    <Order>4</Order>                    <Type>Primary</Type>                    <Extend>true</Extend>                  </CreatePartition>                </CreatePartitions>                <ModifyPartitions>                  <!-- Windows RE Tools partition -->                  <ModifyPartition wcm:action="add">                    <Order>1</Order>                    <PartitionID>1</PartitionID>                    <Label>WINRE</Label>                    <Format>NTFS</Format>                  </ModifyPartition>                  <ModifyPartition wcm:action="add">                    <Order>2</Order>                    <PartitionID>2</PartitionID>                    <Label>ESP</Label>                    <Format>FAT32</Format>                  </ModifyPartition>                    <Order>3</Order>                    <PartitionID>3</PartitionID>                  <ModifyPartition wcm:action="add">                    <Order>3</Order>                    <PartitionID>4</PartitionID>                    <Label>System</Label>                    <Letter>C</Letter>                    <Format>NTFS</Format>                  </ModifyPartition>                </ModifyPartitions>              </Disk>              <WillShowUI>OnError</WillShowUI>            </DiskConfiguration>

Im not saying its correct as mostly you only need 3 partitions: 1. ESP (100MB) > 2. MSR (128MB) > 3. Windows (Expanding).

Also for some reason i've set my ESP to sit on FAT32 not NTFS. God knows why...

Link to comment
Share on other sites

Yeah I know how it works, I was just unsure because the Microsoft link only mentioned creating the partitions, but not doing anything with them, which kinda confused me and I thought maybe it was not necessary for UEFI (which wouldn't make any sense though).

Link to comment
Share on other sites

Yeah i have always used 100MB ESP partition. Not sure why MS would suggest 200MB.

Btw fixed code:

<DiskConfiguration> <Disk wcm:action="add">                <DiskID>0</DiskID>                <WillWipeDisk>true</WillWipeDisk>                <CreatePartitions>                  <CreatePartition wcm:action="add">                    <Order>1</Order>                    <Type>EFI</Type>                    <Size>100</Size>                  </CreatePartition>                  <CreatePartition wcm:action="add">                    <Order>2</Order>                    <Type>MSR</Type>                    <Size>128</Size>                  </CreatePartition>                  <CreatePartition wcm:action="add">                    <Order>3</Order>                    <Type>Primary</Type>                    <Extend>true</Extend>                  </CreatePartition>                </CreatePartitions>                <ModifyPartitions>                  <ModifyPartition wcm:action="add">                    <Order>1</Order>                    <PartitionID>1</PartitionID>                    <Label>ESP</Label>                    <Format>NTFS</Format>                  </ModifyPartition>                  <ModifyPartition wcm:action="add">                    <Order>2</Order>                    <PartitionID>2</PartitionID>                    <Label>MSR</Label>                    <Format>NTFS</Format>                  </ModifyPartition>                  <ModifyPartition wcm:action="add">                    <Order>3</Order>                    <PartitionID>3</PartitionID>                    <Label>System</Label>                    <Letter>C</Letter>                    <Format>NTFS</Format>                  </ModifyPartition>                </ModifyPartitions>              </Disk>              <WillShowUI>OnError</WillShowUI>            </DiskConfiguration>
Link to comment
Share on other sites

Yeah i have always used 100MB ESP partition. Not sure why MS would suggest 200MB.

They recommend a different size for SSDs, but 260MB not 200.

Each bootable drive must contain an ESP. The computer boots to this partition.

For Advanced Format Generation One (4-KB-per-sector) drives, the minimum size of this partition is 260 MB.

For earlier 512-byte-per-sector drives, the minimum size of this partition is 100MB.

http://technet.microsoft.com/en-us/library/dd799232%28v=ws.10%29.aspx

Link to comment
Share on other sites

Even windows installation itself creates a 100MB partition on SSD:

Microsoft DiskPart version 6.1.7601Copyright (C) 1999-2008 Microsoft Corporation.On computer: PHOENIXDISKPART> list disk  Disk ###  Status         Size     Free     Dyn  Gpt  --------  -------------  -------  -------  ---  ---  Disk 0    Online           59 GB      0 B        *  Disk 1    Online          698 GB      0 B        *  Disk 2    Online         2794 GB      0 B        *DISKPART> select disk 0Disk 0 is now the selected disk.DISKPART> list part  Partition ###  Type              Size     Offset  -------------  ----------------  -------  -------  Partition 1    System             100 MB  1024 KB  Partition 2    Reserved           128 MB   101 MB  Partition 3    Primary             29 GB   229 MB  Partition 4    Primary             30 GB    29 GB
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...