USAF_Guy Posted October 21, 2004 Posted October 21, 2004 Here's the scoop. I have some new Dells with an Intel SATA (82801ER SATA RAID Controller). I have tried extensivly to slipstream the drivers in my XP CD. Well, it can't be done (according to Bâshrat the Sneaky). So I have to use the TEXTMODE (with txtsetup.oem files) method to integrate it. Well, when you do this, you have to change the OemPreinstall to 'No'. This stops any files from the $OEM$ folder being copied to the HDD. My question, will the GuiRunOnce run commands or only batch files? Example below...[GuiRunOnce]IF EXIST D:\WIN51 set CDROM=D:IF EXIST E:\WIN51 set CDROM=E:IF EXIST F:\WIN51 set CDROM=F:IF EXIST G:\WIN51 set CDROM=G:IF EXIST H:\WIN51 set CDROM=H:IF EXIST I:\WIN51 set CDROM=I:IF EXIST J:\WIN51 set CDROM=J:"%CDROM%\Software\start.cmd
buletov Posted October 21, 2004 Posted October 21, 2004 i think you should add "cmd" in front of "if" entries...(and close the " in last line)
USAF_Guy Posted October 21, 2004 Author Posted October 21, 2004 I will give that a try and let you know......thanks for the post!
USAF_Guy Posted October 21, 2004 Author Posted October 21, 2004 No go, this is what I get"'Line 52 of the INF file \i386\winnt.sif is invalid'Line 51: [GuiRunOnce]Line 52: cmd IF EXIST D:\WIN51 set CDROM=D:
Jito463 Posted October 21, 2004 Posted October 21, 2004 Instead of running the "IF" commands from the GuiRunOnce, create a batch file that gets copied to the HDD during the setup process (using OEM Preinstall) then put this command in the batch file:FOR %%d IN (d: e: f: g: h: i: j: k: l: m: n: o: p: q: r: s: t: u: v: w: x: y: z:) DO IF EXIST %%d\WIN51 SET CDROM=%%d%CDROM%\Software\start.cmdOr, alternatively, instead of running a batch file from a batch file, just put the commands from the start.cmd into the batch file on the HDD, and run the programs from there.
USAF_Guy Posted October 21, 2004 Author Posted October 21, 2004 I can't copy the files to the HDD. In order to have the SATA installed using TXTMODE I have to set OemPreinstall to 'No' which stops the copy process
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