<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[DriverPacks.net Forum - Driverspack compressed on a usb-stick win xp instalation]]></title>
		<link>http://forum.driverpacks.net/viewtopic.php?id=3209</link>
		<description><![CDATA[The most recent posts in Driverspack compressed on a usb-stick win xp instalation.]]></description>
		<lastBuildDate>Sun, 02 Nov 2008 04:17:55 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Driverspack compressed on a usb-stick win xp instalation]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=25824#p25824</link>
			<description><![CDATA[<p>Look, <br />This forum ( Feedback and Support ) is for Feedback and support of DriverPacks... <br />&nbsp; Not only are you not useing DriverPacks you are not useing it in a supported manner...<br />all that aside... we don&#039;t troubleshoot code for noobs... </p><p>HOWEVER: Since it (on the surface) seems like such a Blatant and Obvious mistake here you go...</p><p>you wrote<br />SET DRV=%SystemDrive%\Drivers<br />.\7za.exe x -y -aoa -o&quot;%SystemDrive%\Drivers&quot; &quot;.\Drivers.7z&quot;<br />)</p><br /><p>the Syntax is <br />7z [source] [destination]<br />not <br />7z [destination] [source]</p><br /><p>so you should have written<br />IF EXIST Drivers.7z (<br />SET DRV=%SystemDrive%\Drivers<br />.\7z.exe -y -aoa &quot;.\Drivers.7z&quot; -o&quot;%SystemDrive%\Drivers&quot;<br />)</p><p>Let us know if you get it to work <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>IDK if we can help since this is a little off topic, <br />but your welcome to ask... <br />and i know we would love to hear that you got it to work</p><p>jeff</p><p>Moved to &quot;Other&quot;</p><p>PS that artical is over 4 years old... and much has happened since then...</p><p>take a look in our FAQ about SAD (To be renamed SoFI) <br />I belive SAD created with M2 will be a better solution for you.<br />SAD still has a few glitches we are ironing out but you can check it out by clicking on the link on our homepage<br /><a href="http://driverpacks.net">http://driverpacks.net</a><br />it is the second news item on the page</p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Sun, 02 Nov 2008 04:17:55 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=25824#p25824</guid>
		</item>
		<item>
			<title><![CDATA[Driverspack compressed on a usb-stick win xp instalation]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=25820#p25820</link>
			<description><![CDATA[<p>Hi, i try the simple method of drivers from cd (<a href="http://www.msfn.org/board/Drivers-CD-Simple-Metho-t51406.html">http://www.msfn.org/board/Drivers-CD-Si … 51406.html</a>) is more information about, but the problem is i not install from a cdsource, the instalation is from a usb-stick using WinSetupFromUSB program (<a href="http://www.msfn.org/board/install-USB-WinSetupF-t120444.html">http://www.msfn.org/board/install-USB-W … 20444.html</a>)</p><p>The thing is, i got the compressed drivers in 1 file called Drivers.7z, inside U:\$WIN_NT$.~LS\$OEM$\Drivers (drive letter for my usb-stick is always U:) The frist time i try the install win xp and the drivers and not work, then i try, try, try, and try, and i looking for the problem, i read the file Drivers.cmd and i see the code is for a CDSOURCE, not for and removible usb and less for a usb-stick with the letter drive is always U:</p><p>I think the problem is that, just the code the drivers.cmd and the search for a cdsource and the dir tree in the usb-stick is no match a cd instalation method.</p><p>I let you my dir tree from usb-stick</p><p>U:<br />---\$WIN_NT$.~BT<br />----------------------\system32<br />---\$WIN_NT$.~LS<br />----------------------\$OEM$<br />-------------------------------\Drivers\Drivers.7z<br />----------------------\I386</p><p>This is the code for drivers.cmd</p><p>CLS<br />@ECHO OFF<br />TITLE Drivers-from-CD Installation<br />color 1F<br />:: Set Current Drive as CD<br />CD /D &quot;%~dp0&quot;<br />:: Set Drivers Location Folder<br />SET DRV=Drivers<br />:: Ticker script<br />ECHO.exec hide %CD%\Process.exe -r setup.exe &gt;%SystemDrive%\Ticker.ncl<br />ECHO.wait 10000 &gt;&gt;%SystemDrive%\Ticker.ncl<br />ECHO.exec hide %CD%\Process.exe -p SetupCopyOEMInf.exe high &gt;&gt;%SystemDrive%\Ticker.ncl<br />ECHO.exec hide %CD%\Process.exe -s setup.exe &gt;&gt;%SystemDrive%\Ticker.ncl<br />ECHO.wait 50000 &gt;&gt;%SystemDrive%\Ticker.ncl<br />ECHO.script %SystemDrive%\Ticker.ncl &gt;&gt;%SystemDrive%\Ticker.ncl<br />:: Pre-Install (Suspend Setup, and Set Setup to Low Priority)<br />.\Process.exe -s setup.exe<br />.\Process.exe -p setup.exe low<br />:: Allow for Unsigned Drivers<br />START .\WatchDriverSigningPolicy.exe<br />:: If Compressed Drivers Exist, Unzip Them &amp; Change Drivers Location Folder to Hard Drive<br />IF EXIST Drivers.7z (<br />SET DRV=%SystemDrive%\Drivers<br />.\7za.exe x -y -aoa -o&quot;%SystemDrive%\Drivers&quot; &quot;.\Drivers.7z&quot;<br />)<br />:: Run NirCmd Ticker Script (code above)<br />START .\NirCmd.exe script %SystemDrive%\Ticker.ncl<br />:: Install Drivers<br />.\SetupCopyOEMInf.exe &quot;%DRV%&quot;<br />:: Post-Install (Close NirCmd, Setup Priority back to Normal, Resume Setup)<br />.\Process.exe -k NirCmd.exe<br />.\Process.exe -p setup.exe normal<br />.\Process.exe -r setup.exe<br />:: Delete Ticker File<br />DEL %SystemDrive%\Ticker.ncl<br />EXIT</p><br /><br /><p>I hope somebody can help me, Sorry for my english</p>]]></description>
			<author><![CDATA[null@example.com (carimlive)]]></author>
			<pubDate>Sun, 02 Nov 2008 03:05:50 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=25820#p25820</guid>
		</item>
	</channel>
</rss>
