Ok i will take a look. I have downloaded the links posted by Ra for Webcam.

Hi i will update the drivers Vista/7 (i think i will update all the drivers), so i will begin with chipset/lan/Massstorage.  i would like please if it is not much effort, someones post all the drivers links required from the date of the last driver, whick i will download and then update.
for example chipset is 12-12, so the links of the drivers should be after that date
Thanks

@TechDud
The necessary changes have been done as you have requested

@jinkazama
The drivers you have requested are already present in the directory D\3\X\H.
@matlab
i am wondering if the directory UVC is better for camera web?

EDIT:
I have updated the misc pack
Removed the directory J2\
replaced some files in the directory O\
So the final changelog is:

v11.04
Updated
- J\  JMicron JMB38X SD/MMC MS xD Host Controller DriverVer = 01/31/2011, 1.0.57.2

- TI\
Texas Instruments PCIxx21 Integrated FlashMedia Controller DriverVer = 05/25/2009, 2.0.0.10     (tifm21.inf)
Texas Instruments PCI GemCore based SmartCard Controller DriverVer = 05/09/2007,1.0.1.22      (gtipci21.inf)

- O\
O2Micro Integrated MMC/SD Controller DriverVer = 06/24/2009, 1.0.1.450     (O2SD.inf)
O2Micro Integrated MMC/SD controller DriverVer = 03/12/2009, 1.1.0.4063      (O2SDG.inf)
O2Micro Integrated  MS/SM/xD Controller DriverVer = 02/04/2008, 1.0.2.810   (O2MEDIA.inf)
O2Micro OZ776 USB CCID Smartcard Reader DriverVer = 09/09/2008, 1.1.4.204   (oz776.inf)
O2Micro SmartCardBus SmartCard Reader DriverVer = 05/20/2008, 3.0.1.6       (OZSCR.inf)
O2Micro Integrated MS/MSPRO/xD Controller DriverVer = 05/21/2009, 1.1.0.334  (o2mdg.INF)

- R\
Ricoh PCIe Memory Stick Host Controller DriverVer = 10/21/2010, 6.10.10.25     (rimspcie.inf)
Ricoh PCIe SDXC/MMC Host Controller DriverVer = 12/28/2010, 6.10.10.27         (risdxc.inf)
Ricoh PCIe xD-Picture Card Controller DriverVer = 10/21/2010, 6.10.10.12       (rixdpcie.inf)

- RT\
Realtek USB Card Reader DriverVer = 10/27/2010, 6.1.7600.30126

- E\
ENE PCI SmartMedia / xD Card Reader Controller DriverVer = 04/11/2007, 2.00.02           (ESM7SK.inf)
ENE PCI Memory Stick Card Reader Controller DriverVer = 04/11/2007, 2.00.02              (EMS7SK.inf)
ENE PCI Secure Digital / MMC Card Reader Controller DriverVer = 04/11/2007, 2.00.02      (ESD7SK.inf)
ENE CB-710/712/714/720/722/724/810/820/851/852/1211/1225/1410/1420 Cardbus Controller DriverVer = 01/31/2007,5.1.2600.3001    (ECB2KXP.inf)

- W2\
Winbond Memory Stick Storage MS/SD/MMC DriverVer = 07/30/2003, 2.0.2003.730   (WBMS.INF)
Winbond Secure Digital Storage SD/MMC DriverVer = 05/06/2003, 2.0.2003.0506   (WBSD.INF)

Added
- J1\  JMicron 1394 Filter Driver DriverVer = 02/09/2011, 1.00.21.00

- RT1\
Realtek PCIE CardReader DriverVer = 02/15/2011, 6.1.7600.77

EDIT2:
Here is the link
http://www.mediafire.com/?3coxwm2il2icf5x

I think you have forgotten sometimes in The commands on x86, IF NOT EXIST %SystemRoot%\SysWOW64, for example

start /wait %CDROM%\updates\runtimes\vcredist_x86_2005\vcredist.msi /qn
start /wait %CDROM%\updates\runtimes\vcredist_x86_2008\vc_red.msi /qn
start /wait %CDROM%\updates\runtimes\vcredist_x86_2010\vc_red.msi /qn

You have to take a look in it again to fix some commands. Respect to the firstlogocommands, is a good idea, but i think it only applied to the first user, i means if you logon with the user created and then you create a new user, the HKCU will not be applied to the new user. I am not sure, I will try it and then tell you. For HKCU i use the other method

@echo off
REG LOAD "HKU\zzz" "%SystemDrive%\Users\Default\NTUSER.DAT"
Start /wait Regedit /S "%AppsRoot%\Install\RegTweaks.HKCU.reg"
Start /wait Regedit /S "%AppsRoot%\Install\WinRAR.4.00\Settings.HKCU.reg"
Start /wait Regedit /S "%AppsRoot%\Install\Messenger.14.0.8117.416\Messenger.HKCU.reg"
Start /wait Regedit /S "%AppsRoot%\install\Codecs\DivX.HKCU.reg"
Start /wait Regedit /S "%AppsRoot%\install\Codecs\AC3Filter.HKCU.reg"
Start /wait Regedit /S "%AppsRoot%\install\Codecs\ReClock.HKCU.reg"
Start /wait Regedit /S "%AppsRoot%\Install\KMPlayer.3.0.0.1439\KMPlayer.HKCU.reg"
REG UNLOAD "HKU\zzz"

@mr_smartepants
nice batch file, i will need it to add my stuff. Thanks

@dolivas
You don´t need 2 setupcomplete.cmd, only you need to add commands like this:

REG ADD %KEY%\000 /VE /D "VMWAre Tools" /f
IF EXIST %SystemRoot%\SysWOW64 REG ADD %KEY%\000 /V 1 /D "msiexec.exe /i "%AppsRoot%\Install\VMware.Tools\VMware.Tools_x64.msi" /qr /norestart" /f
IF NOT EXIST %SystemRoot%\SysWOW64 REG ADD %KEY%\000 /V 1 /D "msiexec.exe /i "%AppsRoot%\Install\VMware.Tools\VMware.Tools.msi" /qr /norestart" /f

you can also use IF %Process_architecture% =="AMD64" instead of  IF EXIST %SystemRoot%\SysWOW64, but the problem if your CPU is not really 64 and your OS is 64 bits,  %Process_architecture% will return usually "x86"

@mr_smartepants
I want to update the pack Bluetooth, but the drivers posted above don´t have .inf file, so i don´t know which tag i have to add the DriverPack_Bluetooth_wnt5_x86-32.ini to execute the batch file .bat in the finisher, would you like please tell me how?
P.S If you are updating this pack let´s go to other.
Thanks

I have updated the modem pack, here are the link and the changelog
http://www.mediafire.com/?4rhbgeaq7k17mug

v11.04
Updated
- L4\ ThinkPad Modem Adapter DriverVer = 12/17/2010, 7.80.8.50
- H5\ LSI PCI/PCI-SV92PP/PCI-SV92EX Soft Modem DriverVer = 01/26/2010, 2.2.100      (lsismv32.inf)

In the web of Synaptics, i have downloaded yesterday the version 15.2.7, i have not seen the version 15.2.16.1.

@mr_smartepants
I have a suggestion, how do you think about renamimg the Misc Pack to CardReaders Pack like win7 and vista.?

Edit:
Here is the pack of Ricoh updated like as it has requested by @TechDud. The DriverVer is the same but it has changed one or two file, so you don´t have to change anything in the contents and the changelog
http://www.mediafire.com/?2bhgm04mzjpp2xl

I have told about links of the Misc (card Readers). would you like please check the Misc Pack  to see if some drivers are missing
http://forum.driverpacks.net/viewtopic.php?id=4736

Here are the link and the changelog
http://www.mediafire.com/?7pofj7p6wgt07ni

v11.04
Updated
- J\  JMicron JMB38X SD/MMC MS xD Host Controller DriverVer = 01/31/2011, 1.0.57.2

- TI\
Texas Instruments PCIxx21 Integrated FlashMedia Controller DriverVer = 05/25/2009, 2.0.0.10     (tifm21.inf)
Texas Instruments PCI GemCore based SmartCard Controller DriverVer = 05/09/2007,1.0.1.22      (gtipci21.inf)

- O\
O2Micro Integrated MMC/SD Controller DriverVer = 06/24/2009, 1.0.1.450     (O2SD.inf)
O2Micro Integrated  MS/SM/xD Controller DriverVer = 02/04/2008, 1.0.2.810   (O2MEDIA.inf)
o2Micro OZ776 USB CCID Smartcard Reader DriverVer = 09/09/2008, 1.1.4.204   (oz776.inf)
o2Micro SmartCardBus SmartCard Reader DriverVer = 05/20/2008, 3.0.1.6       (OZSCR.inf)

- R\
Ricoh PCIe Memory Stick Host Controller DriverVer = 10/21/2010, 6.10.10.25     (rimspcie.inf)
Ricoh PCIe SDXC/MMC Host Controller DriverVer = 12/28/2010, 6.10.10.27         (risdxc.inf)
Ricoh PCIe xD-Picture Card Controller DriverVer = 10/21/2010, 6.10.10.12       (rixdpcie.inf)

- RT\
Realtek USB Card Reader DriverVer = 10/27/2010, 6.1.7600.30126

- E\
ENE PCI SmartMedia / xD Card Reader Controller DriverVer = 04/11/2007, 2.00.02           (ESM7SK.inf)
ENE PCI Memory Stick Card Reader Controller DriverVer = 04/11/2007, 2.00.02              (EMS7SK.inf)
ENE PCI Secure Digital / MMC Card Reader Controller DriverVer = 04/11/2007, 2.00.02      (ESD7SK.inf)
ENE CB-710/712/714/720/722/724/810/820/851/852/1211/1225/1410/1420 Cardbus Controller DriverVer = 01/31/2007,5.1.2600.3001    (ECB2KXP.inf)


Added
- J1\  JMicron 1394 Filter Driver DriverVer = 02/09/2011, 1.00.21.00
- J2\  JMicron JMB36X Controller DriverVer = 09/07/2010, 1.17.59.0

- RT1\
Realtek PCIE CardReader DriverVer = 02/15/2011, 6.1.7600.77

I have updated the pack, here is the changelog for the moment
DP_Misc_wnt5_x86-32 Changelog

v11.04
Updated
- J\  JMicron JMB38X SD/MMC MS xD Host Controller DriverVer = 01/31/2011, 1.0.57.2

- TI\
Texas Instruments PCIxx21 Integrated FlashMedia Controller DriverVer = 05/25/2009, 2.0.0.10     (tifm21.inf)
Texas Instruments PCI GemCore based SmartCard Controller DriverVer = 05/09/2007,1.0.1.22      (gtipci21.inf)

- O\
O2Micro Integrated MMC/SD Controller DriverVer = 06/24/2009, 1.0.1.450     (O2SD.inf)
O2Micro Integrated  MS/SM/xD Controller DriverVer = 02/04/2008, 1.0.2.810   (O2MEDIA.inf)
O2Micro OZ776 USB CCID Smartcard Reader DriverVer = 09/09/2008, 1.1.4.204   (oz776.inf)
O2Micro SmartCardBus SmartCard Reader DriverVer = 05/20/2008, 3.0.1.6       (OZSCR.inf)

- RT\
Realtek USB Card Reader DriverVer = 10/27/2010, 6.1.7600.30126

- E\
ENE PCI SmartMedia / xD Card Reader Controller DriverVer = 04/11/2007, 2.00.02           (ESM7SK.inf)
ENE PCI Memory Stick Card Reader Controller DriverVer = 04/11/2007, 2.00.02              (EMS7SK.inf)
ENE PCI Secure Digital / MMC Card Reader Controller DriverVer = 04/11/2007, 2.00.02      (ESD7SK.inf)
ENE CB-710/712/714/720/722/724/810/820/851/852/1211/1225/1410/1420 Cardbus Controller DriverVer = 01/31/2007,5.1.2600.3001    (ECB2KXP.inf)


Added
- J1\  JMicron 1394 Filter Driver DriverVer = 02/09/2011, 1.00.21.00
- J2\  JMicron JMB36X Controller DriverVer = 09/07/2010, 1.17.59.0

- R1\
Ricoh PCIe Memory Stick Host Controller DriverVer = 10/21/2010, 6.10.10.25     (it updates generic HWID)
Ricoh PCIe SDXC/MMC Host Controller DriverVer = 12/28/2010, 6.10.10.27        (it updates generic HWID)
Ricoh PCIe xD-Picture Card Controller DriverVer = 10/21/2010, 6.10.10.12      (it updates generic HWID)

- RT1\
Realtek PCIE CardReader DriverVer = 02/15/2011, 6.1.7600.77

Please if they are other drivers which we have to update, post your links here.
Thanks

@mr_smartepants
I am Updating the pack for XP and I have a question please.
In a new file .inf you have:

%rimsptskDesc%=rimsptsk_Inst,PCI\VEN_1180&DEV_E230

in the old inf file you have:

%rimsptskDesc%=rimsptsk_Inst,PCI\VEN_1180&DEV_E230
%rimsptskDesc%=rimsptsk_Inst,PCI\VEN_1180&DEV_E230&SUBSYS_04011028
%rimsptskDesc%=rimsptsk_Inst,PCI\VEN_1180&DEV_E230&SUBSYS_04021028
%rimsptskDesc%=rimsptsk_Inst,PCI\VEN_1180&DEV_E230&SUBSYS_04031028
%rimsptskDesc%=rimsptsk_Inst,PCI\VEN_1180&DEV_E230&SUBSYS_02BD1028

I have to delete the older inf file as in the newer .inf file he has the generic which covers all the other HWIDs  or i have to keep both inf or i have to comment the generic HWID?

15

(78 replies, posted in Vista / 7 DriverPack Audio)

@SamLab, the other drivers are beta and supported packs (not official) which have issues.

16

(78 replies, posted in Vista / 7 DriverPack Audio)

Here are the links of the sound creative
http://www.fileserve.com/file/Kbmxcqk

17

(78 replies, posted in Vista / 7 DriverPack Audio)

I have reestructured Creative, added new one and updated some ones.

Creative
- 1 Sound Blaster X-Fi Titanium
       DriverVer = 07/07/2010, 6.0.01.1348 (2.17.0008.1)
- 2 Sound Blaster X-Fi Series
       DriverVer = 05/05/2010, 6.0.01.1375 (2.18.0015.8)
- 3 Sound Blaster X-Fi Platinum
       DriverVer= 05/05/2010, 6.0.01.1376 (2.18.0016.12)
- 4 Sound Blaster X-Fi Xtreme Audio
       DriverVer = 05/21/2009, 6.10.0.209 (1.04.0000)
- 5 Sound Blaster Live! 24-bit, Audigy LE/SE, 5.1 VX
       DriverVer = 05/27/2009, 5.12.1.2016 (1.04.0090)
- 6 Sound Blaster Audigy 2, 4 including Platinum
       DriverVer = 03/18/2010, 6.0.01.1377 (2.18.0017.7)

In which server do you want i upload them. I will upload only the directory creative, only you have to delete the older and put instead the newer.
Thanks

18

(78 replies, posted in Vista / 7 DriverPack Audio)

@mr_smartepants, here are the links of the packs
http://www.megaupload.com/?d=4F616AI6                     x86
http://www.megaupload.com/?d=KW03K7PK                   x64

19

(78 replies, posted in Vista / 7 DriverPack Audio)

Here is the updated changelog at the moment:

Added
Conexant
- 5 Pebble High Definition Audio Device
       DriverVer = 10/20/2010, 4.95.48.50 (vista)
       DriverVer = 10/20/2010, 4.95.48.50 (Win7)
- 6 Hermosa High Definition Audio Device
       DriverVer = 08/04/2010, 4.92.15.0 (vista)
       DriverVer = 10/06/2009, 4.92.12.0 (Win7)
- 7 Venice High Definition Audio Device
       DriverVer = 04/27/2007, 4.18.0.0 (Vista)
       DriverVer = 06/23/2009, 4.98.5.50 (Win7)
- 8 Peeble High Definition Audio Device
       DriverVer = 12/14/2010, 4.126.0.53 (vista)
       DriverVer = 12/14/2010, 4.126.0.64 (Win7)
- 9 Hermosa High Definition Audio Device
       DriverVer = 10/31/2008, 4.75.0.50

ADI
- 2 ADI UAA Function Driver for High Definition Audio
       DriverVer=05/18/2009, 6.10.02.7255

Updated
ATI
- 1 ATI HDMI
       DriverVer = 11/17/2010, 6.58.0.6600 (Vista)
       DriverVer = 11/17/2010, 7.12.0.7700 (Win7)

Nvidia
- 1 NVIDIA Azalia / HDMI Audio driver
      DriverVer = 03/03/2011, 1.2.22.1

Realtek
- 2 Realtek High Definition Audio
      DriverVer = 04/06/2011, 6.0.1.6343 (2.59)
- 3 Realtek HDMI
      DriverVer = 11/23/2010, 6.0.1.6251 (2.55)

RME  Intelligent Audio Solutions
- 1 HDSP, HDSPe Series     
      DriverVer = 08/05/2010, 3.0.8.5

VIA
- 3 VIA High Definition Audio
      DriverVer = 02/17/2011, 6.0.01.9400 

Deleted for duplicated
Terratec
- 1 Aureon 5.1 PCI
      DriverVer =05/22/2009,6.12.8.1738

Iam uploading the packs @mr_smartepants.

20

(78 replies, posted in Vista / 7 DriverPack Audio)

Here are the links of x86 and x64. Take a look and when i get the other updates i will upload them.
http://www.megaupload.com/?d=QANDBY10
http://www.megaupload.com/?d=QYEU9W67

EDIT:
Would you like please delete the folder 1 of Terratec because is duplicated with cmedia 1 which is newer.

You have also updated for XP or only for win7/vista?

Please would anyone told me how can the pack posted above of toshiba will be added because i don´t know which reference (tag) i have to write in the DriverPack_Bluetooth_wnt5_x86-32.ini in order to execute it in the finisher the batch silent_install_for_W2000_XP.bat after
Thanks

@TechDud
As i have seen you have some requests for Misc, would you like please post here your all your requests (links), i will update the pack
Thanks

24

(78 replies, posted in Vista / 7 DriverPack Audio)

Ok i will leave them for you.
I will upload you the driverpacks and take a look please in it, while i will keep updating the packs (creative and i will see if there are others)
Thanks

25

(78 replies, posted in Vista / 7 DriverPack Audio)

for the moment, here is the changelog:

Added
Conexant
- 5 Pebble High Definition Audio Device
       DriverVer = 10/20/2010, 4.95.48.50 (vista)
       DriverVer = 10/20/2010, 4.95.48.50 (Win7)
- 6 Hermosa High Definition Audio Device
       DriverVer = 08/04/2010, 4.92.15.0 (vista)
       DriverVer = 10/06/2009, 4.92.12.0 (Win7)
- 7 Venice High Definition Audio Device
       DriverVer = 04/27/2007, 4.18.0.0 (Vista)
       DriverVer = 06/23/2009, 4.98.5.50 (Win7)
- 8 Peeble High Definition Audio Device
       DriverVer = 12/14/2010, 4.126.0.53 (vista)
       DriverVer = 12/14/2010, 4.126.0.64 (Win7)
- 9 Hermosa High Definition Audio Device
       DriverVer = 10/31/2008, 4.75.0.50

ADI
- 2 ADI UAA Function Driver for High Definition Audio
       DriverVer=05/18/2009, 6.10.02.7255

Updated:
- 2 Realtek High Definition Audio
      DriverVer=02/24/2011, 6.0.1.6316 (2.58)
- 3 Realtek HDMI
      DriverVer=11/23/2010, 6.0.1.6251 (2.55)

RME  Intelligent Audio Solutions
- 1 HDSP, HDSPe Series     
      DriverVer = 08/05/2010, 3.0.8.5

@mr_smartepants, please can you provide the links of nvidia hdmi and ati hdmi, i don´t how to download them from the main page. In the ati page, only it appers me for xp and in the nvidia, only it appears me the old version.
For the other users, please post your requests in order to add them.
Thanks