First of all the InputLocale Value for Dutch should look like this, but this has nothing to do with you Problem:
<InputLocale>0413:00000413</InputLocale>
Your problem is caused by the following section and it's not looking like it supposed to:
<ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Value>Windows Vista Ultimate</Value> <Key>Windows Vista Business</Key> </MetaData> <Path>D:\VISTADVD\sources\install.wim</Path> <MetaData wcm:action="add"> <Value>Windows Home Premium</Value> <Key>1</Key> </MetaData> </InstallFrom> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall>
1. Problem:
You can't use two MetaData Properties, just ONE per xml at the same time!
2. Problem:
Key and Value setting do not correspond the wright way in your xml!
The ImageInstall section should look like this if you want to install ULTIMATE:
<ImageInstall> <OSImage> <InstallFrom> <Path>install.wim</Path> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows Vista ULTIMATE</Value> </MetaData> </InstallFrom> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall>
OR it should look like this for BUSINESS:
<ImageInstall> <OSImage> <InstallFrom> <Path>install.wim</Path> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows Vista BUSINESS</Value> </MetaData> </InstallFrom> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall>
OR it should look like this for HOMEPREMIUM:
<ImageInstall> <OSImage> <InstallFrom> <Path>install.wim</Path> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows Vista HOMEPREMIUM</Value> </MetaData> </InstallFrom> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall>
After choosing one of these alternates, depending on the Product Key you have, it should work!
Regards,
Martin



Help


Back to top










