<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[DriverPacks.net Forum - [BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
	<link rel="self" href="http://forum.driverpacks.net/extern.php?action=feed&amp;tid=5403&amp;type=atom"/>
	<updated>2011-07-26T05:19:46Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.driverpacks.net/viewtopic.php?id=5403</id>
		<entry>
			<title type="html"><![CDATA[Re: [BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44647#p44647"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>fearless wrote:</cite><blockquote><p>The .sys files were present.</p></blockquote></div><p>Hmm, they&#039;re not present on my system.<br />*Edit<br />In any case, this phenomenon is a true bug, but not with dpms.<br />The superfluous drivers will load whenever the &quot;mvnodrv.inf&quot; is invoked by the main .inf.&nbsp; The only real solution is to remove all the Marvell drivers from the pack.<br />They&#039;re harmless.</p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2011-07-26T05:19:46Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44647#p44647</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44644#p44644"/>
			<content type="html"><![CDATA[<p>The .sys files were present. Their presence does not indicate that the drivers were needed. Deleting them was part of the plan.</p><p>The script isn&#039;t intended to be run automatically. I&#039;ll probably just put it on the root on my Windows installation source and run it manually after most installs. I&#039;ll likely never change it to have a sanity check. Without having every Marvell controller (I have zero), I wouldn&#039;t know if I was checking for the right things.</p><p>I did change the script to require confirmation before executing.</p>]]></content>
			<author>
				<name><![CDATA[fearless]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=18817</uri>
			</author>
			<updated>2011-07-26T00:26:29Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44644#p44644</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44632#p44632"/>
			<content type="html"><![CDATA[<p>That&#039;s pretty dangerous.&nbsp; At the very least the script should check for the presence of the .sys files in the %windir%\system32\drivers\ folder.</p><br /><p>if exist %windir%\system32\drivers\mv*.sys goto EOF</p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2011-07-25T05:48:17Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44632#p44632</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44631#p44631"/>
			<content type="html"><![CDATA[<p>I made a dirty hack (two files) to delete the Marvell drivers from XP. Have both MarvellCleanup.cmd and MarvellCleanup.inf in the same folder on the local computer, run MarvellCleanup.cmd, and reboot.</p><p>It does not check whether the drivers are needed or not. It just deletes them indiscriminately. It does not check for success or failure.</p><p>FYI, the cmd file deletes the legacy services and then it runs the inf file which deletes everything else.</p><p>MarvellCleanup.cmd:<br /></p><div class="codebox"><pre><code>::Delete Marvell drivers installed by DriverPacks.
::Requires MarvellCleanup.inf

@Echo Off
Setlocal EnableExtensions
Echo WARNING: This script will indescriminately delete Marvell mass storage drivers
Echo MV61XXMM, MV64XXMM, and MVXXMM. ^(If DriverPacks was used to integrate mass
Echo storage drivers into a Windows installation source, then those drivers will
Echo always be installed whether needed or not.^) To continue, type &quot;mv&quot; and press
Set /P ans=enter or type any other response to cancel^&gt;
If /I &quot;%ans%&quot; NEQ &quot;mv&quot; (Echo Cancelled&amp; Goto end)
Set name=%~n0
Set iniRoot=\Registry\Machine
Set regRoot=HKLM
Set key=\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_
Set subkey=0000 Control
Set iniPerms=&quot;[1 8 17]&quot;
Set initmp=&quot;%temp%\%name%.ini&quot;
Set regdelarg=%iniRoot% %regRoot% %key% %iniPerms%
Call :regdel %regdelarg% MV61XXMM %subkey%
Call :regdel %regdelarg% MV64XXMM %subkey%
Call :regdel %regdelarg% MVXXMM %subkey%
Del %initmp%
Pushd &quot;%~dp0&quot;
rundll32 setupapi,InstallHinfSection DefaultInstall 132 .\%name%.inf
Popd
Echo A reboot may be required.
:end
Pause
Exit /B

:regdel
::Use regini to give Administrators full control then delete the key.
Echo.%1%3%5 %~4&gt;%initmp%
If &quot;%~6&quot; NEQ &quot;&quot; Echo.%1%3%5\%6 %~4&gt;&gt;%initmp% 
If &quot;%~7&quot; NEQ &quot;&quot; Echo.%1%3%5\%6\%7 %~4&gt;&gt;%initmp% 
If &quot;%~8&quot; NEQ &quot;&quot; Echo.%1%3%5\%6\%7\%8 %~4&gt;&gt;%initmp% 
If &quot;%~9&quot; NEQ &quot;&quot; Echo.%1%3%5\%6\%7\%8\%9 %~4&gt;&gt;%initmp% 
regini %initmp%
Reg Delete %2%3%5 /f
Exit /B</code></pre></div><p>MarvellCleanup.inf:<br /></p><div class="codebox"><pre><code>; Delete Marvell drivers installed by DriverPacks.

[version]
signature=&quot;$CHICAGO$&quot;

[DefaultInstall]
DelFiles = Files12

[DefaultInstall.Services]
DelService = mv61xxmm,0x00000004
DelService = mv64xxmm,0x00000004
DelService = mvxxmm,0x00000004

[DestinationDirs]
Files12 = 12

[Files12]
mv61xxmm.sys,,,0x00000001
mv64xxmm.sys,,,0x00000001
mvxxmm.sys,,,0x00000001</code></pre></div>]]></content>
			<author>
				<name><![CDATA[fearless]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=18817</uri>
			</author>
			<updated>2011-07-25T01:48:25Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44631#p44631</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44629#p44629"/>
			<content type="html"><![CDATA[<p>I can confirm I also have the mv61xxmm and mvxxmm pnp devices listed under hidden devices using Windows XP.</p>]]></content>
			<author>
				<name><![CDATA[Acheron]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=3589</uri>
			</author>
			<updated>2011-07-24T18:02:54Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44629#p44629</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44628#p44628"/>
			<content type="html"><![CDATA[<p>VirtualBox doesn&#039;t have a Marvell controller but I&#039;ll post the hardware log anyway. FYI, I manually removed the Marvell drivers from XP on VirtualBox without causing side effects.</p><p>I would be surprised if this only happened on VirtualBox. I was guessing that it would happen on any hardware. Surely somebody with eyeballs on this thread has XP w\ DriverPacks installed on other hardware. <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /> Can you check for the Marvell drivers? (Device Manager - View - Show hidden devices - expand Non-Plug and Play Drivers - drivers in question will be named mv61xxmm, mv64xxmm, mvxxmm, or Unknown)</p><p>I understand that the fault may be with a Marvell inf file, or elsewhere, as opposed to DriverPacks. Ultimately, I want to remove the Marvell drivers from every install where they aren&#039;t applicable but I won&#039;t do it manually. If DriverPacks can&#039;t fix it, I will make an automatic or semi-automatic script to do it. So far I&#039;ve tried &quot;sc delete&quot; with poor results. I&#039;ll look at mvnodrv.inf or other inf files for uninstall sections to run.<br /></p><div class="codebox"><pre><code>=========== 
PCI Devices 
=========== 
PCI\VEN_106B&amp;DEV_003F&amp;SUBSYS_00000000&amp;REV_00\3&amp;267A616A&amp;0&amp;30: Standard OpenHCD USB Host Controller
PCI\VEN_1AF4&amp;DEV_1000&amp;SUBSYS_00011AF4&amp;REV_00\3&amp;267A616A&amp;0&amp;18: Red Hat VirtIO Ethernet Adapter
PCI\VEN_8086&amp;DEV_1237&amp;SUBSYS_00000000&amp;REV_02\3&amp;267A616A&amp;0&amp;00: Intel 82441FX Pentium(R) Pro Processor to PCI bridge
PCI\VEN_8086&amp;DEV_2415&amp;SUBSYS_00008086&amp;REV_01\3&amp;267A616A&amp;0&amp;28: Intel(r) 82801AA AC&#039;97 Audio Controller
PCI\VEN_8086&amp;DEV_265C&amp;SUBSYS_00000000&amp;REV_00\3&amp;267A616A&amp;0&amp;58: Intel(R) 82801FB/FBM USB2 Enhanced Host Controller - 265C
PCI\VEN_8086&amp;DEV_2829&amp;SUBSYS_00000000&amp;REV_02\3&amp;267A616A&amp;0&amp;68: Intel(R) ICH8M-E/M SATA AHCI Controller
PCI\VEN_8086&amp;DEV_7000&amp;SUBSYS_00000000&amp;REV_00\3&amp;267A616A&amp;0&amp;08: Intel 82371SB PCI to ISA bridge
PCI\VEN_80EE&amp;DEV_BEEF&amp;SUBSYS_00000000&amp;REV_00\3&amp;267A616A&amp;0&amp;10: VirtualBox Graphics Adapter
PCI\VEN_80EE&amp;DEV_CAFE&amp;SUBSYS_00000000&amp;REV_00\3&amp;267A616A&amp;0&amp;20: VirtualBox Device
9 matching device(s) found.
 
=========== 
USB Devices 
=========== 
USB\ROOT_HUB\4&amp;24D6EB65&amp;0                                   : USB Root Hub
USB\ROOT_HUB20\4&amp;6A987E4&amp;0                                  : USB Root Hub
2 matching device(s) found.
 
============= 
Input Devices 
============= 
No matching devices found.
 
============ 
ACPI Devices 
============ 
ACPI\ACPI0003\0                                             : Microsoft AC Adapter
ACPI\FIXEDBUTTON\2&amp;DABA3FF&amp;0                                : ACPI Fixed Feature Button
ACPI\PNP0000\4&amp;1D401FB5&amp;0                                   : Programmable interrupt controller
ACPI\PNP0100\4&amp;1D401FB5&amp;0                                   : System timer
ACPI\PNP0200\4&amp;1D401FB5&amp;0                                   : Direct memory access controller
ACPI\PNP0303\4&amp;1D401FB5&amp;0                                   : Standard 101/102-Key or Microsoft Natural PS/2 Keyboard
ACPI\PNP0400\4&amp;1D401FB5&amp;0                                   : Printer Port (LPT1)
ACPI\PNP0700\4&amp;1D401FB5&amp;0                                   : Standard floppy disk controller
ACPI\PNP0A03\0                                              : PCI bus
ACPI\PNP0C0A\0                                              : Microsoft ACPI-Compliant Control Method Battery
ACPI\PNP0F03\4&amp;1D401FB5&amp;0                                   : Microsoft PS/2 Mouse
ACPI_HAL\PNP0C08\0                                          : Microsoft ACPI-Compliant System
ROOT\ACPI_HAL\0000                                          : Advanced Configuration and Power Interface (ACPI) PC
13 matching device(s) found.
 
============ 
 HDA Audio 
============ 
No matching devices found.
 
============ 
RAID Devices 
============ 
PCI\VEN_8086&amp;DEV_2829&amp;SUBSYS_00000000&amp;REV_02\3&amp;267A616A&amp;0&amp;68
    Name: Intel(R) ICH8M-E/M SATA AHCI Controller
    Hardware ID&#039;s:
        PCI\VEN_8086&amp;DEV_2829&amp;SUBSYS_00000000&amp;REV_02
        PCI\VEN_8086&amp;DEV_2829&amp;SUBSYS_00000000
        PCI\VEN_8086&amp;DEV_2829&amp;REV_02
        PCI\VEN_8086&amp;DEV_2829
        PCI\VEN_8086&amp;DEV_2829&amp;CC_010601
        PCI\VEN_8086&amp;DEV_2829&amp;CC_0106
    Compatible ID&#039;s:
        PCI\VEN_8086&amp;CC_010601
        PCI\VEN_8086&amp;CC_0106
        PCI\VEN_8086
        PCI\CC_010601
        PCI\CC_0106
1 matching device(s) found.</code></pre></div>]]></content>
			<author>
				<name><![CDATA[fearless]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=18817</uri>
			</author>
			<updated>2011-07-24T15:53:17Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44628#p44628</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44626#p44626"/>
			<content type="html"><![CDATA[<p>I see that also.&nbsp; Very strange.<br /><span class="postimg"><img src="http://i54.tinypic.com/16bcz86.jpg" alt="http://i54.tinypic.com/16bcz86.jpg" /></span><br />They don&#039;t actually do anything when the hardware isn&#039;t present.&nbsp; They&#039;re loaded because of the &quot;mvnodrv.inf&quot;.&nbsp; This installer file facilitates the &quot;hot-swap&quot; of drives as far as I know.<br />Can you please post your HWIDs?&nbsp; If you have a Marvell controller, those files are required.</p>]]></content>
			<author>
				<name><![CDATA[mr_smartepants]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=1602</uri>
			</author>
			<updated>2011-07-24T05:53:58Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44626#p44626</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[[BUG][Base1006][Mass1107] Superfluous Marvell drivers installed]]></title>
			<link rel="alternate" href="http://forum.driverpacks.net/viewtopic.php?pid=44624#p44624"/>
			<content type="html"><![CDATA[<p>I added mass storage drivers to an XP professional CD and tested it on VirtualBox 4.0.12. There were no errors. After the install, I was surprised to see some superfluous Marvell drivers (mv61xxmm, mv64xxmm, mvxxmm) installed and running. (Device Manager - View - Show hidden devices - expand Non-Plug and Play Drivers - drivers in question may be named &quot;Unknown&quot;)</p><p>Comments? Does this happen on every install?</p><div class="codebox"><pre><code>2011-07-22 19:54:51 : &lt;INIT&gt; DriverPacks BASE 10.06 initialized.
2011-07-22 19:54:51 : &lt;INIT&gt; Host environment: WIN_XP Service Pack 3 X86 on a X64 CPU.
2011-07-22 19:54:51 : &lt;INIT&gt; Created temporary working directory.
2011-07-22 19:54:51 : &lt;INIT&gt; Imported proxy settings from Internet Explorer.
2011-07-22 19:54:51 : &lt;INIT&gt; Start scanning for DriverPacks for the wnt5_x86-32 platform.
2011-07-22 19:54:51 : &lt;INIT&gt; 	Detected DriverPack Chipset 1107!
2011-07-22 19:54:51 : &lt;INIT&gt; 	Detected DriverPack LAN 1101!
2011-07-22 19:54:51 : &lt;INIT&gt; 	Detected DriverPack Mass Storage 1107!
2011-07-22 19:54:51 : &lt;INIT&gt; 	Detected DriverPack WLAN 1101!
2011-07-22 19:54:51 : &lt;INIT&gt; 	Detected 3rd Party DriverPack Misc 1!
2011-07-22 19:54:51 : &lt;INIT&gt; 	Detected 3rd Party DriverPack Modem 1101!
2011-07-22 19:54:51 : &lt;INIT&gt; 	Finished scanning.
2011-07-22 19:54:51 : &lt;INIT&gt; Detected settings file &quot;C:\_Mnt\Temps\BASE\DPs_BASE.ini&quot;.
2011-07-22 19:54:51 : &lt;INIT&gt; Windows XP Professional -  Retail SP3 detected.
2011-07-22 19:54:51 : &lt;INIT&gt; wnt5_x86-32_disc is the selected installation platform .
2011-07-22 19:54:51 : &lt;INIT&gt; Imported settings from settings file.
2011-07-22 19:54:51 : &lt;INIT&gt; [OptionalSettingsOther]\ATI_cpl not specified: default (None) was set.
2011-07-22 19:54:51 : &lt;INIT&gt; [OptionalSettingsOther]\Nvidia_cpl not specified: default (None) was set.
2011-07-22 19:54:51 : &lt;GUI&gt;  Initialized GUI.
2011-07-22 19:54:51 : &lt;GUI&gt;  Created a list of all available language files.
2011-07-22 19:54:52 : &lt;GUI&gt;  Set the last used language, English, as the GUI language.
2011-07-22 19:54:53 : &lt;GUI&gt;  Saved settings!
2011-07-22 19:54:53 : &lt;GUI&gt;  Closed GUI.
2011-07-22 19:54:53 : &lt;SEL&gt;  Selected module: mod_slip_wxp_x86-32_disc_m2.
2011-07-22 19:54:54 : &lt;PREP&gt; Removed all attributes from \I386.
2011-07-22 19:54:54 : &lt;PREP&gt; No previous DriverPacks installation found, Prep stage will be skipped
2011-07-22 19:55:00 : &lt;SLIP&gt; Extracted DriverPack MassStorage to a temporary working directory.
2011-07-22 19:55:00 : &lt;SLIP&gt; C:\_Mnt\Temps\BASE\tmp\DPMtmp\DriverPack_MassStorage_wnt5_x86-32.ini
2011-07-22 19:55:00 : &lt;SLIP&gt; Processing Mass Storage files now. This may take a minute.
2011-07-22 19:56:29 : &lt;SLIP&gt; Slipstreamed DriverPack MassStorage text mode driver files.
2011-07-22 19:56:29 : &lt;SLIP&gt; txtsetup.sif Backed-up Successfully
2011-07-22 19:56:29 : &lt;SLIP&gt; dosnet.inf Backed-up Successfully
2011-07-22 19:57:19 : &lt;SLIP&gt; Removed entries from \I386\txtsetup.sif that will be updated.
2011-07-22 19:57:33 : &lt;SLIP&gt; Removed entries from \I386\dosnet.inf that will be updated.
2011-07-22 20:03:28 : &lt;SLIP&gt; Updated \I386\dosnet.inf and \I386\txtsetup.sif to support DP MassStorage text mode drivers.
2011-07-22 20:03:28 : &lt;SLIP&gt; Created necessary directory structure for method 2.
2011-07-22 20:03:28 : &lt;SLIP&gt; Copying files necessary for method 2.
2011-07-22 20:03:29 : &lt;SLIP&gt; Extracted additional files necessary for method 2.
2011-07-22 20:03:29 : &lt;SLIP&gt; expanded setup.ex_ to setuporg.exe
2011-07-22 20:03:29 : &lt;SLIP&gt; SETUP.EX_ Backed-up Successfully
2011-07-22 20:03:30 : &lt;SLIP&gt; Compressed setup.exe to SETUP.EX_.
2011-07-22 20:03:30 : &lt;SLIP&gt; Method 2 setup.ex_ installed
2011-07-22 20:03:30 : &lt;SLIP&gt; Created \I386\presetup.cmd file.
2011-07-22 20:03:30 : &lt;SLIP&gt; Updated \I386\txtsetup.sif to support method 2.
2011-07-22 20:03:31 : &lt;SLIP&gt; Updated \I386\dosnet.inf to support method 2.
2011-07-22 20:03:31 : &lt;SLIP&gt; Copied DriverPack Chipset to \OEM.
2011-07-22 20:03:31 : &lt;SLIP&gt; Copied DriverPack LAN to \OEM.
2011-07-22 20:03:31 : &lt;SLIP&gt; Copied DriverPack Mass Storage to \OEM.
2011-07-22 20:03:32 : &lt;SLIP&gt; Copied DriverPack WLAN to \OEM.
2011-07-22 20:03:33 : &lt;SLIP&gt; Renamed DriverPack DP_Misc_wnt5_x86-32_1.7z to DP_Misc_.7z in \OEM.
2011-07-22 20:03:33 : &lt;SLIP&gt; Renamed DriverPack DP_Modem_wnt5_x86-32_1101.7z to DP_Modem.7z in \OEM.
2011-07-22 20:03:33 : &lt;SLIP&gt; Copied DriverPacks to \OEM.
2011-07-22 20:03:33 : &lt;SLIP&gt; Will not slipstream patches, Service Pack 3 was detected.
2011-07-22 20:03:33 : &lt;SLIP&gt; Will not slipstream KB888111 because no Sound DriverPack is being slipstreamed
2011-07-22 20:03:33 : &lt;SLIP&gt; Will not slipstream KB883667 because no Graphics DriverPack is being slipstreamed
2011-07-22 20:03:35 : &lt;SLIP&gt; Updated \I386\winnt.sif to support method 2.
2011-07-22 20:03:35 : &lt;SLIP&gt; Updated DPsFnshr.ini to disable KTD.
2011-07-22 20:03:35 : &lt;SLIP&gt; Updated \I386\winnt.sif&#039;s GUIRunOnce section.
2011-07-22 20:04:36 : &lt;SLIP&gt; DP_Install_Tool was copied successfully
2011-07-22 20:04:36 : &lt;SLIP&gt; Slipstream finished in 9 minutes and 42 seconds.
2011-07-22 20:04:38 : &lt;CLNP&gt; Temporary working directory successfully deleted.
- = DriverPacks BASE ini settings used = -
[General]
; preferred language
prefLang	= &quot;English&quot;
; yes/no, enable or disable the wizard-style buttons, if not specified: yes
wizardButtons	= &quot;yes&quot;
; yes/no, enable or disable the GUI, if not specified: yes
GUI		= &quot;yes&quot;


[Settings]
; disc/bartpe/multibootDisc
instPlatform	= &quot;disc&quot;
; trailing backslash is allowed, but not necessary
location	= &quot;C:\_Mnt\Temps\GRTMPVOL_EN_nl_dp&quot;
; none/all/select, if select, specify them below, if not specified: all
DriverPacks	= &quot;select&quot;
; 1/2, method to install the DriverPacks, if not specified: 2
DPsMethod	= &quot;2&quot;
; GUIRunOnce/RunOnceEx/custom, if not specified: GUIRunOnce
finisherMethod	= &quot;GUIRunOnce&quot;


; this section is optional!
[OptionalSettings]
; none/all/select/paths/patterns, enable or disable Keep The Drivers (KTD) , if not specified: none
KTD		= &quot;false&quot;
; &lt;path&gt;, to specify a custom KTD cache location, if not specified: default (%SystemRoot%\DriverPacks)
KTDlocation	= &quot;%SystemRoot%\DriverPacks&quot;
; yes/no, enable or disable QuickStream Cache (QSC), if not specified: yes
QSC		= &quot;no&quot;


; you should only add this section if you&#039;ve set [Settings]\DriverPacks to &quot;select&quot;
[SelectDriverPacks]
DP_Chipset	= &quot;yes&quot;
DP_LAN		= &quot;yes&quot;
DP_MassStorage	= &quot;yes&quot;
DP_WLAN		= &quot;yes&quot;
DPs_3rd_party	= &quot;yes&quot;
DP_MassStorage_textmode = &quot;yes&quot;
2011-07-22 20:04:39 : &lt;CLNP&gt; Create a DPs_Base.log backup @ C:\_Mnt\Temps\BASE\LogFiles\DPs_BASE_11-07-22_20-04.log
2011-07-22 20:04:39 : &lt;CLNP&gt; Program terminated.</code></pre></div>]]></content>
			<author>
				<name><![CDATA[fearless]]></name>
				<uri>http://forum.driverpacks.net/profile.php?id=18817</uri>
			</author>
			<updated>2011-07-23T20:36:51Z</updated>
			<id>http://forum.driverpacks.net/viewtopic.php?pid=44624#p44624</id>
		</entry>
</feed>
