Re: New Hard Disk
Posted: 01-02-2007, 03:46 PM
You have an additional "extend" command in your excerpt that appears to be
causing an error and stopping the process. At least that's what happened
when I tested it.
Try removing extra 'extend' from the modifypartition section.
Below you'll find an excerpt of the Autounattend.xml that I use to
wipe/create a single partition configuration.
Here's my excerpt for comparison.
<DiskConfiguration>
<Disk wcm:action="add">
<ModifyPartitions>
<ModifyPartition wcm:action="add">
<Active>true</Active>
<Format>NTFS</Format>
<Label>DeWitt</Label>
<Letter>C</Letter>
<Order>1</Order>
<PartitionID>1</PartitionID>
</ModifyPartition>
</ModifyPartitions>
<WillWipeDisk>true</WillWipeDisk>
<DiskID>0</DiskID>
<CreatePartitions>
<CreatePartition wcm:action="add">
<Extend>true</Extend>
<Order>1</Order>
<Type>Primary</Type>
</CreatePartition>
</CreatePartitions>
</Disk>
<WillShowUI>OnError</WillShowUI>
</DiskConfiguration>
Happy New Year!
DeWitt Hurst
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
"Jay" <Jay@discussions.microsoft.com> wrote in message
news:7252EEFC-040F-407E-B45B-1EA5B4C77F30@microsoft.com...
> I'm trying to deploy a Custom.wim image to a new hard disk containing no
> partitions. During the first part of deployment, I'm receiving a
> ZTIError -
> Unhandled error returned by LTIApply: Path not found. (76). If I use
> diskpart
> to create a partition manually the deployment is successfull.
>
> Here's what the unattend.xml looks like:
>
>
> - <DiskConfiguration>
> - <Disk wcm:action="add">
> <WillWipeDisk>true</WillWipeDisk>
> <DiskID>0</DiskID>
> - <CreatePartitions>
> - <CreatePartition wcm:action="add">
> <Order>1</Order>
> <Type>Primary</Type>
> <Extend>true</Extend>
> </CreatePartition>
> </CreatePartitions>
> - <ModifyPartitions>
> - <ModifyPartition wcm:action="add">
> <Active>true</Active>
> <Format>NTFS</Format>
> <Letter>C</Letter>
> <Order>1</Order>
> <PartitionID>1</PartitionID>
> <Extend>true</Extend>
> </ModifyPartition>
> </ModifyPartitions>
> </Disk>
> <WillShowUI>OnError</WillShowUI>
> </DiskConfiguration>
>



Hybrid Mode

