Jump to content

Copy I386 to HDD during install?


Recommended Posts

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!

Link to comment
Share on other sites


I wonder if that can be done via SVCPACK.INF with the following code:

@ECHO OFF
MD %SYSTEMROOT%\SOURCE
xcopy /s /e "%SYSTEMDRIVE%\$WIN_NT$.~LS\i386" %SYSTEMROOT%\SOURCE >NUL
cls

Link to comment
Share on other sites

The $WIN_NT$.~LS doesn't have the full xp cd, only the i386 dir, so maybe

@ECHO OFF
MD %SYSTEMROOT%\SOURCE
xcopy /s /e "%SYSTEMDRIVE%\$WIN_NT$.~LS\" %SYSTEMROOT%\SOURCE >NUL
cls

?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...