Anyway, I'm not bothered about using vLite to go through things to make the install nice and easy, all I'm after is the minimum needed to make Vista install to C:, Users to D: and both Program Files to E:, which vLite can't do anyways. These drives are partitions on the only drive that has ever appeared in the install screens, and it is in this order, so what would I need?
CODE
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64"
publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ">
<FolderLocations>
<ProfilesDirectory>D:\</ProfilesDirectory>
<ProgramData>E:\</ProgramData>
</FolderLocations>
</settings>
</unattend>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64"
publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ">
<FolderLocations>
<ProfilesDirectory>D:\</ProfilesDirectory>
<ProgramData>E:\</ProgramData>
</FolderLocations>
</settings>
</unattend>
That's what I think is the minimum. I don't need to edit partitions, I can do that myself.
(edited the code for easier reading)