@ mr_smartepants
Ok let me know how it goes I am getting mine ready also for a new install on a Kingston SSD

@major
ok here is the setupcomplete file so far let me know if you have any other suggestions. I figured out how to add most of the IE setting in the Autounattend.xml file the others I have got to work by running a bat file on first login.

Thanks,
Dean

SetupComplete.cmd

@echo off
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 Z) do if exist %%i:\sources\install.wim set CDROM=%%i:
echo Found CD-Rom as drive %CDROM%
::Begin hotfix install

REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /V "EnableLUA" /T "REG_DWORD" /D "0" /F

:Malicious software removal tool
echo Installing Malicious Software Removal Tool
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\windows-kb890830-x64-v3.18.exe /Q
IF NOT EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\windows-kb890830-v3.18.exe /Q

:Misc apps 
echo Installing Miscellaneous Apps
start /wait %CDROM%\updates\Silverlight4.exe
start /wait %CDROM%\updates\flashaio.exe
start /wait %CDROM%\updates\Win7codecs_v281_do.exe
start /wait %CDROM%\updates\Java6u24.exe
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\Java6u23_x64.exe
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\x64Components_v285.exe -ai
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\Mse_x64.exe
IF NOT EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\Mse_x86.exe

:VC Redist Runtimes
echo Installing VC Redist Runtimes
start /wait %CDROM%\updates\runtimes\fsharp_redist\fsharpredist2.0.msi /qn
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\runtimes\vcredist_x64_2005\vcredist.msi /qn
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\runtimes\vcredist_x64_2008\vc_red.msi /qn
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\runtimes\vcredist_x64_2010\vc_red.msi /qn
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


:IE Registrty Add
::echo Adding IE Registry Setting
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "DisableFirstRunCustomize" /T "REG_DWORD" /D "1" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Check_Associations" /T "REG_SZ" /D "NO" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Friendly http errors" /T "REG_SZ" /D "NO" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Show image placeholders" /T "REG_DWORD" /D "1" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Start Page" /T "REG_SZ" /D "about:blank" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "UseSWRender" /T "REG_DWORD" /D "1" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PhishingFilter" /V "EnabledV9" /T "REG_DWORD" /D "0" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes" /V "DefaultScope" /T "REG_SZ" /D "{52ADEEAA-7118-4D93-944B-4C284B1DD322}" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes" /V "DownloadUpdates" /T "REG_DWORD" /D "0" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\{52ADEEAA-7118-4D93-944B-4C284B1DD322}" /V "DisplayName" /T "REG_SZ" /D "Google" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\{52ADEEAA-7118-4D93-944B-4C284B1DD322}" /V "URL" /T "REG_SZ" /D "http://www.google.com/search?q={searchTerms}&rls=com.microsoft:{language}&ie={inputEncoding}&oe={outputEncoding}&startIndex={startIndex?}&startPage={startPage}" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TabbedBrowsing" /V "Groups" /T "REG_DWORD" /D "0" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TabbedBrowsing" /V "NewTabNextToCurrent" /T "REG_DWORD" /D "0" /F
::REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TabbedBrowsing" /V "NewTabPageShow" /T "REG_DWORD" /D "0" /F


:Defender Definitions
echo Installing Windows Defender Definition updates
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\mpas-fex64.exe /Q
IF NOT EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\mpas-fe.exe /Q

:Security Essentials
echo Installing Microsoft Security Essentials updates
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\mpam-fex64.exe /Q
IF NOT EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\mpam-fe.exe /Q

:DirectX
echo Updating DirectX
start /wait %CDROM%\updates\directx\DXSETUP.exe /silent

:NET Framework 4
echo Installing .NET 4 Framework
::start /wait Client\netfx_core_x64.msi EXTUI=1
::start /wait Extended\netfx_extended_x64.msi EXTUI=1
start /wait %CDROM%\updates\dotNetFx40_Full_x86_x64.exe /passive /norestart
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\NDP40-KB2160841-x64.exe /passive /norestart
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\NDP40-KB2416472-x64.exe /passive /norestart
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\NDP40-KB2446708-x64.exe /passive /norestart
start /wait %CDROM%\updates\NDP40-KB2416472-x86.exe /passive /norestart
start /wait %CDROM%\updates\NDP40-KB2446708-x86.exe /passive /norestart
start /wait %windir%\Microsoft.NET\Framework\v4.0.30319\ngen executequeueditems
IF EXIST %SystemRoot%\SysWOW64 start /wait %windir%\Microsoft.NET\Framework64\v4.0.30319\ngen executequeueditems

:options
::Requires .NET 4
echo Installing Super Calendar
IF EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\WinCal-Win7-amd64-en-us.exe /S /v/qb
IF NOT EXIST %SystemRoot%\SysWOW64 start /wait %CDROM%\updates\WinCal-Win7-x86-en-us.exe /S /v/qb

echo Installing Pinball
start /wait %CDROM%\updates\WinPinball-en-us.exe /S /v/qb
::start /wait %CDROM%\updates\ /silent

:WPIW
::Begin WPIW
echo Starting Windows Post-Install Wizard
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Disable Script Debugger" /T "REG_SZ" /D "no" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "DisableScriptDebuggerIE" /T "REG_SZ" /D "no" /F
::Start %CDROM%\WPI\wpi.exe

::all processing finished, delete used files, and EXIT::
:CLEANUP
::SHUTDOWN /R /T 60
IF EXIST %windir%\Setup\scripts RD /S /Q %windir%\Setup\scripts >nul
DEL /F /Q %0% >nul
exit

@mr_smartepants
I have the HDD set the same way in VB and Yes if I do not integrate DP MassStorage in to the Boot.wim it finds the hard drive just fine but as soon as the DP is integrated I can no longer see the drive. When you integrate the DP do you add all drivers or only select drivers? (ICH10R controller) setup using raid0 this might be the problem?

@major
Thanks for the tip I was using the %Process_architecture% =="AMD64" but changed to your recommendation I will post it later for you to look at I am sure there is a better way to do it but so far it seems to be working.

Hi Erik,
Thanks for sharing this work it has already helped me with some things I was trying to integrate. Now I have a few questions I tried your method of installing the MassStorage to the boot.wim but when I try to do a test install in VirtualBox it does not see my hard drive if I move the drive off of the SATA controller and on to the IDE controller in VirtualBox I am able to see the drive and do the test install. Have you had this problem? Or am I doing something wrong? I am also trying to get these setting to apply with the setupcomplete.cmd they will not work during the first run during the install but if I run the setupcomplete.cmd after window starts they apply just fine would you happen to know why? One last question do you have one setupcomplete.cmd that you use for x64 and one for x86?

Thanks,
Dean

This is what I have in the setupcomplete.cmd

:IE Registrty Add
echo Adding IE Registry Setting
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "DisableFirstRunCustomize" /T "REG_DWORD" /D "1" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Check_Associations" /T "REG_SZ" /D "NO" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Friendly http errors" /T "REG_SZ" /D "NO" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Show image placeholders" /T "REG_DWORD" /D "1" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "Start Page" /T "REG_SZ" /D "about:blank" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /V "UseSWRender" /T "REG_DWORD" /D "1" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PhishingFilter" /V "EnabledV9" /T "REG_DWORD" /D "0" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes" /V "DefaultScope" /T "REG_SZ" /D "{52ADEEAA-7118-4D93-944B-4C284B1DD322}" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes" /V "DownloadUpdates" /T "REG_DWORD" /D "0" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\{52ADEEAA-7118-4D93-944B-4C284B1DD322}" /V "DisplayName" /T "REG_SZ" /D "Google" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\{52ADEEAA-7118-4D93-944B-4C284B1DD322}" /V "URL" /T "REG_SZ" /D "http://www.google.com/search?q={searchTerms}&rls=com.microsoft:{language}&ie={inputEncoding}&oe={outputEncoding}&startIndex={startIndex?}&startPage={startPage}" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TabbedBrowsing" /V "Groups" /T "REG_DWORD" /D "0" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TabbedBrowsing" /V "NewTabNextToCurrent" /T "REG_DWORD" /D "0" /F
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TabbedBrowsing" /V "NewTabPageShow" /T "REG_DWORD" /D "0" /F

Hey thanks for fixing this and it figures 11.3 was just released. I have updated all the Graphics for X86 and X64 ATI and Nvidia where should I upload them to now?

Thanks
dolivas

Hi mr_smartepants thanks for updating this pack...

I tried to use the pack and received an error after looking at the pack I noticed you missed the difxapi.dll I have looked for the 11.3 driver release and can not find it anywhere if I might ask where did you download the driver for this pack and the X64 pack?

Thanks,
dolivas

6

(6 replies, posted in DriverPack Sound)

I just happen to have one of theses to do a reinstall on this week I will let you know the results.

dolivas

I fixed a reported this months ago here but it went on def ears and never made it in to the final uploads. That is one reason I stopped updating the packs. We you guys said they no longer needed to be tested. They do and should be tested before being released to the general public this error is only on the x86 pack.

http://forum.driverpacks.net/viewtopic.php?id=4399

Thanks,
dolivas

8

(60 replies, posted in Vista / 7 DriverPack Graphics A)

x64 pack is also missing the file.

9

(22 replies, posted in Vista / 7 DriverPack WLAN)

BadPointer wrote:

QuarQ pointed out that neither of these LAN adapters supports WiFi and this driver is already included in Lan_x64_9122\2\1.

Is this duplication intended?

- 3/2 VIA Rhine III Compatible Management Adapter
      VIA Rhine III Compatible Fast Ethernet Adapter
      VIA Rhine II Compatible Fast Ethernet Adapter
      VIA VT86C100A Rhine Compatible Fast Ethernet Adapter
      VIA Rhine III Management Adapter
      VIA Rhine III Fast Ethernet Adapter
      VIA Rhine II Fast Ethernet Adapter
      VIA VT86C100A Rhine Fast Ethernet Adapter
      VIA Rhine Family Fast Ethernet Adapter Driver
      VIA Rhine Family Fast Ethernet Adapter
      DriverVer   = 07/20/2009, 1.12.0.0

BadPointer
Thanks for the feed back you are correct it is the same driver as in the LAN pack and is not a wireless driver. I have updated my local pack and I will up load and new test pack today.

Thanks,
dolivas

10

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

muiz DISM is reporting errors from Creative 2 there are missing files in the directory.

11

(67 replies, posted in Vista / 7 DriverPack LAN)

mr_smartepants

DISM is reporting errors from VIA 1 and VIA 3 I think there are missing files.

Edit also found Nvidia 1 is missing a file I have it fixed local and will upload sometime today. If you know where VIA 1 and 3 came from I will fix and test those also. When you rebuild the packs do you do a integration with DISM and look at the log? if not how are we testing the packs before we release them? because I never see them in the testing forum ?

Edit 2
Never mind I found the drivers and am updating and testing now.

Edit 3
Fixed pack uploaded to the testing forum

12

(60 replies, posted in Vista / 7 DriverPack Graphics A)

mr_smartepants wrote:

Many drivers support Vista/Win7 with no modification whatsoever.  ATI/Nvidia do this by default.  I'm certain we'll be maintaining that configuration in the future.

midiboy wrote:

as has been posted in the MSFN forum, you need to expand the compressed dl_, ex_, sy_ etc. files while keeping the "_" at the end of the extension otherwise dism will throw an error ...

Sorry, but that doesn't even make sense.  Why would you have an uncompressed file WITH the "_" in the filename which designates it as compressed.  Leaving the files in their compressed state won't harm anything (other than DriverPacks compression size.)
I don't see anything in the M$ documentation regarding compressed/decompressed drivers, but IIRC in order to integrate properly they MUST be digitally signed.
Link to proof please?
*Edit,
Found something here: http://social.technet.microsoft.com/For … 35de8fe6b5
And batch file here: http://www.msfn.org/board/index.php?s=& … p;p=864906

mr_smartepants did you do this on the latest 1001 pack? I have always done this or you will get errors in DISM your latest pack gives error in both ATI and Nvidia once I decompress like above all errors in DISM are gone. You are also missing this file in ATI 1  {difxapi.dll}

I have already fixed these in my local build if you would like I can upload them to the testing forum.

Dean

13

(6 replies, posted in 3rd Party Vista / 7 DriverPacks)

Excellent thanks for the feed back........:D cool

14

(6 replies, posted in 3rd Party Vista / 7 DriverPacks)

Kumul I added the drivers to the new input DP I also added the Bluetooth drivers you wanted to that pack but they might need to be in another pack I am not sure right now but here it is please test out and let us know how it works.

Download: Input wnt6-x64 10.02
Thanks,
Dean

15

(20 replies, posted in 3rd Party Vista / 7 DriverPacks)

Kumul wrote:

Could you please add
Ricoh Card Reader R5C833 2.07.01.00
http://ftp.us.dell.com/chipset/R227769.exe

Or tell me how to add?

Kumul those drivers are already in the pack they are in the current 911 pack directory 4/1 and 4/2 they are also in the new test pack I uploaded last night in the testing forum. Download: http://driverpacks.sytes.net/driverpack … 64_1002.7z please test and get back to us.

Thanks,
Dean

16

(52 replies, posted in Vista / 7 DriverPack Graphics A)

New Nightly Graphics A x64 out with folder structure change.... big_smile

17

(26 replies, posted in Vista / 7 DriverPack Chipset)

mr_smartepants

Thanks for the info on the new folder structure I will update a few of the x64 packs I have been working on this evening. Oh all of the 10.01 releases you sent out today needs to have the txt file updated to match the new folder structure.

18

(52 replies, posted in Vista / 7 DriverPack Graphics A)

Hello everyone I updated the X64 pack with the latest drivers from ATI and uploaded it to the testing forum. I have added the Nvidia drivers over 10 days ago in the testing forum. Not one reply is anyone using these?????:/:mad: looking for some feed back should I continue to updates these???? roll I also have x86 updated and the Audio packs for both updated but not going to upload if I am not going to get at least ONE feedback....

Thanks for some feedback,
dolivas

19

(52 replies, posted in Vista / 7 DriverPack Graphics A)

muiz I updated both packs x86 and x64 for you with the latest Nvidia drivers released today please let me know where you would like them uploaded so you can look them over.

Thanks for all your hard work on these,
dolivas

20

(36 replies, posted in Vista-Tool)

mr_smartepants

I have been following the furture thread on this for a while now how close are you guys and gals to having something for us to beta test for you? Oh and thanks for all your hard work on the the graphics pack much appreciated.

21

(36 replies, posted in News)

Merry Christmas Everyone and no snow in Michigan the snow we had is melting because we have had rain all day today but the temps are starting to fall Fast.....

22

(10 replies, posted in DriverPack Sound)

I can confirm Realtek worked fine for me. big_smile

Yes I agree leave it out can't wait to test out the new pack will you be uploading it today?

Ok guys I am not sure what is going on with the new 808c test pack but if you look at the nv4disp.inf it only has mobility hardware id's in it?

This video card did not install if you look at the inf you will see it is not listed but if you look at 808b it was?

PCI\VEN_10DE&DEV_0140&SUBSYS_00000000&REV_A2\4&1A9C9F1A&0&0008: NVIDIA GeForce 6600 GT

25

(76 replies, posted in News)

Until Overflow can fix it capitalize the RC at the end of the file in the link and you should be able to download it. I have already emailed Jeff to ask him to fix it so he should be aware of the problem.