<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Convert RAR, CAB, ISO, etc To ZIP</title>
	<atom:link href="http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/feed/" rel="self" type="application/rss+xml" />
	<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/</link>
	<description>A blog about web development, software business, and WordPress</description>
	<lastBuildDate>Wed, 08 Feb 2012 21:10:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jānis Elsts</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-195407</link>
		<dc:creator>Jānis Elsts</dc:creator>
		<pubDate>Mon, 12 Dec 2011 12:58:12 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-195407</guid>
		<description>Thanks, I added your modifications to the file.</description>
		<content:encoded><![CDATA[<p>Thanks, I added your modifications to the file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dieferman</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-194958</link>
		<dc:creator>dieferman</dc:creator>
		<pubDate>Wed, 07 Dec 2011 01:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-194958</guid>
		<description>THANKS !
.... But There&#039;s A Problem Detecting 7zip In A x64 Windows OS So Here Is The Necessary Mod

@echo off
echo Zip Converter (c) 2009 W-Shadow, http://w-shadow.com/
echo 2011 - Mod By DIEFER To Be Used On 64 Bit Windows OS
setlocal

rem ==============================================
rem 			Find the 7z executable
rem ==============================================
rem Check the most likely 7-Zip installation path
if exist &quot;C:\Program Files\7-Zip\7z.exe&quot; (set archiver=&quot;C:\Program Files\7-Zip\7z.exe&quot;) else (goto :detect64bit)
goto :startprocessing

:detect64bit
if exist &quot;C:\Program Files (x86)\7-Zip\7z.exe&quot; (set archiver=&quot;C:\Program Files (x86)\7-Zip\7z.exe&quot;) else (goto :detect7z)
goto :startprocessing

:detect7z
rem See if 7z is directly accessible
7z.exe &gt; nul
if %errorlevel% == 0 (set archiver=&quot;7z.exe&quot;) else (goto :no7zip)

:startprocessing
rem Is the input pattern set?
if &quot;%1&quot;==&quot;&quot; goto :nopattern
rem Is the output folder set? (optional - by default, the current directory is used)
if not &quot;%2&quot;==&quot;&quot; (set outdir=&quot;%~dp2&quot;) else (set outdir=&quot;.\&quot;)

rem ==============================================
rem 			Convert files
rem ==============================================
rem Loop over all files matching the input pattern
for %%f in (%1) do (
	echo.
	echo ======================================================
	echo Converting file %%~nxf...
	echo ======================================================
	rem Extract the archive to a temporary folder
	%archiver% x &quot;%%f&quot; -y -o&quot;%temp%\%%~nf.tmp&quot;
	rem Compress the folder&#039;s contents to zip
	%archiver% a &quot;%outdir%%%~nf.zip&quot; -mx7 &quot;%temp%\%%~nf.tmp\*&quot;
	rem Remove the temporary folder
	rd /s /q &quot;%temp%\%%~nf.tmp&quot;
)

goto :end

:nopattern
echo Convert most archives to the ZIP format using 7-Zip ( http://www.7-zip.org/ )
echo.
echo Syntax : %~n0 {input_pattern} [output_directory]
echo Examples : 
echo      %~n0 file.cab
echo      %~n0 *.rar
echo      %~n0 *.iso &quot;d:\temp\&quot;
goto :end

:no7zip
echo Error : 7-Zip not found!
echo Please install 7-Zip (www.7-zip.org) and add it&#039;s directory to the PATH environment variable.

:end
endlocal</description>
		<content:encoded><![CDATA[<p>THANKS !<br />
&#8230;. But There&#8217;s A Problem Detecting 7zip In A x64 Windows OS So Here Is The Necessary Mod</p>
<p>@echo off<br />
echo Zip Converter (c) 2009 W-Shadow, <a href="http://w-shadow.com/" rel="nofollow">http://w-shadow.com/</a><br />
echo 2011 &#8211; Mod By DIEFER To Be Used On 64 Bit Windows OS<br />
setlocal</p>
<p>rem ==============================================<br />
rem 			Find the 7z executable<br />
rem ==============================================<br />
rem Check the most likely 7-Zip installation path<br />
if exist &#8220;C:\Program Files\7-Zip\7z.exe&#8221; (set archiver=&#8221;C:\Program Files\7-Zip\7z.exe&#8221;) else (goto :detect64bit)<br />
goto :startprocessing</p>
<p>:detect64bit<br />
if exist &#8220;C:\Program Files (x86)\7-Zip\7z.exe&#8221; (set archiver=&#8221;C:\Program Files (x86)\7-Zip\7z.exe&#8221;) else (goto :detect7z)<br />
goto :startprocessing</p>
<p>:detect7z<br />
rem See if 7z is directly accessible<br />
7z.exe &gt; nul<br />
if %errorlevel% == 0 (set archiver=&#8221;7z.exe&#8221;) else (goto :no7zip)</p>
<p>:startprocessing<br />
rem Is the input pattern set?<br />
if &#8220;%1&#8243;==&#8221;" goto :nopattern<br />
rem Is the output folder set? (optional &#8211; by default, the current directory is used)<br />
if not &#8220;%2&#8243;==&#8221;" (set outdir=&#8221;%~dp2&#8243;) else (set outdir=&#8221;.\&#8221;)</p>
<p>rem ==============================================<br />
rem 			Convert files<br />
rem ==============================================<br />
rem Loop over all files matching the input pattern<br />
for %%f in (%1) do (<br />
	echo.<br />
	echo ======================================================<br />
	echo Converting file %%~nxf&#8230;<br />
	echo ======================================================<br />
	rem Extract the archive to a temporary folder<br />
	%archiver% x &#8220;%%f&#8221; -y -o&#8221;%temp%\%%~nf.tmp&#8221;<br />
	rem Compress the folder&#8217;s contents to zip<br />
	%archiver% a &#8220;%outdir%%%~nf.zip&#8221; -mx7 &#8220;%temp%\%%~nf.tmp\*&#8221;<br />
	rem Remove the temporary folder<br />
	rd /s /q &#8220;%temp%\%%~nf.tmp&#8221;<br />
)</p>
<p>goto :end</p>
<p>:nopattern<br />
echo Convert most archives to the ZIP format using 7-Zip ( <a href="http://www.7-zip.org/" rel="nofollow">http://www.7-zip.org/</a> )<br />
echo.<br />
echo Syntax : %~n0 {input_pattern} [output_directory]<br />
echo Examples :<br />
echo      %~n0 file.cab<br />
echo      %~n0 *.rar<br />
echo      %~n0 *.iso &#8220;d:\temp\&#8221;<br />
goto :end</p>
<p>:no7zip<br />
echo Error : 7-Zip not found!<br />
echo Please install 7-Zip (www.7-zip.org) and add it&#8217;s directory to the PATH environment variable.</p>
<p>:end<br />
endlocal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NeoDement</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-168655</link>
		<dc:creator>NeoDement</dc:creator>
		<pubDate>Sun, 10 Apr 2011 20:28:05 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-168655</guid>
		<description>yo thanks

you&#039;re my hero</description>
		<content:encoded><![CDATA[<p>yo thanks</p>
<p>you&#8217;re my hero</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flamea</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-79943</link>
		<dc:creator>flamea</dc:creator>
		<pubDate>Sun, 22 Aug 2010 13:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-79943</guid>
		<description>this script helped me so much :)
thanks a lot :D</description>
		<content:encoded><![CDATA[<p>this script helped me so much :)<br />
thanks a lot :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sophia</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-30754</link>
		<dc:creator>sophia</dc:creator>
		<pubDate>Mon, 06 Jul 2009 16:16:57 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-30754</guid>
		<description>thanks for the converter...it helped a lot...:)</description>
		<content:encoded><![CDATA[<p>thanks for the converter&#8230;it helped a lot&#8230;:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ALMOST610</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-29120</link>
		<dc:creator>ALMOST610</dc:creator>
		<pubDate>Fri, 17 Apr 2009 01:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-29120</guid>
		<description>I dont know why people are complaining about the RAR format its great the only thing i want to do is find a quick way to convert it to ZIP for my friends who download files and dont have an RAR extractor i told them to download one but they wont so i convert them to ZIP and transfer it to them!!!!!</description>
		<content:encoded><![CDATA[<p>I dont know why people are complaining about the RAR format its great the only thing i want to do is find a quick way to convert it to ZIP for my friends who download files and dont have an RAR extractor i told them to download one but they wont so i convert them to ZIP and transfer it to them!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: White Shadow</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-19753</link>
		<dc:creator>White Shadow</dc:creator>
		<pubDate>Sun, 08 Mar 2009 00:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-19753</guid>
		<description>You don&#039;t really need to &quot;convert&quot; it - a .rar file is an archive like .zip. So you need to extract the file. See this page for details : &lt;a href=&quot;http://w-shadow.com/blog/2007/08/26/free-rar-extractor-list/&quot; rel=&quot;nofollow&quot;&gt;free rar extractors&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>You don&#8217;t really need to &#8220;convert&#8221; it &#8211; a .rar file is an archive like .zip. So you need to extract the file. See this page for details : <a href="http://w-shadow.com/blog/2007/08/26/free-rar-extractor-list/" rel="nofollow">free rar extractors</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandy</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-19752</link>
		<dc:creator>sandy</dc:creator>
		<pubDate>Sun, 08 Mar 2009 00:04:19 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-19752</guid>
		<description>how to convert rar file 2 vedio file</description>
		<content:encoded><![CDATA[<p>how to convert rar file 2 vedio file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: White Shadow</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-19658</link>
		<dc:creator>White Shadow</dc:creator>
		<pubDate>Sat, 07 Mar 2009 10:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-19658</guid>
		<description>Okay, it depends on how tech-savvy you are :) I think the average user would find it rather obscure (and I have search stats - people looking for ways to open .rar files - to back it up).</description>
		<content:encoded><![CDATA[<p>Okay, it depends on how tech-savvy you are :) I think the average user would find it rather obscure (and I have search stats &#8211; people looking for ways to open .rar files &#8211; to back it up).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bobby</title>
		<link>http://w-shadow.com/blog/2009/01/29/convert-rar-cab-iso-etc-to-zip/comment-page-1/#comment-19544</link>
		<dc:creator>bobby</dc:creator>
		<pubDate>Fri, 06 Mar 2009 15:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://w-shadow.com/?p=843#comment-19544</guid>
		<description>RAR is an OBSCURE archive format?</description>
		<content:encoded><![CDATA[<p>RAR is an OBSCURE archive format?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

