Jump to content

Recommended Posts

Posted

If you install WinXP from within the a Windows GUI you will be give the option to copy installation files to the hard drive before setup initiates. Is there a command, option or setting that I am missing that would allow the same process to occur when doing a clean install and booting from the unattended CD?

I'm sure it is something simple, it always is, but if someone has an answer I really would appreciate the help.

Thanks In Advance...

3bciq2


Posted

to copy the setup files you need to find out which letter your cdrom is:

@echo off

IF EXIST D:\WIN51IP.SP1 set CDROM=D:

IF EXIST E:\WIN51IP.SP1 set CDROM=E:

IF EXIST F:\WIN51IP.SP1 set CDROM=F:

IF EXIST G:\WIN51IP.SP1 set CDROM=G:

IF EXIST H:\WIN51IP.SP1 set CDROM=H:

IF EXIST I:\WIN51IP.SP1 set CDROM=I:

IF EXIST J:\WIN51IP.SP1 set CDROM=J:

this would be enough to find your cdrom drive letter

then in your batch script

md %systemroot%\i386

copy %cdrom%\i386\*.* %systemroot%\i386

this will copy your i386 folder to your win folder.This is what i can do right now.I'm not so sure if it exactly works

Posted

Thanks if you come up with anything else let me know. I appreciate the quick response.

Hoping for more info, I know theres a solution!!!

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...