<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[DriverPacks.net Forum - Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
	<link rel="self" href="http://forum.driverpacks.net/extern.php?action=feed&amp;tid=4954&amp;type=atom"/>
	<updated>2012-08-17T19:50:27Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.driverpacks.net/viewtopic.php?id=4954</id>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=48941#p48941"/>
			<content type="html"><![CDATA[<p>Thank you for Windows 7 info. Keep on posting..</p>]]></content>
			<author>
				<name><![CDATA[shaaung33]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=39256</uri>
			</author>
			<updated>2012-08-17T19:50:27Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=48941#p48941</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=48791#p48791"/>
			<content type="html"><![CDATA[<p>thanks mr_smartepants !</p>]]></content>
			<author>
				<name><![CDATA[Lucius Snow]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=2472</uri>
			</author>
			<updated>2012-07-15T21:53:02Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=48791#p48791</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=48790#p48790"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>Lucius Snow wrote:</cite><blockquote><p>- Is it possible to hide automaticaly the command prompt window when the files are decompressing and installing ? Something like a silent mode ...</p></blockquote></div><p>Sure, just modify the code in the :Method2 section to add a &quot;/min&quot; flag to the 7zip commands.<br />From:<br /></p><div class="codebox"><pre><code>:Method2
IF /I &quot;%zip%&quot;==&quot;Y&quot; ECHO Using native 7-Zip
IF &quot;%M%&quot;==&quot;2&quot; (
  ECHO * &amp; ECHO Preparing the DriverPacks now. Method 2 was found. &amp; ECHO *
  ECHO Extracting DriverPacks from: %DPLoc%
  IF /I &quot;%zip%&quot;==&quot;Y&quot; (
    FOR %%f IN (&quot;%DPLoc%\DP_*.7z&quot;) DO Start /wait /separate /high &quot;&quot; &quot;%zpath%&quot; x &quot;%%f&quot; -o&quot;%SystemDrive%\D\&quot;
    ) ELSE (
    FOR %%f IN (&quot;%DPLoc%\DP_*.7z&quot;) DO Start /wait /separate /high &quot;&quot; &quot;%cur%\bin\un7zip.exe&quot; &quot;%%f&quot; %SystemDrive%\D\
    )
  IF /I &quot;%OSbuild%&quot;==&quot;NT6&quot; GOTO Begin
  COPY /Y &quot;%DPLoc%\*.ins&quot; 			%SystemDrive%\
  IF /I &quot;%zip%&quot;==&quot;Y&quot; (
    Start /wait /separate /high &quot;&quot; &quot;%zpath%&quot; x &quot;%cur%\bin\DPsFnshr.7z&quot; -o&quot;%SystemDrive%\&quot;
    ) ELSE (
    Start /wait /separate /high &quot;&quot; &quot;%cur%\bin\un7zip.exe&quot; &quot;%cur%\bin\DPsFnshr.7z&quot; %SystemDrive%\
    )
  %SystemDrive% &amp; cd %SystemDrive%\D
  ECHO&gt;&quot;%DPFL%&quot; [Settings]
  ECHO&gt;&gt;&quot;%DPFL%&quot; DPsRoot = &quot;%SystemDrive%&quot;
  ECHO&gt;&gt;&quot;%DPFL%&quot; DPsRootDel = &quot;true&quot;
  ECHO&gt;&gt;&quot;%DPFL%&quot; debug = &quot;true&quot;
)</code></pre></div><p>To this:<br /></p><div class="codebox"><pre><code>:Method2
IF /I &quot;%zip%&quot;==&quot;Y&quot; ECHO Using native 7-Zip
IF &quot;%M%&quot;==&quot;2&quot; (
  ECHO * &amp; ECHO Preparing the DriverPacks now. Method 2 was found. &amp; ECHO *
  ECHO Extracting DriverPacks from: %DPLoc%
  IF /I &quot;%zip%&quot;==&quot;Y&quot; (
    FOR %%f IN (&quot;%DPLoc%\DP_*.7z&quot;) DO Start /wait /separate /min /high &quot;&quot; &quot;%zpath%&quot; x &quot;%%f&quot; -o&quot;%SystemDrive%\D\&quot;
    ) ELSE (
    FOR %%f IN (&quot;%DPLoc%\DP_*.7z&quot;) DO Start /wait /separate /min /high &quot;&quot; &quot;%cur%\bin\un7zip.exe&quot; &quot;%%f&quot; %SystemDrive%\D\
    )
  IF /I &quot;%OSbuild%&quot;==&quot;NT6&quot; GOTO Begin
  COPY /Y &quot;%DPLoc%\*.ins&quot; 			%SystemDrive%\
  IF /I &quot;%zip%&quot;==&quot;Y&quot; (
    Start /wait /separate /min /high &quot;&quot; &quot;%zpath%&quot; x &quot;%cur%\bin\DPsFnshr.7z&quot; -o&quot;%SystemDrive%\&quot;
    ) ELSE (
    Start /wait /separate /min /high &quot;&quot; &quot;%cur%\bin\un7zip.exe&quot; &quot;%cur%\bin\DPsFnshr.7z&quot; %SystemDrive%\
    )
  %SystemDrive% &amp; cd %SystemDrive%\D
  ECHO&gt;&quot;%DPFL%&quot; [Settings]
  ECHO&gt;&gt;&quot;%DPFL%&quot; DPsRoot = &quot;%SystemDrive%&quot;
  ECHO&gt;&gt;&quot;%DPFL%&quot; DPsRootDel = &quot;true&quot;
  ECHO&gt;&gt;&quot;%DPFL%&quot; debug = &quot;true&quot;
)</code></pre></div><div class="quotebox"><cite>Lucius Snow wrote:</cite><blockquote><p>- Is it possible to disable the &quot;do you want to reboot&quot; &quot;later or now&quot; prompt question by Windows 7 just after logging to the session ?</p></blockquote></div><p>I&#039;m not sure what you mean.&nbsp; My utility doesn&#039;t ask if you want to reboot.&nbsp; If you don&#039;t want the timer to count down at the end then just delete the whole :Timer section.<br />It does have a &quot;silent&quot; switch though, just use the command: DP_Install_Tool.cmd /S</p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2012-07-15T20:00:47Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=48790#p48790</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=48789#p48789"/>
			<content type="html"><![CDATA[<p>Hello all,</p><p>I&#039;ve got two questions :</p><p>- Is it possible to hide automaticaly the command prompt window when the files are decompressing and installing ? Something like a silent mode ...</p><p>- Is it possible to disable the &quot;do you want to reboot&quot; &quot;later or now&quot; prompt question by Windows 7 just after logging to the session ?</p><p>Thank you.</p>]]></content>
			<author>
				<name><![CDATA[Lucius Snow]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=2472</uri>
			</author>
			<updated>2012-07-15T17:53:00Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=48789#p48789</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=45731#p45731"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>Baldwin wrote:</cite><blockquote><p>How&#039;s the testing results i wonder?</p></blockquote></div><p>Still going...<br />I may have found a bug with the DriverPacks Finisher.&nbsp; testing...</p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2011-10-04T17:43:05Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=45731#p45731</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=45729#p45729"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>mr_smartepants wrote:</cite><blockquote><div class="quotebox"><cite>David McMahon wrote:</cite><blockquote><p>1, I&#039;m using 1105005, still current? I don&#039;t see new on Page 1</p><p>2, How about allowing me to keep the drivers, I think it worth the disk cost as a backup, I tried editing the batch file but without success.</p></blockquote></div><p>1) Technically no.&nbsp; I updated my own copy and forgot to update the first post. <img src="http://forum.driverpacks.net/img/smilies/sad.png" width="15" height="15" alt="sad" />&nbsp; Oops.<br /></p><div class="quotebox"><blockquote><p>:: Changelog:<br /> :: v110713<br /> :: Fixed code to prevent errors during cleanup stage (Erik Hansen)<br /> :: Added code to report accurate CPU type (Erik Hansen)<br /> :: Added code to detect DP_*.7z files in the current directory (Erik Hansen)</p></blockquote></div><p>2)Excellent idea.&nbsp; I&#039;ll add it in and update the first post over the weekend after testing.</p><p>BTW, the new thread is over here ---&gt;:</p></blockquote></div><p>How&#039;s the testing results i&nbsp; wonder?</p>]]></content>
			<author>
				<name><![CDATA[Baldwin]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=20044</uri>
			</author>
			<updated>2011-10-04T11:59:21Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=45729#p45729</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=45645#p45645"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>David McMahon wrote:</cite><blockquote><p>1, I&#039;m using 1105005, still current? I don&#039;t see new on Page 1</p><p>2, How about allowing me to keep the drivers, I think it worth the disk cost as a backup, I tried editing the batch file but without success.</p></blockquote></div><p>1) Technically no.&nbsp; I updated my own copy and forgot to update the first post. <img src="http://forum.driverpacks.net/img/smilies/sad.png" width="15" height="15" alt="sad" />&nbsp; Oops.<br /></p><div class="quotebox"><blockquote><p>:: Changelog:<br /> :: v110713<br /> :: Fixed code to prevent errors during cleanup stage (Erik Hansen)<br /> :: Added code to report accurate CPU type (Erik Hansen)<br /> :: Added code to detect DP_*.7z files in the current directory (Erik Hansen)</p></blockquote></div><p>2)Excellent idea.&nbsp; I&#039;ll add it in and update the first post over the weekend after testing.</p><p>BTW, the new thread is over here ---&gt;: <a href="http://forum.driverpacks.net/viewtopic.php?id=5336">http://forum.driverpacks.net/viewtopic.php?id=5336</a></p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2011-09-22T20:13:48Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=45645#p45645</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=45644#p45644"/>
			<content type="html"><![CDATA[<p>Hello again, been using your tool on most of the PC&#039;s I come across! Couple of ideas/questions...</p><p>1, I&#039;m using 1105005, still current? I don&#039;t see new on Page 1</p><p>2, How about allowing me to keep the drivers, I think it worth the disk cost as a backup, I tried editing the batch file but without success.</p>]]></content>
			<author>
				<name><![CDATA[David McMahon]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=6037</uri>
			</author>
			<updated>2011-09-22T20:02:11Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=45644#p45644</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44907#p44907"/>
			<content type="html"><![CDATA[<p>Why not just make a pack .ini and let DriverPacks Finisher do all the work?</p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2011-08-11T18:58:56Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44907#p44907</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44906#p44906"/>
			<content type="html"><![CDATA[<p>Thanks so much for your help and quick response.&nbsp; I&#039;ll give it a shot later today.</p><p>On a side note... I&#039;ve been trying to fill in some holes missing for drivers on my work side of things when it comes to driverpacks.&nbsp; I&#039;ve got a few drivers that are not standard, run of the mill for Intel chipset so I&#039;ve made a 3rd party driverpack for them and it installs and registers fine. <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>My only question is how would I go about adding the SOFTWARE to go with the drivers?&nbsp; Here is an example - <a href="http://support.dell.com/support/downloads/download.aspx?c=us&amp;cs=19&amp;l=en&amp;s=dhs&amp;releaseid=R286630&amp;SystemID=PLX_960&amp;servicetag=&amp;os=W764&amp;osl=en&amp;deviceid=12178&amp;devlib=0&amp;typecnt=0&amp;vercnt=4&amp;catid=-1&amp;impid=-1&amp;formatcnt=0&amp;libid=27&amp;typeid=-1&amp;dateid=-1&amp;formatid=-1&amp;source=-1&amp;fileid=438093">http://support.dell.com/support/downloa … eid=438093</a></p><p>The SOL driver I can create a 3rd party package for and install the driver, but the intel software isn&#039;t coming across.&nbsp; I&#039;m sure it is something to do with my folder structure.&nbsp; I could do a silent install of the software with a /S command (which does work).&nbsp; I&#039;d just like to know how to build it into the base driverpack option so I don&#039;t need to do more work <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" />&nbsp; I know it&#039;s possible based off of the audio and video packages that are on the site.&nbsp; Just curious <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>I&#039;ve been following this guide which has served me well - <a href="http://forum.driverpacks.net/viewtopic.php?id=5">http://forum.driverpacks.net/viewtopic.php?id=5</a></p><p>What am I missing?</p>]]></content>
			<author>
				<name><![CDATA[ssx4life]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=5702</uri>
			</author>
			<updated>2011-08-11T17:19:22Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44906#p44906</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44904#p44904"/>
			<content type="html"><![CDATA[<p>Well, to make it run without the &quot;press any key...&quot; just delete all instances of &quot;pause&quot; from the code.<br />You can call the batch file how ever you want. <br />As an example, you could call it from the %cdrom%\sources\$oem$\$$\Setup\scripts\setupcomplete.cmd</p><div class="codebox"><pre><code>@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 SAD2 install

echo Stand Alone Driver Installer
IF EXIST %CDROM%\SAD2\DP_Install_Tool.cmd call %CDROM%\SAD2\DP_Install_Tool.cmd
exit</code></pre></div><p>I haven&#039;t tried it, but that should work.</p><p>I just have it on my USB thumbdrive and execute it manually post-install.</p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2011-08-11T15:45:18Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44904#p44904</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44903#p44903"/>
			<content type="html"><![CDATA[<p>Question for you <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>Could you point me to the right direction on how to make the script automated?&nbsp; I&#039;d like to add this to my Windows 7 image and have it auto run after first boot without having to hit enter to confirm the request to begin.</p><p>Thanks.</p>]]></content>
			<author>
				<name><![CDATA[ssx4life]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=5702</uri>
			</author>
			<updated>2011-08-11T15:32:47Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44903#p44903</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=43847#p43847"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>TechDud wrote:</cite><blockquote><p>Are the licences time-limited, or transferable?&nbsp; Is there any major relationship between TechNet &amp; MSDN?</p></blockquote></div><p>MSDN just has more licenses and better support (free calls to MS for support). Also they send you a complete set of discs (so you don&#039;t have to download all the ISOs. I had a MSDN universal account a few years ago... the Disc set is a nice thing to have around if you are a tech <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /> <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /> <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p><p>the license are technically for &quot;non production environments&quot; (testing only) but work just the same as a &quot;valid&quot; license... otherwise how could you do valid testing <img src="http://forum.driverpacks.net/img/smilies/tongue.png" width="15" height="15" alt="tongue" />.</p><p>so no they are not time limited and they are not transferable... Technically they are not even to be used ... except for testing. BUT you can test as much and often and as long as you like <img src="http://forum.driverpacks.net/img/smilies/tongue.png" width="15" height="15" alt="tongue" /> - HINT: Don&#039;t activate your installs unless you have to <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" />.</p>]]></content>
			<author>
				<name><![CDATA[OverFlow]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1097</uri>
			</author>
			<updated>2011-05-19T06:13:44Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=43847#p43847</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=43844#p43844"/>
			<content type="html"><![CDATA[<p>The best deal I&#039;ve found for TechNet Standard is $178.82 from <a href="http://www.pcconnectionexpress.com/IPA/Shop/Product/Detail.htm?sku=11112673&amp;cm_mmc=Pricegrabber-_-11112673-_-New-_-GY16&amp;ci_src=5784816&amp;ci_sku=11112673">PC-Connection</a><br />Details here: <a href="http://technet.microsoft.com/en-us/subscriptions/bb892756.aspx">http://technet.microsoft.com/en-us/subs … 92756.aspx</a><br />This is a great value for the money. I was wrong about the licenses, you get two licenses of each of the major Windows OS&#039;s... in both flavors - 32bit and 64bit.&nbsp; You also get licenses for other productivity software, including Office.<br />TechNet Standard – TWO licenses per product</p><p>TechNet Professional – FIVE licenses per product.</p><p>The license limits are on the number of installations for each software title. For example TechNet Standard gives you two licenses for Office 2010 and Office 2007 and Windows 7 and Windows Vista plus many other products. The Professional edition gives you five of each.<br />I&#039;ll be using one of my licenses on WHS2011 once I get my sh!t together. <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /></p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2011-05-18T20:06:51Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=43844#p43844</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Windows 7 x86 & x64 Stand Alone Driverpack utility]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=43842#p43842"/>
			<content type="html"><![CDATA[<p>WoooHooo!&nbsp; &nbsp;Um, i&#039;d need a credit card, wouldn&#039;t i.&nbsp; DOOHHH! <img src="http://forum.driverpacks.net/img/smilies/mad.png" width="15" height="15" alt="mad" /><br />Are the licences time-limited, or transferable?&nbsp; Is there any major relationship between TechNet &amp; MSDN?<br />Is this one reason why i see so many old &#039;puters on craigslist with 7 for dirt cheap?</p>]]></content>
			<author>
				<name><![CDATA[TechDud]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=14671</uri>
			</author>
			<updated>2011-05-18T19:52:38Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=43842#p43842</id>
		</entry>
</feed>
