<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[DriverPacks.net Forum - DriverPack Solution discussion]]></title>
		<link>http://forum.driverpacks.net/viewtopic.php?id=4339</link>
		<description><![CDATA[The most recent posts in DriverPack Solution discussion.]]></description>
		<lastBuildDate>Tue, 15 Sep 2015 09:35:59 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=58778#p58778</link>
			<description><![CDATA[<p>It needs Internet access though.</p><p>So if windows doesn&#039;t find your Ethernet card, you can&#039;t install it with dumo.</p><p>Also, if I remember correctly I think that it doesn&#039;t automatically download the correct driver but you have to search it on the Internet...</p>]]></description>
			<author><![CDATA[null@example.com (infowiz)]]></author>
			<pubDate>Tue, 15 Sep 2015 09:35:59 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=58778#p58778</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=57705#p57705</link>
			<description><![CDATA[<p>Hey everyone, I am just wondering if there are any ways of changing the default language of the programs from Driver Pack Solution because I really have a hard time in using those programs that are currently in Russian. Please help. Thanks <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (megaton88)]]></author>
			<pubDate>Sat, 14 Jun 2014 22:18:54 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=57705#p57705</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=39707#p39707</link>
			<description><![CDATA[<p>yeh thank you...</p>]]></description>
			<author><![CDATA[null@example.com (kambing)]]></author>
			<pubDate>Wed, 04 Aug 2010 09:45:14 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=39707#p39707</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=39665#p39665</link>
			<description><![CDATA[<p>ask here - <a href="http://forum.drp.su/forumdisplay.php?f=18">http://forum.drp.su/forumdisplay.php?f=18</a></p>]]></description>
			<author><![CDATA[null@example.com (Romeo91)]]></author>
			<pubDate>Tue, 03 Aug 2010 09:48:24 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=39665#p39665</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=39654#p39654</link>
			<description><![CDATA[<p>any one plz help me</p>]]></description>
			<author><![CDATA[null@example.com (kambing)]]></author>
			<pubDate>Tue, 03 Aug 2010 03:43:00 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=39654#p39654</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=38981#p38981</link>
			<description><![CDATA[<p>hi im using DriverPack Solution&nbsp; and try to install driver from network-share but fail...</p><p>any ideas</p><p>here my autoit script were i get from here <a href="http://www.msfn.org/board/tip-running-wpi-network-share-t76693-page-20.html&amp;hl=network+wpi">http://www.msfn.org/board/tip-running-w … etwork+wpi</a> ideas from win post installation..</p><div class="codebox"><pre><code>;This script can run either one folder up from WPI.hta directly from the share itself or from another location if you specify the share.
;The directory structure must be like this: SomePath\SomeFolder\WPI\ where WPI.hta is in the WPI folder and this script is either in SomeFolder OR
;a share is specified with SomeFolder shared (as in, the share path would look like \\server\share\WPI with WPI.hta in the WPI folder)

AutoItSetOption(&quot;TrayIconHide&quot;,0)

;Change these values to suit your needs. You can also get rid of the If/ElseIf statements in the CallWPI function if you just use one config.
Global $CONFIG1=&quot;CONFIG.JS&quot;
Global $CONFIG2=&quot;CONFIG.JS&quot;
Global $USERNAME=&quot;&quot;
Global $PASSWORD=&quot;&quot;
Global $SHARE=&quot;\\10.0.0.200\DriverPack&quot;

;Global variables needed for the rest of the program... DON&#039;T CHANGE THESE VALUES.
Global $IEDebWritten=false
Global $DebWritten=false
Global $DRIVE=&quot;&quot;

EnvSet(&quot;SEE_MASK_NOZONECHECKS&quot;,1)

SetDrive()
SetDebugger()
CallWPI()
ResetDebugger()
UnmapDrive()

EnvSet(&quot;SEE_MASK_NOZONECHECKS&quot;)

Exit

Func SetDrive()
    $trimmedpath=StringTrimRight(@ScriptDir,StringLen(@ScriptDir)-2)

    If StringLen($SHARE)=0 Then
        If $trimmedpath=&quot;\\&quot; and $USERNAME=&quot;&quot; Then
            $DRIVE=DriveMapAdd(&quot;*&quot;,@ScriptDir,8)
        ElseIf $trimmedpath=&quot;\\&quot; and StringLen($USERNAME)&gt;0 Then
            $DRIVE=DriveMapAdd(&quot;*&quot;,@ScriptDir,8,$USERNAME,$PASSWORD)
        ElseIf FileExists($trimmedpath &amp; &quot;\autorun.hta&quot;) Then
            $DRIVE=$trimmedpath
        Else
            $DRIVE=@ScriptDir
			
        EndIf
    ElseIf StringLen($SHARE)&gt;0 and $USERNAME=&quot;&quot; Then
        $DRIVE=DriveMapAdd(&quot;*&quot;,$SHARE,8)
    ElseIf StringLen($SHARE)&gt;0 and StringLen($USERNAME)&gt;0 Then
        $DRIVE=DriveMapAdd(&quot;*&quot;,$SHARE,8,$USERNAME,$PASSWORD)
    EndIf
EndFunc

Func SetDebugger()
    $IEDebValue=RegRead(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;DisableScriptDebuggerIE&quot;)
    
    If $IEDebValue=&quot;yes&quot; Then
        RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;DisableScriptDebuggerIE&quot;, &quot;REG_SZ&quot;, &quot;no&quot;)
        $IEDebWritten=true
    ElseIf @error Then
        RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;DisableScriptDebuggerIE&quot;, &quot;REG_SZ&quot;, &quot;no&quot;)
    EndIf

    $DebValue=RegRead(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;Disable Script Debugger&quot;)

    If $DebValue=&quot;yes&quot; Then
        RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;Disable Script Debugger&quot;, &quot;REG_SZ&quot;, &quot;no&quot;)
        $DebWritten=true
    ElseIf @error Then
        RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;Disable Script Debugger&quot;, &quot;REG_SZ&quot;, &quot;no&quot;)        
    EndIf
EndFunc

Func CallWPI()
    If @OSVersion&lt;&gt;&quot;WIN_Vista&quot; Then

		RunWait($DRIVE &amp; &quot;\tools\mshta.exe &quot; &amp; &#039;&quot;&#039; &amp; $DRIVE &amp; &quot;\autorun.hta &quot; &amp; &#039;&quot;&#039; &amp; &quot; config=&quot; &amp; &#039;&quot;&#039; &amp; $DRIVE &amp; &quot;\tools\&quot; &amp; $CONFIG1 &amp; &#039;&quot;&#039;,&quot;&quot;)
	
    ElseIf @OSVersion=&quot;WIN_Vista&quot; Then
        ; This script requires full Administrative rights
#requireadmin
		RunWait($DRIVE &amp; &quot;\tools\mshta.exe &quot; &amp; &#039;&quot;&#039; &amp; $DRIVE &amp; &quot;\autorun.hta &quot; &amp; &#039;&quot;&#039; &amp; &quot; config=&quot; &amp; &#039;&quot;&#039; &amp; $DRIVE &amp; &quot;\tools\&quot; &amp; $CONFIG2 &amp; &#039;&quot;&#039;,&quot;&quot;)
		
    EndIf
EndFunc

Func ResetDebugger()
    If $IEDebWritten=true Then
        RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;DisableScriptDebuggerIE&quot;, &quot;REG_SZ&quot;, &quot;yes&quot;)
    EndIf
    
    If $DebWritten=true Then
        RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;Disable Script Debugger&quot;, &quot;REG_SZ&quot;, &quot;yes&quot;)
    EndIf
EndFunc

Func UnmapDrive()
    If DriveMapGet($DRIVE)=@ScriptDir or DriveMapGet($DRIVE)=$SHARE Then
        DriveMapDel($DRIVE)
    EndIf
EndFunc</code></pre></div><p>here my log<br /> </p><div class="quotebox"><blockquote><p>DriverPack Solution 10.0 Beta (2010/04/04, R145Q Beta)<br />Version: Microsoft Windows XP Professional SP3 <br />Architecture: 32-bit<br />CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4000+<br />GPU: VirtualBox Graphics Adapter<br />RAM: 191 MB<br />The JScript version is 5.7 Build 18066<br />Today: Sun Jun 20 23:11:15 UTC+0800 2010<br />env_windir=C:\WINDOWS<br />env_SystemRoot=C:\WINDOWS<br />env_SystemDrive=C:<br />env_temp=C:\DOCUME~1\usern\LOCALS~1\Temp<br />Locale: 409</p><br /><p>Timer_clearcounters 10<br />Timer_Loaded_hardware 190</p><br /><p>MICROSOFT WINDOWS XP [VERSION 5.1.2600]</p><p>Found devices: 0<br />Timer_hardware_update 7070</p><p>DRP: drp<br />0 bytes actually read from dev_db\Cardreaders_x64_911_drp.txt<br />0 bytes actually read from dev_db\DP_AMD_CPU_wnt5_x86-32_912_drp.txt<br />0 bytes actually read from dev_db\DP_Audio_wnt6-x64_1004_drp.txt<br />0 bytes actually read from dev_db\DP_Audio_wnt6-x86_1004_drp.txt<br />0 bytes actually read from dev_db\DP_CableModem_wnt6-x86_1001_drp.txt<br />0 bytes actually read from dev_db\DP_CardReaders_wnt6-x86_1001_drp.txt<br />0 bytes actually read from dev_db\DP_Chipset_wnt5_x86-32_10052_drp.txt<br />0 bytes actually read from dev_db\DP_Chipset_wnt6-x64_1003_drp.txt<br />0 bytes actually read from dev_db\DP_Chipset_wnt6-x86_1003_drp.txt<br />0 bytes actually read from dev_db\DP_CPU_wnt5_x86-32_1005_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_A_wnt5_x86-32_1005_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_A_wnt6-x64_1004_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_A_wnt6-x86_1004_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_B_wnt5_x86-32_1005_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_B_wnt6-x64_10041_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_B_wnt6-x86_10041_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_C_wnt5_x86-32_1005_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_Mobile_wnt6-x64_1004_drp.txt<br />0 bytes actually read from dev_db\DP_Graphics_Mobile_wnt6-x86_1004_drp.txt<br />0 bytes actually read from dev_db\DP_LAN_wnt5_x86-32_10051_drp.txt<br />0 bytes actually read from dev_db\DP_LAN_wnt6-x64_1003_drp.txt<br />0 bytes actually read from dev_db\DP_LAN_wnt6-x86_1003_drp.txt<br />0 bytes actually read from dev_db\DP_MassStorage_wnt5_x86-32_901_drp.txt<br />0 bytes actually read from dev_db\DP_MassStorage_wnt6-x64_1003_drp.txt<br />0 bytes actually read from dev_db\DP_MassStorage_wnt6-x86_1003_drp.txt<br />0 bytes actually read from dev_db\DP_Modem_wnt6-x86_1001_drp.txt<br />0 bytes actually read from dev_db\DP_Monitors_wnt6-x86_1001_drp.txt<br />0 bytes actually read from dev_db\DP_Runtimes_wnt5_x86-32_1005_drp.txt<br />0 bytes actually read from dev_db\DP_Sound_A_wnt5_x86-32_1003_drp.txt<br />0 bytes actually read from dev_db\DP_Sound_B_wnt5_x86-32_1003_drp.txt<br />0 bytes actually read from dev_db\DP_Touchpad_Mouse_wnt6-x64_1003_drp.txt<br />0 bytes actually read from dev_db\DP_Touchpad_Mouse_wnt6-x86_1003_drp.txt<br />0 bytes actually read from dev_db\DP_TVcard_wnt6-x86_1001_drp.txt<br />0 bytes actually read from dev_db\DP_Webcam_wnt6-x86_1001_drp.txt<br />0 bytes actually read from dev_db\DP_WLAN_wnt5_x86-32_10051_drp.txt<br />0 bytes actually read from dev_db\DP_WLAN_wnt6-x64_1004_drp.txt<br />0 bytes actually read from dev_db\DP_WLAN_wnt6-x86_1004_drp.txt<br />0 bytes actually read from dev_db\Misc_x64_911_drp.txt<br />0 bytes actually read from dev_db\Monitors_x64_911_drp.txt<br />0 bytes actually read in total<br />Timer_Index_complite 10475</p><br /><p>Timer_drivers_scaned 0</p><p>Groups<br />&nbsp; driver_available: 0<br />&nbsp; no_driver: 0<br />&nbsp; driver_new: 0<br />&nbsp; driver_uptodate: 0<br />&nbsp; driver_old: 0<br />&nbsp; driver_unknown: 0<br />&nbsp; driverpacks: 39</p><p>Timer_ready 381</p><p>Deleting temp files...<br />Done 90<br />Shutting down...</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (kambing)]]></author>
			<pubDate>Sun, 20 Jun 2010 15:44:46 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=38981#p38981</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=37727#p37727</link>
			<description><![CDATA[<p>Now ok<br />Thank you! <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (ArtX)]]></author>
			<pubDate>Wed, 14 Apr 2010 13:05:31 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=37727#p37727</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=37726#p37726</link>
			<description><![CDATA[<p>LOL you looked before I actually added you <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /> Look again <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Wed, 14 Apr 2010 13:04:09 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=37726#p37726</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=37724#p37724</link>
			<description><![CDATA[<p>And what a forum should I see? <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /><br />Something does not see ...</p>]]></description>
			<author><![CDATA[null@example.com (ArtX)]]></author>
			<pubDate>Wed, 14 Apr 2010 12:21:28 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=37724#p37724</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=37718#p37718</link>
			<description><![CDATA[<p>access granted... new forum is now visable to you</p><p>Welcome to the team!</p><p>Jeff</p><p>PS please remember nightly packs are not for production / release - testing only please <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p><p>I hope DriverPacks solution does likewise for you <img src="http://forum.driverpacks.net/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Wed, 14 Apr 2010 11:54:01 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=37718#p37718</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=37716#p37716</link>
			<description><![CDATA[<p>I have the opportunity to help with testing driverpacks. Just do not know who exactly this issue deals?</p>]]></description>
			<author><![CDATA[null@example.com (ArtX)]]></author>
			<pubDate>Wed, 14 Apr 2010 06:24:28 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=37716#p37716</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=37579#p37579</link>
			<description><![CDATA[<p>Actually myself and a German member from msfn.org started DF before WarmSnow. And even then Madboy from MSFN.org developed his first before us, Pro-S Hardware.</p><p>I would however, like to see a tool that is modular and works well in all languages and open-source.</p>]]></description>
			<author><![CDATA[null@example.com (stamandster)]]></author>
			<pubDate>Mon, 05 Apr 2010 17:42:32 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=37579#p37579</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=37507#p37507</link>
			<description><![CDATA[<p>I am so pleased! Good teamwork guys! </p><p>Thanks to each of you for your good will and mutual cooperation.</p><p>IDK if you are aware that there is another major player in this game...<br />WarmSnow started his project that is similar in &quot;fit, form and feel&quot; to each of the above mentioned projects in 2007...<br /><a href="http://forum.driverpacks.net/viewtopic.php?id=2403">http://forum.driverpacks.net/viewtopic.php?id=2403</a></p><p>Have not seen him recently but it seems like he was the first one to develop this type of an app <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" />.<br />He was certainly the first one to share his app on our site <img src="http://forum.driverpacks.net/img/smilies/tongue.png" width="15" height="15" alt="tongue" />.</p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Thu, 01 Apr 2010 08:43:21 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=37507#p37507</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=36760#p36760</link>
			<description><![CDATA[<p><strong>Hello everyone!</strong><br />It is unfortunate that on this subject, I learned just now from completely strangers (although BadPointer could tell me) ...</p><p>Back in 2008 I tried to go with you to us:<br /><a href="http://forum.driverpacks.net/viewtopic.php?id=2860">http://forum.driverpacks.net/viewtopic.php?id=2860</a><br />Then it did not work, because program developing.</p><div class="quotebox"><cite> OverFlow wrote:</cite><blockquote><p>Thanks to DriverPacks.net for the DriverPacks! or This project is supported by DriverPack.net</p></blockquote></div><p>I am very sorry that the pages of a new version of the site drp.su no reference to driverpacks.net. I apologize for this omission and necessarily Fixed!<br />The old page program to this day there is an indication of your resource:<br /><a href="http://03compu.ru/driverpack">http://03compu.ru/driverpack</a></p><div class="quotebox"><cite> OverFlow wrote:</cite><blockquote><p>Please do! There is no doubt that it is better for everyone to pool our efforts than to work independently.</p></blockquote></div><p>I also always enjoyed the cooperation! Let&#039;s try to unite our efforts!<br />Now I have some ideas on our mutual cooperation ... But I need time to prepare a proposal! </p><div class="quotebox"><cite> Romeo91 wrote:</cite><blockquote><p>There is no conflict with ArtX was not.</p></blockquote></div><p>Romeo91, in your respect, I feel only respect! At one time you participated in the development of the program DriverPack Solution, I&#039;ll very grateful. </p><div class="quotebox"><cite> Romeo91 wrote:</cite><blockquote><p>While ArtX not very actively developed its own project, I helped as I could, but not as a member of his project, but simply as a user forum.</p></blockquote></div><p>I did what I could ... If I had known then about the system SVN ... ... ... ... then we would be able to continue to develop together. </p><div class="quotebox"><cite> jinkazama wrote:</cite><blockquote><p>I&#039;ve realized an userbar you can find in my signature for Driverpack solution users</p></blockquote></div><p>Thank you! <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (ArtX)]]></author>
			<pubDate>Tue, 16 Feb 2010 17:11:10 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=36760#p36760</guid>
		</item>
		<item>
			<title><![CDATA[Re: DriverPack Solution discussion]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=36677#p36677</link>
			<description><![CDATA[<p>Ooooooy, We&#039;ve Got A Lot Of Work, Be A Team, No Need To Argue, I&#039;m Testing All Of Ur Software N It&#039;s Great, But I&#039;m Still Stuck In The End,&nbsp; :d So Come On, Get Back To Work, Fix Some Bugs, Help People There, Peace!!!</p>]]></description>
			<author><![CDATA[null@example.com (ar_seven_am)]]></author>
			<pubDate>Thu, 11 Feb 2010 16:59:00 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=36677#p36677</guid>
		</item>
	</channel>
</rss>
