Solved Specify catalog in Autounattend.xml?

PiriPiri

Banned
Local time
8:54 AM
Messages
4
Hey, I'm sure this has been brought up before. But I've been digging through the forums and google, etc.

There are several ways to specify which wim/catalog to install from, like Sysprep.xml, but I'm trying to create an unattended setup from USB. The issue is every example I've seen specifies a drive path for the catalog location like the following:

Code:
<cpifflineImage cpi:source="catalog:C:\sources\install_Windows 7 ULTIMATE.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />

However this can be used on various systems so the drive letter of the media can change, so I tried just "\sources\install_Windows 7 ULTIMATE.clg" but it didn't work.

Suggestions?
 
Last edited by a moderator:

My Computer My Computer

At a glance

Deleted
OS
Deleted
I found the solution to my question!

Key

Quote:
Code:
/IMAGE/INDEX
Uses the index number to select the image to install.
/IMAGE/NAME
Uses the index name to select the image to install.
/IMAGE/DESCRIPTION
Uses the index description to select the image to install.
Quote:
<component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="Error" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ImageInstall>
<OSImage>
<InstallFrom>
<MetaData wcm:action="add">
<Key>/IMAGE/NAME</Key>
<Value>Windows 7 ULTIMATE</Value>
</MetaData>
</InstallFrom>
</OSImage>
</ImageInstall>
 
Last edited by a moderator:

My Computer My Computer

At a glance

Deleted
OS
Deleted
Back
Top