
<?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: Rename, Zip, Move all in VBScript</title>
	<atom:link href="http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/</link>
	<description>It&#039;s not about you</description>
	<lastBuildDate>Wed, 25 Aug 2010 08:42:49 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joby</title>
		<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/comment-page-1/#comment-111504</link>
		<dc:creator>Joby</dc:creator>
		<pubDate>Mon, 18 May 2009 21:02:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/#comment-111504</guid>
		<description>Moving Files


Moving a Set of Files
Demonstration script that uses the FileSystemObject to move all the .txt files in a folder to a new location. Script must be run on the local computer.

Set objFSO = CreateObject(&quot;Scripting.FileSystemObject&quot;)
objFSO.MoveFile &quot;C:\FSO\*.txt&quot; , &quot;D:\Archive\&quot;</description>
		<content:encoded><![CDATA[<p>Moving Files</p>
<p>Moving a Set of Files<br />
Demonstration script that uses the FileSystemObject to move all the .txt files in a folder to a new location. Script must be run on the local computer.</p>
<p>Set objFSO = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)<br />
objFSO.MoveFile &#8220;C:\FSO\*.txt&#8221; , &#8220;D:\Archive\&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joby</title>
		<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/comment-page-1/#comment-111503</link>
		<dc:creator>Joby</dc:creator>
		<pubDate>Mon, 18 May 2009 20:04:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/#comment-111503</guid>
		<description>Thanks Jay, I was able to use this code. It came up on google as I searched for script to move files.</description>
		<content:encoded><![CDATA[<p>Thanks Jay, I was able to use this code. It came up on google as I searched for script to move files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/comment-page-1/#comment-960</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Mon, 12 Feb 2007 06:07:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/#comment-960</guid>
		<description>Rick ,

can you post what you have done in yours?  I&#039;m also looking for a 
simillar work but couldent get it working.

Pra</description>
		<content:encoded><![CDATA[<p>Rick ,</p>
<p>can you post what you have done in yours?  I&#8217;m also looking for a<br />
simillar work but couldent get it working.</p>
<p>Pra</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Spurlin</title>
		<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/comment-page-1/#comment-211</link>
		<dc:creator>Rick Spurlin</dc:creator>
		<pubDate>Sun, 27 Aug 2006 23:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/#comment-211</guid>
		<description>Jay, 

Thanks for posting this!  I had been working at trying to get some similar code to do a variation of this job but for whatever reason, it kept bombing.  Using what you had here, I was able to adapt mine and get it working.

Thanks again for your post!

Rick</description>
		<content:encoded><![CDATA[<p>Jay, </p>
<p>Thanks for posting this!  I had been working at trying to get some similar code to do a variation of this job but for whatever reason, it kept bombing.  Using what you had here, I was able to adapt mine and get it working.</p>
<p>Thanks again for your post!</p>
<p>Rick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jay</title>
		<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/comment-page-1/#comment-9</link>
		<dc:creator>jay</dc:creator>
		<pubDate>Mon, 10 Apr 2006 11:08:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/#comment-9</guid>
		<description>Hi

Have had a look at this (finally).  The key is to include the * in the file to be zipped.  Putting in * is equivalent to using *.*.

So to zip a folder you could specific c:\files\*.* and everything in that folder will be zipped.  Change the command line accordingly.

Hope this helps.

Jay</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Have had a look at this (finally).  The key is to include the * in the file to be zipped.  Putting in * is equivalent to using *.*.</p>
<p>So to zip a folder you could specific c:\files\*.* and everything in that folder will be zipped.  Change the command line accordingly.</p>
<p>Hope this helps.</p>
<p>Jay</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary Armstrong</title>
		<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/comment-page-1/#comment-7</link>
		<dc:creator>Gary Armstrong</dc:creator>
		<pubDate>Wed, 05 Apr 2006 13:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/#comment-7</guid>
		<description>Jay,
I would also like to be able to zip up all the files in a folder and move it to a network drive with a given name and the date appended to it. Any help would be greatly appreciated. 
Thanks
Gary</description>
		<content:encoded><![CDATA[<p>Jay,<br />
I would also like to be able to zip up all the files in a folder and move it to a network drive with a given name and the date appended to it. Any help would be greatly appreciated.<br />
Thanks<br />
Gary</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jay</title>
		<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/comment-page-1/#comment-3</link>
		<dc:creator>jay</dc:creator>
		<pubDate>Tue, 28 Mar 2006 21:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/#comment-3</guid>
		<description>I&#039;ll see what i can do, travelling at the moment, will be a day or two maybe.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll see what i can do, travelling at the moment, will be a day or two maybe.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandre Fernandes</title>
		<link>http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/comment-page-1/#comment-2</link>
		<dc:creator>Alexandre Fernandes</dc:creator>
		<pubDate>Tue, 28 Mar 2006 16:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaymccormack.com/index.php/2006/01/28/rename-zip-move-all-in-vbscript/#comment-2</guid>
		<description>Hi, my name is Alexandre. 
You made this script for only one file. 
I try to make one script that zip two files, move this zip file to another directory and then delete the original files but it doesn´t works.
Do you have any idea to help me ?
thanks.</description>
		<content:encoded><![CDATA[<p>Hi, my name is Alexandre.<br />
You made this script for only one file.<br />
I try to make one script that zip two files, move this zip file to another directory and then delete the original files but it doesn´t works.<br />
Do you have any idea to help me ?<br />
thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
