<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[DriverPacks.net Forum - Script to rename your previous driverpacks!]]></title>
		<link>http://forum.driverpacks.net/viewtopic.php?id=26</link>
		<description><![CDATA[The most recent posts in Script to rename your previous driverpacks!.]]></description>
		<lastBuildDate>Sun, 28 May 2006 08:03:42 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Script to rename your previous driverpacks!]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=118#p118</link>
			<description><![CDATA[<p>Thanks.</p><p>I guess I should have made this script when putting everything online... Sorry guys!</p>]]></description>
			<author><![CDATA[null@example.com (Wim Leers)]]></author>
			<pubDate>Sun, 28 May 2006 08:03:42 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=118#p118</guid>
		</item>
		<item>
			<title><![CDATA[Re: Script to rename your previous driverpacks!]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=110#p110</link>
			<description><![CDATA[<p>I think you should remove the Chipset line because the old Chipset DriverPack isn&#039;t compatible with v6.05.</p><p>Edit: Don&#039;t mean to rain on your parade, but the file should look like this:</p><div class="codebox"><pre><code>@ECHO OFF
REM RUN THIS UTILITY FROM DIRECTORY CONTAINING THE FOLLOWING DRIVER PACKS!

IF EXIST &quot;DriverPack_CPU_V603.7z&quot; REN &quot;DriverPack_CPU_V603.7z&quot; &quot;DP_CPU_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_Graphics_A_V603.7z&quot; REN &quot;DriverPack_Graphics_A_V603.7z&quot; &quot;DP_Graphics_A_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_Graphics_B_V603.7z&quot; REN &quot;DriverPack_Graphics_B_V603.7z&quot; &quot;DP_Graphics_B_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_Graphics_C_V603.7z&quot; REN &quot;DriverPack_Graphics_C_V603.7z&quot; &quot;DP_Graphics_C_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_LAN_V6032.7z&quot; REN &quot;DriverPack_LAN_V6032.7z&quot; &quot;DP_LAN_wnt5_x86-32_6032.7z&quot;
IF EXIST &quot;DriverPack_MassStorage_V6031.7z&quot; REN &quot;DriverPack_MassStorage_V6031.7z&quot; &quot;DP_MassStorage_wnt5_x86-32_6031.7z&quot;
IF EXIST &quot;DriverPack_Sound_A_V603.7z&quot; REN &quot;DriverPack_Sound_A_V603.7z&quot; &quot;DP_Sound_A_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_Sound_B_V603.7z&quot; REN &quot;DriverPack_Sound_B_V603.7z&quot; &quot;DP_Sound_B_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_WLAN_V603.7z&quot; REN &quot;DriverPack_WLAN_V603.7z&quot; &quot;DP_WLAN_wnt5_x86-32_603.7z&quot;

EXIT</code></pre></div><p>Removed Chipset line and fixed CPU line.</p>]]></description>
			<author><![CDATA[null@example.com (Denney)]]></author>
			<pubDate>Sun, 28 May 2006 02:06:22 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=110#p110</guid>
		</item>
		<item>
			<title><![CDATA[Script to rename your previous driverpacks!]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=109#p109</link>
			<description><![CDATA[<p>Just cut and paste to a text file and save as WHATEVER.CMD. Run from directory with old DriverPacks.</p><div class="codebox"><pre><code>@ECHO OFF
REM RUN THIS UTILITY FROM DIRECTORY CONTAINING THE FOLLOWING DRIVER PACKS!

IF EXIST &quot;DriverPack_CPU_V603.7z&quot; REN &quot;DriverPack_CPU_V603.7z&quot; &quot;DP_CPU_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_Graphics_A_V603.7z&quot; REN &quot;DriverPack_Graphics_A_V603.7z&quot; &quot;DP_Graphics_A_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_Graphics_B_V603.7z&quot; REN &quot;DriverPack_Graphics_B_V603.7z&quot; &quot;DP_Graphics_B_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_Graphics_C_V603.7z&quot; REN &quot;DriverPack_Graphics_C_V603.7z&quot; &quot;DP_Graphics_C_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_LAN_V6032.7z&quot; REN &quot;DriverPack_LAN_V6032.7z&quot; &quot;DP_LAN_wnt5_x86-32_6032.7z&quot;
IF EXIST &quot;DriverPack_MassStorage_V6031.7z&quot; REN &quot;DriverPack_MassStorage_V6031.7z&quot; &quot;DP_MassStorage_wnt5_x86-32_6031.7z&quot;
IF EXIST &quot;DriverPack_Sound_A_V603.7z&quot; REN &quot;DriverPack_Sound_A_V603.7z&quot; &quot;DP_Sound_A_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_Sound_B_V603.7z&quot; REN &quot;DriverPack_Sound_B_V603.7z&quot; &quot;DP_Sound_B_wnt5_x86-32_603.7z&quot;
IF EXIST &quot;DriverPack_WLAN_V603.7z&quot; REN &quot;DriverPack_WLAN_V603.7z&quot; &quot;DP_WLAN_wnt5_x86-32_603.7z&quot;

EXIT</code></pre></div><p>Thnx Denney for pointing out my shortcomings......&nbsp; &nbsp; <img src="http://forum.driverpacks.net/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></description>
			<author><![CDATA[null@example.com (razormoon)]]></author>
			<pubDate>Sun, 28 May 2006 01:47:39 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=109#p109</guid>
		</item>
	</channel>
</rss>
