<?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>RealTime, LLC.</title>
	<atom:link href="http://www.realtime-it.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.realtime-it.com</link>
	<description>Dothan, AL &#124; Computer, Server and Network Management &#124; Cloud, BCP, Disaster Recovery</description>
	<lastBuildDate>Mon, 14 Jan 2013 15:29:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>DNS Service &#8211; beware of deceptive invoice</title>
		<link>http://www.realtime-it.com/dns-service-deceptive-invoice/</link>
		<comments>http://www.realtime-it.com/dns-service-deceptive-invoice/#comments</comments>
		<pubDate>Fri, 11 Jan 2013 21:18:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.realtime-it.com/?p=199</guid>
		<description><![CDATA[Hi, RealTime wanted to let you know about a scam floating around. Two of our customers in the past week have received faux invoices from a company named DNS Services. A very legit looking invoice, complete w/ information obtained from public DNS records. Follow link for example of the &#8220;invoice&#8221; they send to you. Make sure [...]]]></description>
			<content:encoded><![CDATA[<p>Hi, RealTime wanted to let you know about a scam floating around. Two of our customers in the past week have received faux invoices from a company named DNS Services. A very legit looking invoice, complete w/ information obtained from public DNS records. Follow <a title="DNS Service Sample" href="http://screencast.com/t/owKGsaq9Df3N" target="_blank">link for example</a> of the &#8220;<a href="http://screencast.com/t/owKGsaq9Df3N" target="_blank">invoice</a>&#8221; they send to you. Make sure your account payable folks are aware so they can watch out for this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realtime-it.com/dns-service-deceptive-invoice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using robocopy to copy files from old server to new server</title>
		<link>http://www.realtime-it.com/using-robocopy-to-copy-files-from-old-server-to-new-server/</link>
		<comments>http://www.realtime-it.com/using-robocopy-to-copy-files-from-old-server-to-new-server/#comments</comments>
		<pubDate>Mon, 17 Dec 2012 17:09:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://www.realtime-it.com/?p=194</guid>
		<description><![CDATA[Have you ever copied files from one server to another, yet always ran into permission issues, or folders buried deep that had some customer permissions? After looking around and trying some product, Robocopy seems to handle this chore the best. This is built into Server 2008, in 2003 you need the resource kit tools installed. [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever copied files from one server to another, yet always ran into permission issues, or folders buried deep that had some customer permissions? After looking around and trying some product, Robocopy seems to handle this chore the best. This is built into Server 2008, in 2003 you need the resource kit tools installed.</p>
<p>What I needed to do was copy files from a 2003R2 server to a 2008R2 server, all while keeping the existing permissions intact.</p>
<p>Microsoft Technet has an <a title="Technet article" href="http://technet.microsoft.com/en-us/library/cc733145(v=ws.10).aspx" target="_blank">article</a> about robocopy. Unfortuately no examples are included. The MS technet wiki has some <a title="Examples" href="http://social.technet.microsoft.com/wiki/contents/articles/1073.robocopy-and-a-few-examples.aspx" target="_blank">examples</a> to get you going. The summary is this line in the cmd prompt took care of things for me:  ROBOCOPY S:\ D:\Share\ /e /xd MyFolder /B /COPYALL /log:c:\CopyProject.txt /TEE</p>
<p>This was run from a command prompt w/ elevated rights on the target server. Robocopy is self explanatory, the syntax after the command is always the challenge for us non programmers. The first part, S:\ is the mapped drive that I want to copy all of the sub directories from on the old (source) server. You can use UNC paths, or a longer path, like &#8220;S:\My documents&#8221;, but remember if the path has any spaces, enclose it in quotes.</p>
<p>The next part, D:\Share is the target, where the files are to be copied.</p>
<p>/e needed this to copy all subdirectories.</p>
<p>/xd myfolder is optional. /xd is to not copy a directory. I was testing to make sure this worked as expected.</p>
<p>/B and the /COPYALL are what gets permissions migrated. /B treats it like backing up/restoring the files. /COPYALL grabs all of the file attributes (permissions, owner, archive, etc&#8230;)</p>
<p>/log:c:\CopyProject.txt /TEE  this last part is also optional. It created a log file (names copyproject.txt) in the root of c: (in this case, but you can set the patch to create this anywhere). the TEE at the end? No idea, I didn&#8217;t look that far.</p>
<p>Good luck. I tried the microsoft file migration toolkit as well, but it wasn&#8217;t as useful. I imagine if we were migrating the DFS namespace from a old to new server, this product would be the ticket. <a title="Download from MS" href="http://www.microsoft.com/en-us/download/details.aspx?id=10268" target="_blank">Download</a> and <a title="Guide" href="http://www.windowsitpro.com/article/file-systems/how-do-i-use-the-microsoft-file-server-migration-toolkit-fsmt-" target="_blank">instructions</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.realtime-it.com/using-robocopy-to-copy-files-from-old-server-to-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email up to 10GB attachments in Gmail.</title>
		<link>http://www.realtime-it.com/email-up-to-10gb-attachments-in-gmail/</link>
		<comments>http://www.realtime-it.com/email-up-to-10gb-attachments-in-gmail/#comments</comments>
		<pubDate>Wed, 28 Nov 2012 19:38:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Mobile Computing]]></category>
		<category><![CDATA[SMB and home computing]]></category>

		<guid isPermaLink="false">http://www.realtime-it.com/?p=187</guid>
		<description><![CDATA[Google announced an added feature that allows you to attach large files that are on your google drive to emails sent from your Gmail account. In short, Gmail users also using Google Drive for file storage will have an icon at the bottom of their composed emails that lets them insert a file from Drive. Not [...]]]></description>
			<content:encoded><![CDATA[<p>Google announced an added feature that allows you to attach large files that are on your google drive to emails sent from your Gmail account. In short, Gmail users also using Google Drive for file storage will have an icon at the bottom of their composed emails that lets them insert a file from Drive. Not much different than just attaching a link to a document in the drive already, but save a step or two, plus notes any permissions adjustments required to allow the recipient to view the document.</p>
<p>Requirements</p>
<p>1. You need to be using Gmail&#8217;s new compose and reply experience.</p>
<p>2. Drive needs to be installed on your computer/mobile device for this to function, download here <a href="http://drive.google.com/">http://drive.google.com/</a></p>
<p>3. Patience. In trying this out, then searching google groups, it seems this feature will roll out over the next few days. Seems all the articles I read online left that detail out. </p>
<p>Article discussing new feature:</p>
<p><a href="http://gmailblog.blogspot.com/2012/11/gmail-and-drive-new-way-to-send-files.html#!/2012/11/gmail-and-drive-new-way-to-send-files.html">http://gmailblog.blogspot.com/2012/11/gmail-and-drive-new-way-to-send-files.html#!/2012/11/gmail-and-drive-new-way-to-send-files.html</a></p>
<p>Soon to be available on mobile devices too</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realtime-it.com/email-up-to-10gb-attachments-in-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easier way to sync GMail contacts with iOS devices</title>
		<link>http://www.realtime-it.com/easier-way-to-sync-gmail-contacts-with-ios-devices/</link>
		<comments>http://www.realtime-it.com/easier-way-to-sync-gmail-contacts-with-ios-devices/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 17:45:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.realtime-it.com/?p=173</guid>
		<description><![CDATA[Now there is a better way to sync GMail contacts with your iPhone and iPad. Requires iOS5 or newer. Link to Google support page]]></description>
			<content:encoded><![CDATA[<p>Now there is a better way to sync GMail contacts with your iPhone and iPad. Requires iOS5 or newer. <a href="http://support.google.com/mail/bin/answer.py?hl=en&amp;answer=2753077" target="_blank">Link to Google support page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.realtime-it.com/easier-way-to-sync-gmail-contacts-with-ios-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another weapon in the fight against malware</title>
		<link>http://www.realtime-it.com/another-weapon-in-the-fight-against-malware/</link>
		<comments>http://www.realtime-it.com/another-weapon-in-the-fight-against-malware/#comments</comments>
		<pubDate>Mon, 09 Jul 2012 17:53:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SMB and home computing]]></category>

		<guid isPermaLink="false">http://www.realtime-it.com/?p=164</guid>
		<description><![CDATA[HitMan Pro, I met these guys at an industry event last month and they have a pretty compelling product we are test driving right now. You can download HitMan Pro from: http://www.surfright.nl/en/downloads/ what they term a second change malware cleaner, is a lightweight, cloud powered malware detection and cleanup tool. Home users can use it [...]]]></description>
			<content:encoded><![CDATA[<p>HitMan Pro, I met these guys at an industry event last month and they have a pretty compelling product we are test driving right now. You can download HitMan Pro from: <a title="http://www.surfright.nl/en/downloads/" href="http://www.surfright.nl/en/downloads/" target="_blank">http://www.surfright.nl/en/downloads/</a> what they term a second change malware cleaner, is a lightweight, cloud powered malware detection and cleanup tool. Home users can use it once to clean up particularly nasty virus and malware infections on their computers.</p>
<p>Other tools to consider are Trend Micro&#8217;s house call: <a title="http://housecall.trendmicro.com/" href="http://housecall.trendmicro.com/" target="_blank">http://housecall.trendmicro.com/</a></p>
<p>For free protection, try Microsoft Security Essentials, available for download here: <a title="http://www.microsoft.com/en-us/download/details.aspx?id=5201" href="http://www.microsoft.com/en-us/download/details.aspx?id=5201" target="_blank">http://www.microsoft.com/en-us/download/details.aspx?id=5201</a></p>
<p>Other easy steps:</p>
<p>1. Turn on <a href="http://windows.microsoft.com/en-US/windows7/Turn-Windows-Firewall-on-or-off" target="_blank">Windows Firewall</a></p>
<p>2. Turn on <a href="http://windows.microsoft.com/en-us/windows-vista/Turn-automatic-updating-on-or-off" target="_blank">Automatic Updates</a></p>
<p>3. Surf using a non administrative (limited user) account on your computer. Simply setup a new account that isn&#8217;t an administrator and use that for normal surfing/email and the like. When you need to actually install software, utilize the administrative account. Malware can only install if allowed. If you are logged on w/ an administrator account, the rights to install software are already in place, making accidental infection much simpler</p>
<p>4. Practice safe internet habits: Don&#8217;t open unknown attachments and links in emails, don&#8217;t click every pop up that comes along, only browse reputable websites.</p>
<p>5. Consider using Firefox w/ privacy oriented add-ons or use Chrome in stealth mode. New version of IE will have some notable privacy features too.</p>
<p>6. Online banking. Use a separate browser for online transactions from what you normally surf with. Bonus points in security for using a browser in conjunction w/ Sandboxie; <a href="http://www.sandboxie.com/" target="_blank">http://www.sandboxie.com/</a> If you surf w/ this tool, and regularly clear out the &#8220;sandbox&#8221;, malware can be a thing of the past for you. I put it on the computer my wife and kids use and they don&#8217;t even know it is there, but it keeps mistakes from occurring.</p>
<p>I follow most of these recommendations (sadly, I use admin rights regularly, shame on me) at home and have no problems on my Windows 7 computer. Your results may vary. Probably the largest way I avoid junk is that I just don&#8217;t browse to the biggest known malware infested websites.</p>
<p>Take care, Todd</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realtime-it.com/another-weapon-in-the-fight-against-malware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dothan Chamber event, June Networking Exchange</title>
		<link>http://www.realtime-it.com/dothan-chamber-the-network-exchange/</link>
		<comments>http://www.realtime-it.com/dothan-chamber-the-network-exchange/#comments</comments>
		<pubDate>Wed, 20 Jun 2012 17:24:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.realtime-it.com/?p=143</guid>
		<description><![CDATA[I received an email Tuesday from the Chamber of Commerce here in Dothan and I see one of our customers, Dothan Magazine, is sponsoring the same event we are. We are a satisfied advertising and marketing customer of theirs. Patrick and his crew are a pretty great group of people. They do quality work for [...]]]></description>
			<content:encoded><![CDATA[<p>I received an email Tuesday from the Chamber of Commerce here in Dothan and I see one of our customers, Dothan Magazine, is sponsoring the same event we are. We are a satisfied advertising and marketing customer of theirs. Patrick and his crew are a pretty great group of people. They do quality work for us with our ads and helping us w/ marketing materials, so we look forward to seeing what they are doing at the event. We invite everyone to come out to The Depot off Main on Thursday, June 21st, from 4:30 &#8211; 6:30 pm to network and socialize w/ some of your chamber peers.</p>
<p><a title="Networking Exchange details" href="http://campaign.r20.constantcontact.com/render?llr=j8aj49cab&amp;v=001XkDsT0Wlq8H0s46R2rjosTuhWUcsJvI_69tRxBjghv9Kvrj2_mYCYYC1yFI3hFApQcF0NPZkEpQ6X64LoQpJG3cGXJG63CW7mIDRSEnkdLSJuWaXLoof8JWz3CXivNfmiu3qd2cHBFVhWFTPR-QNFw%3D%3D" target="_blank">Event Details</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.realtime-it.com/dothan-chamber-the-network-exchange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our new website is up!</title>
		<link>http://www.realtime-it.com/website/</link>
		<comments>http://www.realtime-it.com/website/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 21:05:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.realtime-it.com/?p=1</guid>
		<description><![CDATA[After a couple of months of hard work, thank you Brandon at Strategy6, we are releasing our first website update in over two years. The motivation behind it was two-fold; utilize a simpler format for non webmasters like me to update content as needed, and to share information on some of the new offerings, more detail on services that [...]]]></description>
			<content:encoded><![CDATA[<p>After a couple of months of hard work, thank you Brandon at <a title="Strategy6" href="http://www.strategy6.com/" target="_blank">Strategy6</a>, we are releasing our first website update in over two years. The motivation behind it was two-fold; utilize a simpler format for non webmasters like me to update content as needed, and to share information on some of the new offerings, more detail on services that we have had all along, or are adding in the coming months.</p>
<p>From a customer perspective,we have learned a lot about the process to setup a new website. looking back, I think the biggest things we could have done to improve the process were on our end; make sure we know what we wanted to communicate to our audience, understand how we wanted to site to look, navigation basics, what images to use, etc&#8230; Better to think this through early than in the middle of trying to get the page live. Working with pros who do this for a living does make a difference.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realtime-it.com/website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
