Topic: using SAD2 to integrate into ISO

I currently use DP BASE for driver integration into XP SP3, and rt7lite for Win7

Can SAD2 be used to integrate drivers into an ISO?

or is it only for existing installations?

if I can integrate into an ISO, I'd like to be able to do it for XPSP3, Vista and Win7

Re: using SAD2 to integrate into ISO

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

mr_smartepants wrote:

To get this working in Win7 during an unattended install do the following "setupcomplete.cmd" method.
Create the following folder structure to your Win7 disc:
%Win7-Disc%\sources\$oem$\$1\D\SAD2 (entire SAD2 folder with all DriverPacks goes here)
%Win7-Disc%\sources\$oem$\$$\Setup\scripts\setupcomplete.cmd
Add the following code to the setupcomplete.cmd file.

@echo off
START %systemdrive%\D\SAD2\DP_Install_Tool.cmd
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: using SAD2 to integrate into ISO

So I extract the ISO

then I create these folders in \sources?

\$oem$
\$oem$\$!\D\SAD2
\$oem$\$$\setup\scripts\

is this correct?

do I keep the $ symbols?

so do I run setupcomplete.cmd before I build the ISO?

Re: using SAD2 to integrate into ISO

Yes to all except your last question.
You create a new setupcomplete.cmd file with the above as it's contents.

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: using SAD2 to integrate into ISO

so I create a setupcomplete.cmd file with the above right?


I would like it to inject the driver packs into boot.wim will SAD2 do this?

Re: using SAD2 to integrate into ISO

No.  SAD2 will install drivers into a running system.
To inject drivers into boot.wim (or install.wim) you will need my other scripts.
Or use a tool like Win7Toolkit.

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: using SAD2 to integrate into ISO

Thanks very much!

Since DISM is used would your scripts work for vista aswell?

Also, something newer for XP textmode (besides DP BASE - breaks repair)?

Last edited by Damnation (2012-10-12 18:32:39)

Re: using SAD2 to integrate into ISO

Do you have an driver integration and SAD2 script for XP aswell?

Re: using SAD2 to integrate into ISO

SAD2 is compatible with all Windows OS.
My other scripts are for Win7 only.

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: using SAD2 to integrate into ISO

OK

So would this work for SAD2 on XP?

%WinXP-Disc%\$oem$\$1\D\SAD2
%WinXP-Disc%\$oem$\$$\Setup\scripts\setupcomplete.cmd

Also only option for XP driver integration is DP BASE?

if so, would method1 preserve the system repair option?

Re: using SAD2 to integrate into ISO

No, for XP you need to use DriverPacks BASE or the "RunOnceEx" method.
http://unattended.msfn.org/unattended.x … 7369cedba/

@echo off

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D "Installing stuff" /f

REG ADD %KEY%\005 /VE /D "SAD2" /f
REG ADD %KEY%\005 /V 1 /D "%systemdrive%\D\SAD2\DP_Install_Tool.cmd /s" /f

EXIT
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: using SAD2 to integrate into ISO

So where do I place SAD2 in XP ISO?

Re: using SAD2 to integrate into ISO

Damnation wrote:

So where do I place SAD2 in XP ISO?

Damnation wrote:

%WinXP-Disc%\$oem$\$1\D\SAD2

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