lmathews Posted July 6, 2006 Posted July 6, 2006 I want to copy I386 to c:\I386 during the windows XP setup. Is there a simple way to do this? Reason being I don't want users being prompted for the windows CD if an app screws something up etc. etc. Thanks!
cluberti Posted July 6, 2006 Posted July 6, 2006 This gets asked quite frequently here:http://www.google.com/search?q=copy+i386+site%3Amsfn.org
T D Posted July 6, 2006 Posted July 6, 2006 Put it in $OEM$ folders, make a batch/vbs to copy it, you name it.
blinkdt Posted July 8, 2006 Posted July 8, 2006 Yzowl wrote the definitive batch file for that task, you can find it HERE. So easy, works great.
mazin Posted July 8, 2006 Posted July 8, 2006 I wonder if that can be done via SVCPACK.INF with the following code:@ECHO OFFMD %SYSTEMROOT%\SOURCExcopy /s /e "%SYSTEMDRIVE%\$WIN_NT$.~LS\i386" %SYSTEMROOT%\SOURCE >NULcls
T D Posted July 8, 2006 Posted July 8, 2006 The $WIN_NT$.~LS doesn't have the full xp cd, only the i386 dir, so maybe @ECHO OFFMD %SYSTEMROOT%\SOURCExcopy /s /e "%SYSTEMDRIVE%\$WIN_NT$.~LS\" %SYSTEMROOT%\SOURCE >NULcls ?
mazin Posted July 8, 2006 Posted July 8, 2006 @ECHO OFFMD %SYSTEMROOT%\SOURCExcopy /s /e "%SYSTEMDRIVE%\$WIN_NT$.~LS\" %SYSTEMROOT%\SOURCE >NULclsWhy not!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now