<?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: Basic Windows FTP Command Line Scripting</title> <atom:link href="http://www.pcmech.com/article/basic-windows-ftp-command-line-scripting/feed/" rel="self" type="application/rss+xml" /><link>http://www.pcmech.com/article/basic-windows-ftp-command-line-scripting/</link> <description>Helping Normal People Get Their Geek On</description> <lastBuildDate>Wed, 15 Feb 2012 10:29:00 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: SenHu</title><link>http://www.pcmech.com/article/basic-windows-ftp-command-line-scripting/comment-page-1/#comment-41267</link> <dc:creator>SenHu</dc:creator> <pubDate>Mon, 03 May 2010 14:55:01 +0000</pubDate> <guid
isPermaLink="false">http://1933839237#comment-41267</guid> <description>&gt;&gt; If someone found the scripting file in your C:\WINDOWS directory, they’ve got your FTP username and password.This is not correct. One solution is already proposed above (don&#039;t allow access to the batch file to anyone else but the author). But, that then makes it impossible to write a batch file usable by all.I use this script.http://www.biterscripting.com/helppages/SS_FTPUpload.htmlIt replicates the entire local directory to the FTP server. It creates subdirectories as necessary. And the good thing is, the FTP login and password are not hard-coded in the script. They are supplied by each user, when calling the script, as follows.script &quot;C:/Scripts/SS_FTPUpload.txt&quot; ftpserver(&quot;ftp.mycompany.com&quot;) ftplogin(&quot;login&quot;) ftppassword(&quot;password&quot;)Each user supplies his/her own login/password, making the script usable by all.</description> <content:encoded><![CDATA[<p>&gt;&gt; If someone found the scripting file in your C:\WINDOWS directory, they’ve got your FTP username and password.</p><p>This is not correct. One solution is already proposed above (don&#8217;t allow access to the batch file to anyone else but the author). But, that then makes it impossible to write a batch file usable by all.</p><p>I use this script.</p><p><a
href="http://www.biterscripting.com/helppages/SS_FTPUpload.html" rel="nofollow">http://www.biterscripting.com/helppages/SS_FTPUpload.html</a></p><p>It replicates the entire local directory to the FTP server. It creates subdirectories as necessary. And the good thing is, the FTP login and password are not hard-coded in the script. They are supplied by each user, when calling the script, as follows.</p><p>script &#8220;C:/Scripts/SS_FTPUpload.txt&#8221; ftpserver(&#8220;ftp.mycompany.com&#8221;) ftplogin(&#8220;login&#8221;) ftppassword(&#8220;password&#8221;)</p><p>Each user supplies his/her own login/password, making the script usable by all.</p> ]]></content:encoded> </item> <item><title>By: Jason Faulkner</title><link>http://www.pcmech.com/article/basic-windows-ftp-command-line-scripting/comment-page-1/#comment-17904</link> <dc:creator>Jason Faulkner</dc:creator> <pubDate>Thu, 11 Dec 2008 18:22:36 +0000</pubDate> <guid
isPermaLink="false">http://1933839237#comment-17904</guid> <description>&gt;&gt;One final note: This is obviously not secure whatsoever. If someone found the scripting file in your C:\WINDOWS directory, they’ve got your FTP username and password.The security on a batch file is no different than the security of any other file... just set the properties so that only yourself (and obviously Administrators) can read it and you are all set. No need for the file to be in the Windows directory, it can be anywhere you like.I&#039;ve been using this method for over a year as a way to automate moving our backups off-site. My script runs on a Terminal Server and I have the security of the BAT file locked down so that standard users cannot access it.</description> <content:encoded><![CDATA[<p>&gt;&gt;One final note: This is obviously not secure whatsoever. If someone found the scripting file in your C:\WINDOWS directory, they’ve got your FTP username and password.</p><p>The security on a batch file is no different than the security of any other file&#8230; just set the properties so that only yourself (and obviously Administrators) can read it and you are all set. No need for the file to be in the Windows directory, it can be anywhere you like.</p><p>I&#8217;ve been using this method for over a year as a way to automate moving our backups off-site. My script runs on a Terminal Server and I have the security of the BAT file locked down so that standard users cannot access it.</p> ]]></content:encoded> </item> <item><title>By: Mark</title><link>http://www.pcmech.com/article/basic-windows-ftp-command-line-scripting/comment-page-1/#comment-17869</link> <dc:creator>Mark</dc:creator> <pubDate>Thu, 11 Dec 2008 03:33:42 +0000</pubDate> <guid
isPermaLink="false">http://1933839237#comment-17869</guid> <description>FTP is an obsolete and outdated protocol.
Anyone using FTP should seriously consider using WebDAV.
Since DAV works over HTTP, you get all the benefits of HTTP that FTP cannot provide. For example: strong authentication, encryption, proxy support, and caching. It is true that you can get some of this through SSH, but the HTTP infrastructure is much more widely deployed than SSH. Further, SSH does not have the wide complement of tools, development libraries, and applications that HTTP does.
DAV transfers (well, HTTP transfers) are also more efficient than FTP. You can pipeline multiple transfers through a single TCP connection, whereas FTP requires a new connection for each file transferred (plus the control connection).
Do a Google search for BarracudaDrive, which is an easy to use WebDAV server.
http://barracudaserver.com/products/BarracudaDrive/FileServer.lsp
You do not need a client if using Windows or Mac since a client is integrated into the operating system.</description> <content:encoded><![CDATA[<p>FTP is an obsolete and outdated protocol.<br
/> Anyone using FTP should seriously consider using WebDAV.<br
/> Since DAV works over HTTP, you get all the benefits of HTTP that FTP cannot provide. For example: strong authentication, encryption, proxy support, and caching. It is true that you can get some of this through SSH, but the HTTP infrastructure is much more widely deployed than SSH. Further, SSH does not have the wide complement of tools, development libraries, and applications that HTTP does.<br
/> DAV transfers (well, HTTP transfers) are also more efficient than FTP. You can pipeline multiple transfers through a single TCP connection, whereas FTP requires a new connection for each file transferred (plus the control connection).<br
/> Do a Google search for BarracudaDrive, which is an easy to use WebDAV server.<br
/> <a
href="http://barracudaserver.com/products/BarracudaDrive/FileServer.lsp" rel="nofollow">http://barracudaserver.com/products/BarracudaDrive/FileServer.lsp</a><br
/> You do not need a client if using Windows or Mac since a client is integrated into the operating system.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 33/44 queries in 0.016 seconds using apc
Content Delivery Network via pcmech.pcmediainc.netdna-cdn.com

Served from: www.pcmech.com @ 2012-02-15 11:08:17 -->
