In order to deploy Windows 7 using MDT 2008 Update 1, you have to do some modifications… documented right here… 🙂
Shorthand story is that you need to do 3 small changes in MDT 2008 Update 1
1. ZTISupportedPlatforms.xml needs a definition for the new Platform Type:
2. Unattend.xml template file must be modified. All the paths under
3. Change ZTIUserState.wsf to support Hard Link Migration
sBaseArgs = sBaseArgs & ” /config:””” & sUSMTPath & “\” & sXML & “”””
Else
oLogging.CreateEntry “WARNING: Unable to find specified USMT migration XML file ” & sXML, LogTypeWarning
End if
End if
sBaseArgs = sBaseArgs & ” /hardlink /nocompress“
If bEstimate then
oEnvironment.Item(“StatePath”) = sLocalStorePath
oEnvironment.Item(“USMTLocal”) = “True”
sBaseArgs = sBaseArgs & ” /hardlink /nocompress“
Else
oEnvironment.Item(“StatePath”) = sNetworkStorePath
End if