<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechniTip.Net &#187; sync</title>
	<atom:link href="http://technitip.net/tag/sync/feed" rel="self" type="application/rss+xml" />
	<link>http://technitip.net</link>
	<description>TechniTip.Net - Useful tips regarding technical stuff for things like Linux, MySQL, Apache, PHP, Linux Server, iPhone and more.</description>
	<lastBuildDate>Fri, 03 Feb 2012 18:31:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
<link>http://technitip.net</link>
<url>http://technitip.net/wp-content/plugins/maxblogpress-favicon/icons/favicon-66.ico</url>
<title>TechniTip.Net</title>
</image>
		<item>
		<title>Free Windows Command Line Sync Tool</title>
		<link>http://technitip.net/free-windows-command-line-sync-tool</link>
		<comments>http://technitip.net/free-windows-command-line-sync-tool#comments</comments>
		<pubDate>Tue, 10 Feb 2009 20:00:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[robocopy]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://technitip.net/?p=575</guid>
		<description><![CDATA[For Windows there is a cute little tool from Microsoft available which can be used to synchronize folders. It is part of the Windows Server 2003 Resource Tool Kit and called &#8220;Robocopy&#8221;. It is a command line tool which supports UNC path names. So it&#8217;s a useful tool to sync folders e.g. to a network [...]<div style="clear: both;">
<strong>Related posts:</strong><ol>
<li><a href='http://technitip.net/automated-windows-backups' rel='bookmark' title='Automated Windows Backups'>Automated Windows Backups</a></li>
<li><a href='http://technitip.net/free-defragmentation-tool-defraggler' rel='bookmark' title='Free Defragmentation Tool &#8220;Defraggler&#8221;'>Free Defragmentation Tool &#8220;Defraggler&#8221;</a></li>
<li><a href='http://technitip.net/free-treesize-tool' rel='bookmark' title='Free TreeSize Tool'>Free TreeSize Tool</a></li>
</ol></div>]]></description>
			<content:encoded><![CDATA[<p>For Windows there is a cute little tool from Microsoft available which can be used to synchronize folders. It is part of the Windows Server 2003 Resource Tool Kit and called &#8220;Robocopy&#8221;. It is a command line tool which supports UNC path names. So it&#8217;s a useful tool to sync folders e.g. to a network storage (NAS).</p>
<p>A simple call to sync a folder to a second local hard disc looks like:<br />
<code><br />
robocopy c:\temp\Privat "e:\backup" /MIR</code></p>
<p>/MIR mirror a directory tree</p>
<p>If you want to sync to a NAS storage which is not based on a Microsoft Operating System you need to add some further flags:<br />
<code><br />
robocopy c:\temp\Privat "\\ts-101\USB Disk 1\Test" /MIR /Z /A /M<br />
</code><br />
/Z copy files in restartable mode (useful when sync e.g. over DSL connection which may sometimes terminate)</p>
<p>/M copy only files with the Archive attribute set and reset it (needed if you want to sync to a NAS storage which is not based on Microsoft)</p>
<p>/A copy only files with the Archive attribute set (needed if you want to sync to a NAS storage which is not based on Microsoft)</p>

<a href="http://technitip.net/wp-content/gallery/test/cwindowssystem32cmdexe-10022009-205810.jpg" title="" class="shutterset_singlepic23" >
	<img class="ngg-singlepic ngg-center" src="http://technitip.net/wp-content/gallery/cache/23__600x_cwindowssystem32cmdexe-10022009-205810.jpg" alt="cwindowssystem32cmdexe-10022009-205810.jpg" title="cwindowssystem32cmdexe-10022009-205810.jpg" />
</a>

<p><strong>Obtaining Robocopy</strong></p>
<ul>
<li><a title="Robocopy download from Microsoft" href="http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;displaylang=en" target="_blank">Robocopy download from Microsoft</a> (if link is no longer available search in Google for &#8220;Windows Server 2003 Resource Tool Kit)</li>
</ul>

<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ftechnitip.net%2Ffree-windows-command-line-sync-tool&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div style="clear: both;"><p><strong>Related posts:</strong><ol>
<li><a href='http://technitip.net/automated-windows-backups' rel='bookmark' title='Automated Windows Backups'>Automated Windows Backups</a></li>
<li><a href='http://technitip.net/free-defragmentation-tool-defraggler' rel='bookmark' title='Free Defragmentation Tool &#8220;Defraggler&#8221;'>Free Defragmentation Tool &#8220;Defraggler&#8221;</a></li>
<li><a href='http://technitip.net/free-treesize-tool' rel='bookmark' title='Free TreeSize Tool'>Free TreeSize Tool</a></li>
</ol></p></div>]]></content:encoded>
			<wfw:commentRss>http://technitip.net/free-windows-command-line-sync-tool/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ring Tone doesn&#8217;t appear on iPhone after Sync?</title>
		<link>http://technitip.net/ring-tone-doesnt-appear-on-iphone-after-sync</link>
		<comments>http://technitip.net/ring-tone-doesnt-appear-on-iphone-after-sync#comments</comments>
		<pubDate>Mon, 29 Dec 2008 20:35:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ring tone]]></category>
		<category><![CDATA[sync]]></category>

		<guid isPermaLink="false">http://planlos.org/~harry/php/?p=14</guid>
		<description><![CDATA[You may have been wondering like me that your personal ring tone (maybe generated from a MP3) does not appear on your iPhone after synchronization? You can easily go around this issus, simply right click on your ring tone in iTunes and choose &#8220;Information&#8221;. Wihtin this menu go to the second tab &#8220;Information&#8221; and delete [...]<div style="clear: both;">
<strong>Related posts:</strong><ol>
<li><a href='http://technitip.net/commodore-c64-for-iphone-and-ipad' rel='bookmark' title='&#8220;Commodore C64&#8243; for iPhone and iPad'>&#8220;Commodore C64&#8243; for iPhone and iPad</a></li>
<li><a href='http://technitip.net/facebook-for-iphone' rel='bookmark' title='Facebook for iPhone'>Facebook for iPhone</a></li>
<li><a href='http://technitip.net/network-utility-for-iphone' rel='bookmark' title='&#8220;Network Utility&#8221; for iPhone'>&#8220;Network Utility&#8221; for iPhone</a></li>
</ol></div>]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://clk.tradedoubler.com/click?p=23761&amp;a=1570558&amp;url=http%3A%2F%2Fitunes.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewSoftware%3Fid%3D287965124%26mt%3D8%26partnerId%3D2003">
<a href="http://technitip.net/wp-content/gallery/test/itunesring.jpg" title="" class="shutterset_singlepic2" >
	<img class="ngg-singlepic ngg-left" src="http://technitip.net/wp-content/gallery/cache/2__320x240_itunesring.jpg" alt="itunesring.jpg" title="itunesring.jpg" />
</a>
</a> </strong>You may have been wondering like me that your personal ring tone (maybe generated from a MP3) does not appear on your iPhone after synchronization? You can easily go around this issus, simply right click on your ring tone in iTunes and choose &#8220;Information&#8221;. Wihtin this menu go to the second tab &#8220;Information&#8221; and delete all fields expect the &#8220;Name&#8221;.</p>
<p>Finally synchronize again and you will see that your ring tone will appear in your personal ring tones on your iPhone.</p>
<p><strong><a href="http://clk.tradedoubler.com/click?p=23761&amp;a=1570558&amp;url=http%3A%2F%2Fitunes.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewSoftware%3Fid%3D287965124%26mt%3D8%26partnerId%3D2003"><br />
</a></strong></p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ftechnitip.net%2Fring-tone-doesnt-appear-on-iphone-after-sync&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div style="clear: both;"><p><strong>Related posts:</strong><ol>
<li><a href='http://technitip.net/commodore-c64-for-iphone-and-ipad' rel='bookmark' title='&#8220;Commodore C64&#8243; for iPhone and iPad'>&#8220;Commodore C64&#8243; for iPhone and iPad</a></li>
<li><a href='http://technitip.net/facebook-for-iphone' rel='bookmark' title='Facebook for iPhone'>Facebook for iPhone</a></li>
<li><a href='http://technitip.net/network-utility-for-iphone' rel='bookmark' title='&#8220;Network Utility&#8221; for iPhone'>&#8220;Network Utility&#8221; for iPhone</a></li>
</ol></p></div>]]></content:encoded>
			<wfw:commentRss>http://technitip.net/ring-tone-doesnt-appear-on-iphone-after-sync/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

