You got it! Good luck.
201 2012-12-21 05:58:27
Re: Integrate drivers to boot.wim or install.wim (9 replies, posted in Windows 7 Discussion)
202 2012-12-21 05:54:55
Re: BARTPE - iastor2.sy_ BSOD - MS WNT5_x86-32_1209 (7 replies, posted in BartPE - UBCD4Win - WinPE)
It doesn't matter what HWIDS are supported by the Dell driver you have. What matters when using DriverPacks are the HWIDs of the target machine.
If you have PCI\VEN_8086&DEV_2652&CC_0104 then section [I2] is correct and is version 7.0.0.1020.
Moving this thread to the BartPE section...
203 2012-12-20 17:29:20
Re: Integrate drivers to boot.wim or install.wim (9 replies, posted in Windows 7 Discussion)
Merry Christmas to you too.
1. Since the Chipset drivers seem to be the ones that contain USB 3 drivers, won't I need to add those to BOOT.WIM as well as the Mass Storage ones?
Yes. We typically recommend users only integrate dpms into boot.wim but in reality you can integrate whatever you want (Chipset, LAN, etc.). But keep in mind that the more drivers you integrate into the boot.wim, the LONGER the boot process will take as ALL those drivers are loaded into RAM. In the past, some users went through the ridiculous process of loading ALL the DriverPacks into the boot.wim. While that would work, it would be very stupid.
2. Do drivers added to BOOT.WIM 'carry over' to INSTALL.WIM and the final installation, or is it necessary to add Mass Storage (and possibly Chipset) to both WIM files?
No. Drivers added to boot.wim only allow the installation utility to "see" the installation target (hard drive) or sources (DVD, USB, network share, etc.). If a driver is needed by the system to "see" a drive controller, and the driver is only loaded into the boot.wim, then the installation (file copy stage) will go OK, but you'll likely get a BSOD during the later stages when no driver is found and the installer can't find the drive anymore.
204 2012-12-19 05:15:21
Re: v1209 Pack issue with IASTOR and FST376XP (33 replies, posted in DriverPack Mass Storage)
Jeff and I were doing all the work for a while. I've been ludicrously busy over the past few months, so luckily these guys have jumped in and have been doing a great job.
205 2012-12-17 08:15:25
Re: [REQ] Chipset - TI USB 3.0 & FireWire800(ieee1394b) (11 replies, posted in Vista / 7 DriverPack Chipset)
Texas Instruments USB3 xHCI Host Controller/Hub
updated to {DriverVer=11/26/2012, 1.16.2.0} WHQL'ed for Vista & Win7 (x86 & x64)
here --> http://www.ti.com/lit/sw/sllc423d/sllc423d.zip
Link is dead. "It's dead Jim!"
*Edit
Link is here: http://www.ti.com/lit/sw/sllc423e/sllc423e.zip
206 2012-12-17 08:03:00
Re: Option to BUY Win 7 and Vista DriverPacks CDs? (3 replies, posted in Windows 7 tools)
Yes.
207 2012-12-17 00:21:02
Re: OCZ Revodrive/Z-drive driver? (1 replies, posted in Vista / 7 DriverPack Mass Storage)
I'm working on these NT6 dpms packs now.
I'll see what I can do.
208 2012-12-16 08:01:02
Re: DriverPack Lan for Win2k8? (2 replies, posted in Windows Server 2008 Discussion)
209 2012-12-13 17:32:24
Re: SigmaTel High Definition Audio Codec (SONY VGN-AR71S) Windows XP Pro (5 replies, posted in DriverPack Sound)
You'll notice that Sony themselves don't support XP with that model.
If the manufacturer doesn't have a XP driver, finding a workable driver elsewhere will be like finding a needle in a haystack.
Upgrade to Win7 and call it a day. You'll be much happier.
210 2012-12-13 07:49:51
Re: SigmaTel High Definition Audio Codec (SONY VGN-AR71S) Windows XP Pro (5 replies, posted in DriverPack Sound)
So you're saying that you tried the driver from Sony here and it didn't work?
The .inf has XP indicators in it.
211 2012-12-09 19:42:02
Re: Create new MassStorage with only One RAID driver (73 replies, posted in DriverPack Mass Storage)
Damnation wrote:OEM LINK
http://downloadcenter.intel.com/Detail_ … ldID=20963
If he ever comes back, I've noticed that this hardware ID
PCI\VEN_8086&DEV_2826
only uses megasr.sys in the OEM driver, same in driverpacks. but driverpacks has the addition of iaStorA.sys also with that HWID.
If mass-storage.ini is edited to remove this HWID from iaStorA.sys I think it'll work.
Duplicate HWIDs are not permitted... this is an error in the pack.
I haven't been looking at the test packs that you guys have been posting lately, but the last pack I built was 1210r1 and it does NOT have that generic HWID in the .ini. That partial HWID (with either &CC*** or &SUBSYS***) is listed in these sections: [L](sub-section-8) and [I4](sub-section-1). There's no overlap.
212 2012-12-06 05:27:21
Re: Installing WinXP Pro on RAID (DP_Base_1006) (57 replies, posted in Installation Platforms)
Changing the controller from AHCI to RAID would also change the HWID of the controller itself.
213 2012-12-05 03:17:36
Re: integrate drivers to deploy Win XP via WDS (3 replies, posted in Universal Imaging)
...moved from "Software" to "Universal Imaging"...
Have you changed the HAL? I'm not sure DriverPacks is breaking your install.
Hopefully one of our users more versed in WDS will chime in here.
214 2012-12-04 18:02:42
Re: Installing WinXP Pro on RAID (DP_Base_1006) (57 replies, posted in Installation Platforms)
I have very VERY little free time as of late. I'll try and put something together this weekend but please continue the discussion between yourselves. I AM following...
215 2012-12-04 18:00:24
Re: How to modify batches to work from different folders? (2 replies, posted in Feedback and Support - DriverPacks Base)
CD\WXPS\I386\presetup.cmd and WXPS\presetup.cmd, added 1 line after the SET command:
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:\CD\WXPS\OEM SET CDDRIVE=%%i:\CD\WXPS & GOTO DPsFound 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
Your first "for" loop is missing the end-quotes. Change to read as below:
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:\CD\WXPS\OEM" SET "CDDRIVE=%%i:\CD\WXPS" & GOTO DPsFound
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 DIR %%i: && IF EXIST "%%i:%TAGFILE%" SET "CDDRIVE=%%i:" & GOTO DPsFound
IF EXIST "\$win_nt$.~ls" SET CDDRIVE=\$win_nt$.~ls
:DPsFound
CD\WXPS\OEM\DP_Install_Tool.cmd and WXPS\OEM\DP_Install_Tool.cmd, added 1 line before the last IF:
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:\OEM\bin\un7zip.exe" SET "DPLoc=%%i:\OEM" & Set "M=2" IF Exist "%%i:\$OEM$\$1\D\" SET "DPLoc=%%i:\$OEM$\$1" & Set "M=1" & %%i IF Exist "%%i:\CD\WXPS\OEM\bin\un7zip.exe" SET "DPLoc=%%i:\CD\WXPS\OEM" & Set "M=2" IF "%M%">="1" GoTo Found)
Here's a more refined expression of your mods:
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:\OEM\bin\un7zip.exe" SET "DPLoc=%%i:\OEM" & Set "M=2"
IF Exist "%%i:\$OEM$\$1\D\" (SET "DPLoc=%%i:\$OEM$\$1" & Set "M=1" & %%i)
IF Exist "%%i:\CD\WXPS\OEM\bin\un7zip.exe" (SET "DPLoc=%%i:\CD\WXPS\OEM" & Set "M=2")
IF "!M!" GEQ "1" GoTo Found
)
216 2012-11-23 02:12:09
Re: WDS Driver injection (6 replies, posted in Software)
Is it possible that you are affected by this problem?
217 2012-11-22 05:18:39
Re: Stand Alone Driverpack utility for all OS (XP, 2k3, 2k8, Vista, Win7) (525 replies, posted in Windows 7 tools)
Actually, dpinst.exe is one of the few M$ products that they actively encourage free distribution. They wrote that into their EULA in the "driver distribution kit" (can't remember the name).
218 2012-11-21 17:52:49
Re: Stand Alone Driverpack utility for all OS (XP, 2k3, 2k8, Vista, Win7) (525 replies, posted in Windows 7 tools)
Thank you very much!
I'll take a look. I'll be away on a business trip all next week so hopefully I can get this reviewed by then.
219 2012-11-21 09:04:49
Re: Stand Alone Driverpack utility for all OS (XP, 2k3, 2k8, Vista, Win7) (525 replies, posted in Windows 7 tools)
Wow, that's awesome. This is a collaborative effort. Of course I don't mind!
Please upload it to mediafire or other free hosting service and I'll verify it.
220 2012-11-20 09:00:11
Re: Stand Alone Driverpack utility for all OS (XP, 2k3, 2k8, Vista, Win7) (525 replies, posted in Windows 7 tools)
The sound function should be disabled. I'll delete it entirely just to be sure.
Yes, that touchpad bug is already known.
221 2012-11-19 18:07:55
Re: Stand Alone Driverpack utility for all OS (XP, 2k3, 2k8, Vista, Win7) (525 replies, posted in Windows 7 tools)
Yes. I've seen that happen too. I am working on a new revision and hopefully will have that sorted out.
In the meantime, the easiest method to avoid the problem is to hit the Windows key, type "cmd", then right click on cmd.exe and "run as administrator", then execute DP_Install_Tool.cmd /S
222 2012-11-18 06:55:58
Re: [IMPL] Chipset - NEC/Renesas, ASMedia, Etron & FrescoLogic USB3 (20 replies, posted in DriverPack Chipset)
We do not mention that place here!
That is not a valid OEM source.
223 2012-11-18 06:54:05
Re: Sound Driver not working in Stand Alone Drivers (10 replies, posted in DriverPack Sound)
The instructions are in the first post of the SAD2 thread and in the "readme.txt" included in the download.
The hotfix is KB888111 but there's no reason not to use SP3.
224 2012-11-17 20:54:40
Re: [IMPL] Chipset - NEC/Renesas, ASMedia, Etron & FrescoLogic USB3 (20 replies, posted in DriverPack Chipset)
225 2012-11-17 07:20:44
Re: Sound Driver not working in Stand Alone Drivers (10 replies, posted in DriverPack Sound)
(My OS is XP professional SP2)
You must update to SP3.
SP3 contains a hotfix that allows ALL HDaudio devices to be detected correctly. They will fail otherwise.