<?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: How to batch change file extensions for Windows files</title>
	<atom:link href="http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 22:28:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Josh Heglund</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-40371</link>
		<dc:creator>Josh Heglund</dc:creator>
		<pubDate>Fri, 02 Jul 2010 05:47:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-40371</guid>
		<description>You can do it really easily in PowerShell! (Included in Windows 7 / Windows Vista). This will do it recursively for all directories below too, so use wisely.

To rename a &quot;.jpg&quot; to a &quot;.new&quot; you can do the following:

Get-ChildItem . -Recurse *.jpg &#124; Rename-Item -newname { $_.name -replace &#039;\.jpg&#039;,&#039;.new&#039; }

It&#039;s important to leave the &quot;\&quot; in there too (as an escape character...)</description>
		<content:encoded><![CDATA[<p>You can do it really easily in PowerShell! (Included in Windows 7 / Windows Vista). This will do it recursively for all directories below too, so use wisely.</p>
<p>To rename a &#8220;.jpg&#8221; to a &#8220;.new&#8221; you can do the following:</p>
<p>Get-ChildItem . -Recurse *.jpg | Rename-Item -newname { $_.name -replace &#8216;\.jpg&#8217;,&#8217;.new&#8217; }</p>
<p>It&#8217;s important to leave the &#8220;\&#8221; in there too (as an escape character&#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Designer</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-39970</link>
		<dc:creator>Designer</dc:creator>
		<pubDate>Sat, 26 Jun 2010 04:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-39970</guid>
		<description>Thanks! The action script I had made in Photoshop had exported all of my files to .jpg.jpg. Looking at the hundreds of photos with this extension, I was not very excited at the prospect of renaming everything. The instructions below took care of it! Thanks for posting these instructions - I wouldn&#039;t have thought of it, even though it&#039;s a simple concept. :)


There’s an easier way (in Vista):

Shift-right-click in the folder containing the files to be renamed.

Click on “Open Command Window Here.”

In the Command Window, type the DOS command for file renaming, as applicable: i.e.: ren *.jpgjpg *.jpg</description>
		<content:encoded><![CDATA[<p>Thanks! The action script I had made in Photoshop had exported all of my files to .jpg.jpg. Looking at the hundreds of photos with this extension, I was not very excited at the prospect of renaming everything. The instructions below took care of it! Thanks for posting these instructions &#8211; I wouldn&#8217;t have thought of it, even though it&#8217;s a simple concept. <img src='http://www.online-tech-tips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>There’s an easier way (in Vista):</p>
<p>Shift-right-click in the folder containing the files to be renamed.</p>
<p>Click on “Open Command Window Here.”</p>
<p>In the Command Window, type the DOS command for file renaming, as applicable: i.e.: ren *.jpgjpg *.jpg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-39610</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sat, 19 Jun 2010 13:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-39610</guid>
		<description>I haven&#039;t seen my problem here.  I have a bunch of machine embroidery designs that always download with as a &quot;TGZ&quot; file type and a &quot;tgz&quot; extension.  For example:  Christmasangels.zip.tgz&quot;  Embroidery software won&#039;t recognize them until I eliminate the &quot;tgz.&quot;  How would I batch rename to eliminate an extension as opposed to changing it?

Thanks.

Also, if anyone knows why &quot;tgz&quot; attaches itself to these files, I&#039;d love to know. The webmaster says it&#039;s my anti-virus/internet security program and Trend Micro says it&#039;s the website.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t seen my problem here.  I have a bunch of machine embroidery designs that always download with as a &#8220;TGZ&#8221; file type and a &#8220;tgz&#8221; extension.  For example:  Christmasangels.zip.tgz&#8221;  Embroidery software won&#8217;t recognize them until I eliminate the &#8220;tgz.&#8221;  How would I batch rename to eliminate an extension as opposed to changing it?</p>
<p>Thanks.</p>
<p>Also, if anyone knows why &#8220;tgz&#8221; attaches itself to these files, I&#8217;d love to know. The webmaster says it&#8217;s my anti-virus/internet security program and Trend Micro says it&#8217;s the website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xyz</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-39504</link>
		<dc:creator>xyz</dc:creator>
		<pubDate>Thu, 17 Jun 2010 12:17:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-39504</guid>
		<description>I have a lot of .BAK files on my computer. What are those and do I need them?</description>
		<content:encoded><![CDATA[<p>I have a lot of .BAK files on my computer. What are those and do I need them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken Rodgers</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-38827</link>
		<dc:creator>Ken Rodgers</dc:creator>
		<pubDate>Sat, 05 Jun 2010 18:42:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-38827</guid>
		<description>Probably already posted on here, but to change all file extensions in a windows directory.  Open a command prompt and change to the desired directory if not already there.

ren *.txt *.html

This would rename all files that end with .txt extension to .html</description>
		<content:encoded><![CDATA[<p>Probably already posted on here, but to change all file extensions in a windows directory.  Open a command prompt and change to the desired directory if not already there.</p>
<p>ren *.txt *.html</p>
<p>This would rename all files that end with .txt extension to .html</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tejas</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-37232</link>
		<dc:creator>tejas</dc:creator>
		<pubDate>Wed, 12 May 2010 11:31:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-37232</guid>
		<description>thanks for the Extension Renamer program! It is awesome!</description>
		<content:encoded><![CDATA[<p>thanks for the Extension Renamer program! It is awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parmjit Singh</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-35770</link>
		<dc:creator>Parmjit Singh</dc:creator>
		<pubDate>Sat, 17 Apr 2010 02:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-35770</guid>
		<description>This worked for me, thanks a lot! </description>
		<content:encoded><![CDATA[<p>This worked for me, thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omer</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-35574</link>
		<dc:creator>Omer</dc:creator>
		<pubDate>Tue, 13 Apr 2010 12:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-35574</guid>
		<description>Hi,
I have 100,000 files in a directory, all with .tif extension.   A % of these should have been .pdf files and are wrongly extended as *.tif at the time of scan.  Can anyone think of a way to identify which ones are real .tif files and which ones should be .pdf files without actually opening each one up?   If we can identify that systematically, we can use the good knowledge on this blog to rename the incorrect .tif files to .pdf.   Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have 100,000 files in a directory, all with .tif extension.   A % of these should have been .pdf files and are wrongly extended as *.tif at the time of scan.  Can anyone think of a way to identify which ones are real .tif files and which ones should be .pdf files without actually opening each one up?   If we can identify that systematically, we can use the good knowledge on this blog to rename the incorrect .tif files to .pdf.   Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rebeca</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-2/#comment-35130</link>
		<dc:creator>rebeca</dc:creator>
		<pubDate>Sun, 04 Apr 2010 17:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-35130</guid>
		<description>Thank you so much! This is a wonderful utility! Who knew there was such an easy way to change file extensions on so many files at once! ;)</description>
		<content:encoded><![CDATA[<p>Thank you so much! This is a wonderful utility! Who knew there was such an easy way to change file extensions on so many files at once! <img src='http://www.online-tech-tips.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-1/#comment-34259</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sat, 20 Mar 2010 23:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-34259</guid>
		<description>Extension Renamer sucks. Don&#039;t download it. It asks you to download an ancient version of the .NET framework(1.4!) in order to run. You gotta be kidding!</description>
		<content:encoded><![CDATA[<p>Extension Renamer sucks. Don&#8217;t download it. It asks you to download an ancient version of the .NET framework(1.4!) in order to run. You gotta be kidding!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fernando</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-1/#comment-34047</link>
		<dc:creator>Fernando</dc:creator>
		<pubDate>Thu, 18 Mar 2010 15:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-34047</guid>
		<description>I cannot open some pictures on my computer, can you help me? </description>
		<content:encoded><![CDATA[<p>I cannot open some pictures on my computer, can you help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michal</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-1/#comment-34028</link>
		<dc:creator>Michal</dc:creator>
		<pubDate>Thu, 18 Mar 2010 10:45:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-34028</guid>
		<description>Hi, If you are looking for some file extensions, take a peek at &lt;a href=&quot;http://www.file-extensions.org&quot; rel=&quot;nofollow&quot;&gt;file-extensions.org&lt;/a&gt;. It is huge file extensions database. Have a nice day:-)</description>
		<content:encoded><![CDATA[<p>Hi, If you are looking for some file extensions, take a peek at <a href="http://www.file-extensions.org" rel="nofollow">file-extensions.org</a>. It is huge file extensions database. Have a nice day:-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doris</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-1/#comment-33905</link>
		<dc:creator>Doris</dc:creator>
		<pubDate>Tue, 16 Mar 2010 23:11:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-33905</guid>
		<description>You can also use the rename DOS command to batch change file extensions, no need for any additional software. Only if you need to batch rename files do you need extra software.</description>
		<content:encoded><![CDATA[<p>You can also use the rename DOS command to batch change file extensions, no need for any additional software. Only if you need to batch rename files do you need extra software.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: harish</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-1/#comment-33658</link>
		<dc:creator>harish</dc:creator>
		<pubDate>Sat, 13 Mar 2010 08:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-33658</guid>
		<description>thxx a lot...........u solved my problem. 1,000+ file extensions changed in seconds!</description>
		<content:encoded><![CDATA[<p>thxx a lot&#8230;&#8230;&#8230;..u solved my problem. 1,000+ file extensions changed in seconds!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl</title>
		<link>http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/comment-page-1/#comment-32958</link>
		<dc:creator>Carl</dc:creator>
		<pubDate>Thu, 04 Mar 2010 18:55:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.online-tech-tips.com/computer-tips/how-to-change-file-extension/#comment-32958</guid>
		<description>Can someone tell me how to do this using DOS or PowerShell commands? I want to create a script and deploy it to many user PCs on my Windows Server 2008 network. 

We have a bunch of files on many computers that need to have their file extensions changed due to a mistake. Can someone help?</description>
		<content:encoded><![CDATA[<p>Can someone tell me how to do this using DOS or PowerShell commands? I want to create a script and deploy it to many user PCs on my Windows Server 2008 network. </p>
<p>We have a bunch of files on many computers that need to have their file extensions changed due to a mistake. Can someone help?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 2/21 queries in 0.010 seconds using disk
Object Caching 505/508 objects using disk

Served from: www.online-tech-tips.com @ 2012-02-13 08:00:49 -->
