Topic: [IMPL] Compatibility with remote installation service RIS with XP

I have made my driverpack enabled CD work with remote installation (RIS), and would like the 'hack' incorporated in the standard script so that it will work for everyone.

Remote installation for XP copies the entire content of the install CD to \$win_nt$.~ls\ on the install hard drive. The second stage of installation proceeds from that folder 

The location of the driverpacks install is discovered in the script  %installdrive%/i386/presetup.cmd

SET TAGFILE=\OEM  
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:%TAGFILE%" SET CDDRIVE=%%i:& GOTO DPsFound
:DPsFound

I suggest the following instead, which makes driverpacks for XP RIS compatible:

SET TAGFILE=\OEM  
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:%TAGFILE%" SET CDDRIVE=%%i:& GOTO DPsFound
IF EXIST "\$win_nt$.~ls" SET CDDRIVE=\$win_nt$.~ls
:DPsFound

The line inserted will never run unless the tag file isn't located. I can't imagine any bugs this could introduce.

Last edited by nickhill (2010-09-16 10:36:15)

Re: [IMPL] Compatibility with remote installation service RIS with XP

Nice.  Should be easy to implement for the next version of DriverPacks BASE.

Read BEFORE you post.  HWID tool   DriverPacks Tutorial   DONATE!
http://driverpacks.net/userbar/admin-1.png
Not all heroes wear capes, some wear Kevlar!

Re: [IMPL] Compatibility with remote installation service RIS with XP

I agree...
It's a good idea and easy to do.

I see no downside to this and it will work for any "create local source" installs.

Well done Nick

Welcome to DriverPacks and have an awesome day.

DP BartPE Tutorial   DP_BASE Tutorial   HWID's Tool     Read BEFORE you post    UserBars!
http://driverpacks.net/userbar/admin-1.png
The DriverPacks, the DP_Base program, and Support Forum are FREE!.

Re: [IMPL] Compatibility with remote installation service RIS with XP

I am implementing this in our test version now

DP BartPE Tutorial   DP_BASE Tutorial   HWID's Tool     Read BEFORE you post    UserBars!
http://driverpacks.net/userbar/admin-1.png
The DriverPacks, the DP_Base program, and Support Forum are FREE!.

Re: [IMPL] Compatibility with remote installation service RIS with XP

I make the modificaton to the presetup.cmd but it did not work. is there any other code needed to be added or modified to get this to work from my HD. Please advice. Thanks.