<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[DriverPacks.net Forum - Sysprep mass storage section with DriverPacks Mass Storage]]></title>
		<link>http://forum.driverpacks.net/viewtopic.php?id=1637</link>
		<description><![CDATA[The most recent posts in Sysprep mass storage section with DriverPacks Mass Storage.]]></description>
		<lastBuildDate>Mon, 07 Apr 2008 18:30:27 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=19271#p19271</link>
			<description><![CDATA[<p>Note 1: I posted this same message on the MSFN forum at <a href="http://www.msfn.org/board/Request-Script-Massstorage-Section-sysprep-t43413.html">http://www.msfn.org/board/Request-Scrip … 43413.html</a> , which is the thread from spring 2005 hosting the original HWIDS.CMD script. I posted it there at the request of IcemanND, the author of the INF scanning engine in this script. Thanks for the original, IcemanND!</p><p>Note 2: If someone knows how to change IcemanND&#039;s script to filter out the tab characters that sometimes got through the original script, then the dependency on SED.EXE will go away.</p><p>---<br />I have taken the HWIDS script and improved it by solving several weaknesses in the original.&nbsp; The main caveat is it now requires SED.EXE, a free/GPL tool from <a href="http://gnuwin32.sourceforge.net/packages/sed.htm">http://gnuwin32.sourceforge.net/packages/sed.htm</a> , to be somewhere on the system path.&nbsp; I used SED to remove the tab characters that Skillz reported in an earlier post. The list of improvements is in the code below.</p><p>On the todo list would be automating the following:<br />1.) running sysprep -bmsd to insert the official MassStorage drivers into sysprep.inf (easy to do in a batch file)<br />2.) inserting of the output of this HWIDS script into the correct section of sysprep.inf, after the official drivers list, while verifying duplicate entries are not created in case a driver has been added on a previous insertion. (If someone has a good way of doing this, I&#039;d love to hear it.)</p><p>HWIDS.CMD (Inf Scanner)<br /></p><div class="codebox"><pre><code>@echo off
:: Core INF scanning and processing engine created by IcemanND and posted on MSFN Forums
:: at http://www.msfn.org/board/lofiversion/index.php/t43413.html
::
:: Note: I (HK) contacted IcemanND on MSFN on 4/7/2008 and asked him if it would be okay to
:: release this modified version under both the GPL and Creative Commons Attribution licenses.
:: His response was &#039;Feel free.&#039;
::
:: Reposted by Skillz on Driverpacks.net Forums at http://forum.driverpacks.net/viewtopic.php?pid=11604
:: Modified and expanded by Haudy Kazemi:
:: -improved handling of paths with spaces in them (added quotes around &#039;%cd%&#039; in SET STDOUT line)
:: -added error messages rather than silently exiting
:: -added ability to configure filename of output file
:: -added a check to see whether the output file name already exists to prevent accidental overwriting
:: -cleaned up output and added status and progress information
:: -Skillz reported that tab characters are not removed by the script.  I worked around this problem
::  with this command: sed -T -e &quot;s/	//&quot; hwids.txt &gt; hwids-tabsremoved.txt
::  (tested and found to work correctly using &#039;GNU sed version 4.1.5&#039; on Windows XP)

IF &quot;%1&quot;==&quot;&quot; GOTO INFO
IF NOT EXIST %1 GOTO FOLDERNOTFOUND
IF &quot;%2&quot;==&quot;&quot; GOTO NOOUTPUTFILE
IF &quot;%3&quot;==&quot;overwrite&quot; GOTO SKIPOUTPUTFILECHECK
IF EXIST &quot;%2&quot; GOTO OUTPUTFILEEXISTS
:SKIPOUTPUTFILECHECK

:: Check for SED.EXE on path (derived from sample code in viewpath.cmd on http://www.ss64.com/nt/path.html )
:: I (HK) contacted Simon Sheppard of ss64.com on 4/7/2008 about using a derivation of his code and
:: releasing it under both the GPL and Creative Commons Attribution licenses.  His response was &#039;Sure, no problem&#039;.
:: Note: I (HK) have put together a related script called ProgramPath that exposes this search-the-path-for-a-file
:: ability directly on the command line.
::echo the path one line at a time
for %%G in (&quot;%path:;=&quot; &quot;%&quot;) do (
 ::echo %%G\sed.exe
 IF EXIST %%G\sed.exe GOTO SEDEXEFOUND
)
GOTO SEDEXENOTFOUND
:SEDEXEFOUND

echo Beginning scan...this may take a few minutes...

SETLOCAL ENABLEDELAYEDEXPANSION
SET STDOUT=&quot;%cd%&quot;\%2
SET OUTPUTFILE=%2
TYPE&gt;%STDOUT% 2&gt;NUL

::traverse drivers path
CALL :TRAVERSAL %1

::Use sed to find and remove any tab characters in the output file
::This is a workaround for the problem reported by Skillz
echo Running SED.EXE on %OUTPUTFILE%
sed -T -e &quot;s/	//&quot; %OUTPUTFILE% &gt; %OUTPUTFILE%-tabsremoved.txt
del %OUTPUTFILE% 
ren %OUTPUTFILE%-tabsremoved.txt %OUTPUTFILE%
echo Job completed.
GOTO EOF

:TRAVERSAL
echo Processing %1
PUSHD %1
for /f %%f in (&#039;dir /b *.inf&#039;) do (
 echo Processing %1\%%f
 for /f &quot;eol=- tokens=2 delims=,&quot; %%i in (&#039;find /i &quot;pci\ven&quot; %%f&#039;) do (
  for /f &quot;tokens=*&quot; %%j in (&quot;%%i&quot;) do (
    for /f &quot;tokens=1* delims=_&quot; %%k in (&quot;%%j&quot;) do (
      if /i &quot;%%k&quot; EQU &quot;PCI\VEN&quot; (
        for /f &quot;usebackq tokens=1* delims=; &quot; %%a in (&#039;%%j&#039;) do (
          echo %%a=%cd%\%%f&gt;&gt;%STDOUT%
        )
      )
    )
  )
)
)

FOR /F %%I IN (&#039;DIR /AD /OGN /B&#039;) DO (
CALL :TRAVERSAL %CD%\%%I
)
POPD
GOTO EOF

:INFO
echo Inf Scanner 20080407 by Haudy Kazemi
echo Credit is due to IcemanND for the core INF scanning engine, and
echo to Simon Sheppard for his system path parsing example.
echo Dual licensed under the GPL and Creative Commons Attribution License
echo.
echo This script is designed to scan a directory tree containing MassStorage device
echo INFs to find their HWIDs and output them to a file that can then be added into
echo a SYSPREP.INF.  This script should work on any INFs, in case you want to
echo gather a collection of HWIDs for other types of hardware.
echo.
echo HWIDS %%1 %%2 %%3
echo %%1 is the path to folder/tree containing DriverPack MassStorage or other INFs
echo    (e.g. C:\D\M ).
echo %%2 is the name of an output file to store the HWIDS in (e.g. hwids.txt)
echo %%3 should be the word &#039;overwrite&#039; if you want to replace an existing output
echo    file of the same name
echo.
echo Messages of &#039;File Not Found&#039; are normal.  They are caused by the script&#039;s use
echo of &#039;dir /b *.inf&#039; coming across folders with no INF files in them.  These can
echo safely be ignored.
goto EOF

:FOLDERNOTFOUND
echo ERROR: The specified folder was not found.
echo Please specify another folder location.
GOTO EOF

:NOOUTPUTFILE
echo ERROR: No output file specified.
echo Please specify the name of an output file to store the HWIDS in (e.g. hwids.txt).
GOTO EOF

:OUTPUTFILEEXISTS
echo ERROR: File overwrite prevented.
echo You chose an output filename that already exists.  Please delete that file,
echo enable overwriting, or choose a different filename.
GOTO EOF

:SEDEXENOTFOUND
echo ERROR: SED.EXE was not found anywhere in the system path.
echo Please make it available on the system path.  It is needed to remove
echo extra tabs in the output file.
echo Note: GNU sed version 4.1.5 is known to work correctly on Windows XP
echo and can be obtained from http://gnuwin32.sourceforge.net/packages/sed.htm
GOTO EOF

:EOF</code></pre></div><p>I call HWIDS.CMD with another script named hwidscan.bat.&nbsp; This specifies the folder to scan, the name of the output file, and to force an overwrite of the output file if it already exists:<br />HWIDSCAN.BAT<br /></p><div class="codebox"><pre><code>:: Put together by Haudy Kazemi on 4/7/2008 to automate the HWIDS.CMD scan and update
hwids.cmd c:\drivers\dp\D\M hwids.txt overwrite</code></pre></div><p>In the process of creating the improvements to HWIDS.CMD, I wrote code to verify that SED was available.&nbsp; Here is that code in a standalone form, called ProgramPath.&nbsp; It&#039;s job is to check to see if a program or file is available somewhere on the system path, and report back any locations it finds.</p><p>PROGRAMPATH.CMD<br /></p><div class="codebox"><pre><code>@echo off
if &quot;%1&quot;==&quot;&quot; goto INFO

::echo the path one line at a time
for %%G in (&quot;%path:;=&quot; &quot;%&quot;) do (
 ::echo %%G\%1
 IF EXIST %%G\%1 echo %%G\%1
)

goto END

:INFO
:: I (HK) contacted Simon Sheppard of ss64.com on 4/7/2008 about using a derivation of his code and
:: releasing it under both the GPL and Creative Commons Attribution licenses.  His response was &#039;Sure, no problem&#039;.
:: Based on Simon Sheppard&#039;s viewpath.cmd
:: at http://www.ss64.com/nt/path.html
:: and http://www.ss64.org/dl1/ss64win.zip

echo ProgramPath 20080407 by Haudy Kazemi
echo Credit is due to Simon Sheppard for his system path parsing example.
echo Dual licensed under the GPL and Creative Commons Attribution License
echo.
echo Checks to see if a program or file is available on the system path:
echo   PROGRAMPATH %%1
echo where %%1 is the name of the file you want to check for
echo.

:END</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (hkazemi)]]></author>
			<pubDate>Mon, 07 Apr 2008 18:30:27 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=19271#p19271</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=16120#p16120</link>
			<description><![CDATA[<p>Love the script Skillz!</p><p>Everything seems to work well with 7.11 drivers too!</p><p>I use this in conjunction with Vernalex&#039;s Sysprep Driver Scanner</p><p>Run Vernalex Scanner on directories you want (I usually only do Chipset, CPU, MassStorage and LAN; because Sound and Graphics usually screw everything up)</p><p>Sysprep.inf<br />--------------<br />; NOTHING IN OEM PNP DRIVERS SECTION</p><div class="codebox"><pre><code>[Sysprep]
    BuildMassStorage=Yes

[SysprepMassStorage]</code></pre></div><p>Sysprep.01.bat<br />------------------<br /></p><div class="codebox"><pre><code>sysprep.exe -bmsd</code></pre></div><p>----------------------------------------&gt; Builds the current driver list</p><br /><p>HWIDS.bat<br />-------------<br /></p><div class="codebox"><pre><code>REM Created by Skillz on Driverpacks.net Forums
rem %1 is path to MassDriverPacks Folder
IF &quot;%1&quot;==&quot;&quot; GOTO EOF
IF NOT EXIST %1 GOTO EOF

SETLOCAL ENABLEDELAYEDEXPANSION
SET STDOUT=%cd%\HWIDS.TXT
TYPE&gt;%STDOUT% 2&gt;NUL

::traverse drivers path
CALL :TRAVERSAL %1

GOTO EOF

:TRAVERSAL
PUSHD %1
for /f %%f in (&#039;Dir /b *.inf&#039;) do (
 for /f &quot;eol=- tokens=2 delims=,&quot; %%i in (&#039;find /i &quot;pci\ven&quot; %%f&#039;) do (
  for /f &quot;tokens=*&quot; %%j in (&quot;%%i&quot;) do (
    for /f &quot;tokens=1* delims=_&quot; %%k in (&quot;%%j&quot;) do (
      if /i &quot;%%k&quot; EQU &quot;PCI\VEN&quot; (
        for /f &quot;usebackq tokens=1* delims=; &quot; %%a in (&#039;%%j&#039;) do (
          echo %%a=%cd%\%%f&gt;&gt;%STDOUT%
        )
      )
    )
  )
)
)

FOR /F %%I IN (&#039;DIR /AD /OGN /B&#039;) DO (
CALL :TRAVERSAL %CD%\%%I
)
POPD
GOTO EOF

:EOF</code></pre></div><p>HWIDS.bat<br />-------------<br /></p><div class="codebox"><pre><code>HWIDS.cmd D\M</code></pre></div><p>------------------------------&gt; Put both HWIDS.bat and HWIDS.cmd at the root of C:</p><p>The file created will be called HWIDS.txt at root C:, copy the whole list into the Sysprep file under the section [SysprepMassStorage] after the Syspreped switch -BMSD imported drivers.</p><p>REMEMBER ALWAYS CREATE TWO IMAGES, one for BASE and one for SYSPREP.</p>]]></description>
			<author><![CDATA[null@example.com (stamandster)]]></author>
			<pubDate>Tue, 11 Dec 2007 18:40:22 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=16120#p16120</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12666#p12666</link>
			<description><![CDATA[<p>A hack solution, that seems to be extensible, for those comfortable with creating a WinPE environment (see FixIDE at the bottom), can be found <a href="http://www.emro.nl/bartpe/">here</a>.</p><p>Modifiable WinPE environments can be found <a href="http://www.ubcd4win.com/">here</a> and <a href="http://www.nu2.nu/pebuilder/">here</a>.</p>]]></description>
			<author><![CDATA[null@example.com (johnk963)]]></author>
			<pubDate>Thu, 19 Jul 2007 08:00:15 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12666#p12666</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12660#p12660</link>
			<description><![CDATA[<p>I put the drivers in C:\D\3\M\In\1 and my [SysprepMassStorage] part in sysprep.inf contains the following lines:</p><p>PCI\VEN_8086&amp;DEV_2653&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_27C1&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_27C5&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_2681&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_2821&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_2829&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_2922&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_27C1&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_27C5&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_2681&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_2821&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_2829&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_2922&amp;CC_0106=C:\D\3\M\In\1\iaahci.inf<br />PCI\VEN_8086&amp;DEV_282A&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_2822&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_27C6&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_2682&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_27C3&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_282A&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_2822&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_27C6&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_2682&amp;CC_0104=C:\D\3\M\In\1\iastor.inf<br />PCI\VEN_8086&amp;DEV_27C3&amp;CC_0104=C:\D\3\M\In\1\iastor.inf</p><p>And it looks like its working.</p><p>Why can&#039;t I put them in the C:\D\3?</p>]]></description>
			<author><![CDATA[null@example.com (Skillz)]]></author>
			<pubDate>Thu, 19 Jul 2007 06:19:25 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12660#p12660</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12652#p12652</link>
			<description><![CDATA[<p>Hi<br />mass storage should NOT be put in 3rd party folder.<br /></p><div class="quotebox"><blockquote><p>( in D\3\M\In\1 ...)</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Wed, 18 Jul 2007 21:27:27 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12652#p12652</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12646#p12646</link>
			<description><![CDATA[<p>Ok, just to make sure I get it right:</p><p>The problem with the current intel massstorage drivers is that one driverset doesnt support all the ich(x) versions.<br />Mainly, the older ich5 isnt supported anymore with the latest Intel Matrix Storage Manager.</p><p>At my work this isn&#039;t really a problem as we don&#039;t have any pc&#039;s that use that ich5 driver.<br />And we only use hardware which use the newer intel massstorage drivers.</p><p>So, if I would remove all the massstorage drivers from my sysprep, add the latest Intel Matrix Storage Manager Driver<br />in D\3\M\In\1 directory and point to these drivers in the [SysprepMassStorage] section of my sysprep, it would be a solution for me?</p>]]></description>
			<author><![CDATA[null@example.com (Skillz)]]></author>
			<pubDate>Wed, 18 Jul 2007 07:11:24 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12646#p12646</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12617#p12617</link>
			<description><![CDATA[<p>the INF name, is easy.. rename it..<br />but, same SYS.. <br />If we rename the SYS, the INF must be edited.<br />The copyfiles list, is easy enough.</p><p>What torrero says, sorta made sense. The description of the driver in registry.. <br />but, it is not easy to make that happen and one wrong line will break the driver.</p><p>I tried.<br />If there is Anyone who makes a set of iastor that works for sysprep and from Disc, we can use you.</p>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Mon, 16 Jul 2007 09:20:04 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12617#p12617</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12616#p12616</link>
			<description><![CDATA[<p>and via, and all these others which use same INF name/same SYSname<br /><img src="http://forum.driverpacks.net/img/smilies/sad.png" width="15" height="15" alt="sad" /></p>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Mon, 16 Jul 2007 09:08:40 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12616#p12616</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12615#p12615</link>
			<description><![CDATA[<p>I never knew there were somuch problems with the intel massstorage drivers... <img src="http://forum.driverpacks.net/img/smilies/sad.png" width="15" height="15" alt="sad" /><br />Hope you guys find a good solution.</p>]]></description>
			<author><![CDATA[null@example.com (Skillz)]]></author>
			<pubDate>Mon, 16 Jul 2007 09:03:45 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12615#p12615</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12608#p12608</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>done 55 / 62 / 75 like this </p><p>[iaStor_Inst.Services]<br />AddService = iaStor75, %SPSVCINST_ASSOCSERVICE%, iaStor_Service_Inst, iaStor_EventLog_Inst</p><p>[iaStor_mobl_Inst.Services]<br />AddService = iaStor75, %SPSVCINST_ASSOCSERVICE%, iaStor_mobl_Service_Inst, iaStor_EventLog_Inst</p></blockquote></div><p>these changes did NOT work on a live test from DISC <br />(it worked on three machines, but not on fourth..)<br />That means these changes were NOT enough.</p><p>If you can make the changes to INFs and they work for SYSPREP, then it must also be tested from a DISC on a live machine with hardware that uses the driver.<br />There will be no other way to get this in a release.</p>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Sun, 15 Jul 2007 17:18:34 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12608#p12608</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12570#p12570</link>
			<description><![CDATA[<p>he he, you know, one of the testpacks of two months ago failed, it had changes like this.., But what I had done was use search and I replaced a lot more, so it probably got messed up..</p><p>feedback by people who know what makes it tick like a swiss clock, would be very welcome.</p>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Fri, 13 Jul 2007 18:18:03 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12570#p12570</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12569#p12569</link>
			<description><![CDATA[<p>done 55/62/75<br />like this</p><p>[iaStor_Inst.Services]<br />AddService = iaStor75, %SPSVCINST_ASSOCSERVICE%, iaStor_Service_Inst, iaStor_EventLog_Inst</p><p>[iaStor_mobl_Inst.Services]<br />AddService = iaStor75, %SPSVCINST_ASSOCSERVICE%, iaStor_mobl_Service_Inst, iaStor_EventLog_Inst</p><p>will pack up, and update file on server.<br />I want to work on that Nvidia mess too.</p><p>any help on that?</p>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Fri, 13 Jul 2007 18:12:53 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12569#p12569</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12568#p12568</link>
			<description><![CDATA[<p>torerro?</p><p>it is your lucky day.<br />sorry, bad link.</p>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Fri, 13 Jul 2007 18:04:04 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12568#p12568</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12567#p12567</link>
			<description><![CDATA[<p>thanks for the edit.. the example was what I thought you meant.</p>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Fri, 13 Jul 2007 17:55:05 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12567#p12567</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sysprep mass storage section with DriverPacks Mass Storage]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=12566#p12566</link>
			<description><![CDATA[<p>I am tempted to ask &quot;you wanna make them?&quot;</p><p>one thing is clear, there WILL ALWAYS be overlap in the Packs, because there are drivers for 2003 / 2000 / XP which have THREE drivers for same hardware, and one can easily see they will have same HWIDs in them.</p><p>I mentioned we currently have an Excell file what we started to use to see the duplicates in the INI in.<br />With proper annotations in it, this is a good worksheet to see what is used for what.<br />You can thank Mr EchoPlatoon for the work done on that.<br />The Excell file may even be made accessible to the users of DriverPacks.<br />--------------</p><p>I think I see what you mean by the service display name <br />(&quot;friendly-name&quot;)<br />I had no idea that this could be a problem in sysprep.<br />One learns something new every day.</p><p>I&#039;ll look, and may upload an updated testversion soon.</p>]]></description>
			<author><![CDATA[null@example.com (Jaak)]]></author>
			<pubDate>Fri, 13 Jul 2007 17:50:42 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=12566#p12566</guid>
		</item>
	</channel>
</rss>
