<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>MrinTech</title>
	
	<link>http://mrintech.com</link>
	<description>Computers, Technology &amp; More</description>
	<lastBuildDate>Wed, 23 May 2012 06:30:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Mrintech" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="mrintech" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">Mrintech</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>301 Redirect ALL 404 Error Pages to Homepage in WordPress</title>
		<link>http://mrintech.com/5207/301-redirect-all-404-not-found-error-pages-to-homepage-in-wordpress-without-using-htaccess/</link>
		<comments>http://mrintech.com/5207/301-redirect-all-404-not-found-error-pages-to-homepage-in-wordpress-without-using-htaccess/#comments</comments>
		<pubDate>Wed, 23 May 2012 06:30:36 +0000</pubDate>
		<dc:creator>Mrinmay Bhattacharjee</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[301 Permanent Redirection]]></category>
		<category><![CDATA[HTTP 404 Not Found Error]]></category>
		<category><![CDATA[redirect 404 to homepage]]></category>
		<category><![CDATA[redirect 404 to homepage in wordpress]]></category>
		<category><![CDATA[redirect 404 to homepage wordpress]]></category>

		<guid isPermaLink="false">http://mrintech.com/?p=5207</guid>
		<description><![CDATA[A 404 Not Found Error/Page is generated when a user is able to successfully communicate with the server, but the server is unable to find the requested content. Normally, 404 Not Found errors are generated when a user follows a broken/dead link. Almost every theme that you use with your self hosted WordPress Blog have [...]<p>This Post: <a href="http://mrintech.com/5207/301-redirect-all-404-not-found-error-pages-to-homepage-in-wordpress-without-using-htaccess/">301 Redirect ALL 404 Error Pages to Homepage in WordPress</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/4aSFNvyMlgy4Vbu7jv78kRxyGTU/0/da"><img src="http://feedads.g.doubleclick.net/~a/4aSFNvyMlgy4Vbu7jv78kRxyGTU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4aSFNvyMlgy4Vbu7jv78kRxyGTU/1/da"><img src="http://feedads.g.doubleclick.net/~a/4aSFNvyMlgy4Vbu7jv78kRxyGTU/1/di" border="0" ismap="true"></img></a></p><p>A 404 Not Found Error/Page is generated when a user is able to successfully communicate with the server, but the server is unable to find the requested content. Normally, 404 Not Found errors are generated when a user follows a broken/dead link.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-2731" title="wordpress logo" src="http://files.mrintech.com/wp-content/uploads/wordpress-logo1.png" alt="wordpress logo" width="200" height="200" /></p>
<p>Almost every theme that you use with your self hosted WordPress Blog have an inbuilt 404 Page (404.php), which you can customize as per your site/blog requirements. But, how about <strong>301 Redirecting</strong> ALL these 404 Not Found Error Pages to your WordPress Blog Homepage without using/editing .htaccess?</p>
<p><span id="more-5207"></span></p>
<h3>301 Redirect ALL 404 Not Found Error Pages to Homepage in WordPress</h3>
<p>For redirecting all 404 Not Found Error Pages to Homepage in WordPress, simply follow these steps:</p>
<p><strong>1.</strong> Login to your WordPress Dashboard and head over to <strong>Appearance &gt; Editor</strong>. Here you need to find <strong>404.php</strong> (HTTP 404 Page Not Found Template) for your current theme:</p>
<p><img class="alignnone size-full wp-image-5210" title="wordpress 404" src="http://files.mrintech.com/wp-content/uploads/wordpress-404.png" alt="wordpress 404" width="556" height="173" /></p>
<p><strong>2.</strong> Delete every line of code present in your current 404.php file and enter following lines of code in it:</p>
<blockquote><p>&lt;?php<br />
header(&#8220;HTTP/1.1 301 Moved Permanently&#8221;);<br />
header(&#8220;Location: &#8220;.get_bloginfo(&#8216;url&#8217;));<br />
exit();<br />
?&gt;</p></blockquote>
<p><strong>3.</strong> Hit the Update File Button and everything is set!</p>
<p><strong>Important Notes:</strong></p>
<ul>
<li>Make sure you backup the code of your current 404.php file before trying/testing the above trick. I have seen many WordPress Themes which have unnecessary complex coding in 404.php file and editing the 404.php file in such theme breaks blog functionality!</li>
<li>The above lines of Code will <a href="http://en.wikipedia.org/wiki/HTTP_301">301</a> Redirect All Users as well as Search Engine Bots to your Blog Homepage [header("Location: ".get_bloginfo('url'));]</li>
<li>Search Engine Ranking will not be affected in any way, as we are using 301 Permanent Redirection here</li>
<li>The above trick will actually remove ALL exiting 404 Not Found Errors from Google Webmasters Tools and Bing Webmasters! &#8211; <em>Pretty cool! huh!?</em></li>
<li>Instead of Homepage, if you want to redirect ALL 404 error pages to some other URL, check out <a href="http://mrintech.com/4631/remove-all-http-404-not-found-error-from-wordpress/">THIS POST</a></li>
</ul>
<p>Also see: <a href="http://mrintech.com/1498/add-google-custom-search-in-wordpress-404-not-found-error-page/">Add Google Custom Search in WordPress 404 Pages</a> and <a href="http://mrintech.com/1767/hide-and-redirect-affiliate-links-in-blog-website/">Hide Affiliate Links in WordPress</a></p>
<p>This Post: <a href="http://mrintech.com/5207/301-redirect-all-404-not-found-error-pages-to-homepage-in-wordpress-without-using-htaccess/">301 Redirect ALL 404 Error Pages to Homepage in WordPress</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Mrintech?a=ksSzf09CycI:Xx33-aGWYd4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=ksSzf09CycI:Xx33-aGWYd4:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=ksSzf09CycI:Xx33-aGWYd4:bcOpcFrp8Mo"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=bcOpcFrp8Mo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=ksSzf09CycI:Xx33-aGWYd4:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/Mrintech?i=ksSzf09CycI:Xx33-aGWYd4:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Mrintech/~4/ksSzf09CycI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://mrintech.com/5207/301-redirect-all-404-not-found-error-pages-to-homepage-in-wordpress-without-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful List of Best Free VPN Server, Clients and Services</title>
		<link>http://mrintech.com/4970/list-of-free-vpn-server-services-for-windows-mac-os-x-linux-ios-ipad-iphone-android-for-home-business-users/</link>
		<comments>http://mrintech.com/4970/list-of-free-vpn-server-services-for-windows-mac-os-x-linux-ios-ipad-iphone-android-for-home-business-users/#comments</comments>
		<pubDate>Fri, 18 May 2012 04:17:08 +0000</pubDate>
		<dc:creator>Argh Bhattacharjee</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[best free vpn]]></category>
		<category><![CDATA[business vpn]]></category>
		<category><![CDATA[free us vpn]]></category>
		<category><![CDATA[free vpn]]></category>
		<category><![CDATA[free vpn server]]></category>
		<category><![CDATA[free vpn service]]></category>
		<category><![CDATA[us vpn]]></category>
		<category><![CDATA[vpn server]]></category>
		<category><![CDATA[vpn service]]></category>

		<guid isPermaLink="false">http://mrintech.com/?p=4970</guid>
		<description><![CDATA[VPN stands for Virtual Private Network and a VPN Connection helps you remain anonymous on the web by keeping your internet session secure and hidden! A Virtual Private Network not only provides you with online privacy and security, but also helps you to connect to the internet/specific websites, when blocked by proxies/firewall! Moreover, if you want to secure your internet connection against [...]<p>This Post: <a href="http://mrintech.com/4970/list-of-free-vpn-server-services-for-windows-mac-os-x-linux-ios-ipad-iphone-android-for-home-business-users/">Useful List of Best Free VPN Server, Clients and Services</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/OfBip5FEyMNH_iYa4cvxlb216OY/0/da"><img src="http://feedads.g.doubleclick.net/~a/OfBip5FEyMNH_iYa4cvxlb216OY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OfBip5FEyMNH_iYa4cvxlb216OY/1/da"><img src="http://feedads.g.doubleclick.net/~a/OfBip5FEyMNH_iYa4cvxlb216OY/1/di" border="0" ismap="true"></img></a></p><p>VPN stands for Virtual Private Network and a VPN Connection helps you remain anonymous on the web by keeping your internet session secure and hidden! A Virtual Private Network not only provides you with online privacy and security, but also helps you to connect to the internet/specific websites, when blocked by proxies/firewall!</p>
<p style="text-align: center;"><a href="http://en.wikipedia.org/wiki/File:Virtual_Private_Network_overview.svg" target="_blank"><img class="alignnone  wp-image-5152" src="http://files.mrintech.com/wp-content/uploads/Virtual-Private-Network-VPN.png" alt="Virtual Private Network VPN" width="480" height="340" /></a></p>
<p>Moreover, if you want to secure your internet connection against online attacks and data thefts, a personal VPN Client/Account completely hides your IP Address and make all incoming &amp; outgoing connections encrypted. If you work in an Office, study in a School or live in an area, where your internet access is blocked by a Firewall or similar software, a VPN service/server is definitely the perfect solution for you. In short, you can easily access blocked internet websites like Twitter, Facebook etc. from your Office/Home using a VPN client!</p>
<p><span id="more-4970"></span></p>
<h3>Advantages of using a VPN Client/Server/Service:</h3>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5176" src="http://files.mrintech.com/wp-content/uploads/vpn.png" alt="vpn" width="336" height="336" /></p>
<p><strong>A VPN Software/Account:</strong></p>
<ul>
<li>Completely hides your original IP Address, the sever provides you with a new IP Address, which actually belongs to the VPN service provider.</li>
<li>Establishes an Encrypted connection between your computer and the internet, thereby making it completely secure.</li>
<li>Helps in preventing your ISP (Internet Service Provider) from regulating your internet session/activities!</li>
<li>Helps you in Business oriented tasks like Audio-Video conferencing, Desktop Sharing and File Transfer.</li>
<li>Stops Softwares or People, who are tracking you through your IP Address!</li>
<li>Helps you to access blocked websites and allows you to bypass proxies as well as content filters that continuously monitors your internet activities/sessions.</li>
<li>Gives you protection against <a href="http://en.wikipedia.org/wiki/DNS_spoofing">DNS Spoofing</a>.</li>
<li>Makes you anonymous at work, school or home, even if you are under the supervision of any software or Firewall.</li>
</ul>
<p>There are many FREE as well as paid (but cheap!) VPN Server and Services available, that do not require any kind of complex tuning &#8211; Just download, install and they are ready to use! In this post, let&#8217;s check out some popular and widely used Free VPN Servers/Services:</p>
<h3>List of Free VPN Server and Services</h3>
<h4>Hotspot Shield</h4>
<p><a href="http://hotspotshield.com/" target="_blank">Hotspot Shield</a> offers FREE as well as Paid VPN plans. It offers a wide range of features including Malware Protection, Ad-free browsing and it automatically detects infected, phishing and spam websites. It has a personal secure tunnel to take care of data security by preventing snoopers, hackers, ISP’s etc. from viewing your web browsing activities, instant messages, downloads, credit card information or anything else you send over the network.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5155" src="http://files.mrintech.com/wp-content/uploads/Hotspot-Shield-Logo.png" alt="Hotspot Shield Logo" width="187" height="221" /></p>
<p>To keep user&#8217;s data secure, it turns all HTTP Traffic into HTTPS. Apart from security, it also hides user IP Address and ensures anonymous browsing, so that users cannot be traced or monitored by their actual IP Address. The service also provides unlimited Bandwidth usage!</p>
<blockquote><p>Hotspot Shield works on both Windows (Windows 7/Vista/2000/XP) and Mac OS X and is also available for Mobile Devices viz. Android, iPhone and iPad. Hotspot Shield mobile app is also capable of data compression on supported mobile devices, which helps in saving money on data plans.</p></blockquote>
<h4>CyberGhost</h4>
<p><a href="http://cyberghostvpn.com/" target="_blank">CyberGhost</a> is a VPN Service that offers FREE as well as Paid VPN Plans. It is a very reliable and secure VPN Service, as it not only protects your internet browsers, but also protect all other programs that are running in the background! It is a very important tool for protecting your online privacy, as the service uses SSL encryption for secure/encrypted data transfer between your computer and the VPN Server.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5159" src="http://files.mrintech.com/wp-content/uploads/CyberGhost-Logo.png" alt="CyberGhost Logo" width="195" height="192" /></p>
<p>It completely hides your IP Address (actual IP Address provided by your Internet Service Provider) and gives you its own server IP Address. Further, it shares the same IP Address with large number of users, so that any IP Address is not assigned to any one particular VPN user, which makes you completely anonymous! The service can also circumvent geographic, IP or other blockades and let you surf as an American, a German or a Dutch visitor, no matter in which part of the world you are located!</p>
<blockquote><p>CyberGhost free service is limited to 1 GB of traffic per month and provides you with speed upto 2 Mbps. Its Paid Plans are also affordable, which comes with extra traffic, access to premium servers and premium support. The service is currently available for Windows and may become available for MAC OS X, iOS and Android users in future!</p></blockquote>
<h4>TeamViewer<em></em></h4>
<p><a href="http://www.teamviewer.com/" target="_blank">TeamViewer</a> is a FREE VPN Service, capable of handling your basic Business/Office related needs. It provides Client to Client data protection i.e. only you and the other client can read the data, not the routing server(s), with fully encrypted connection and is based on RSA Public/Private key exchange. It is very easy to set-up, simple to use and has a decent interface.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5166" src="http://files.mrintech.com/wp-content/uploads/TeamViewer-Logo.png" alt="TeamViewer Logo" width="136" height="166" /></p>
<p>Using TeamViewer, you can easily perform basic Business Operations like Audio-Video Conferencing, desktop sharing, file transfer and even check the records of various control sessions. Basically, it is a Business oriented VPN Service and is ideal for small to medium sized Businesses.</p>
<blockquote><p>TeamViewer VPN Service for Business is available for Windows, Mac OS X, Linux and Android, iPhone, iPad etc.</p></blockquote>
<h4>OpenVPN</h4>
<p><a href="http://openvpn.net/" target="_blank">OpenVPN</a> is a FREE VPN service which is very easy to set up and uses an encrypted tunnel to keep user data connection secure. It protects you from online data theft and DNS Spoofing. By making use of Google DNS, the service blocks potentially harmful websites and also protects your computer from malicious content like Viruses, Trojans, Spywares etc.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5167" src="http://files.mrintech.com/wp-content/uploads/OpenVPN-Logo.jpg" alt="OpenVPN Logo" width="135" height="150" /></p>
<p>When you browse the web, your data appears to come from an IP Address of OpenVPN Sever, which makes you untraceable and no one can easily monitor your Internet Activity/Session!<em></em></p>
<blockquote><p>OpenVPN is currently available for Windows and Mac OS X. The service may become available for Linux, iOS and Android users in future!</p></blockquote>
<h4>PacketiX</h4>
<p><a href="http://www.packetix.net/" target="_blank">PacketiX</a> is a reliable VPN Service which provides you with its non-commercial academic version for FREE. The service ensures good browsing experience with decent speed. Using the shared VPN server cluster of PacketiX, you can create your own private Virtual VPN Hub, which allows you to develop a high-security Virtual Private Network!</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5170" src="http://files.mrintech.com/wp-content/uploads/PacketiX-Logo.jpg" alt="PacketiX Logo" width="159" height="141" /></p>
<p>With PacketiX there&#8217;s NO need to setup a VPN server with a global IP address. The VPN server administration is done over an easy web interface, which only needs you to download the manager, install it on your computer and start working on it instantly!</p>
<blockquote><p>PacketiX VPN Services is currently available for Windows and Linux.</p></blockquote>
<h4>SecurityKISS</h4>
<p><a href="http://www.securitykiss.com/" target="_blank">SecurityKISS</a> offers FREE to use VPN Services for life! It has a built-in Exclusive Tunnel to secure and protect your data. To insure maximum Security of Gateway, everything is kept encrypted (1024-bit). The client has a very simple, clean and easy to use interface and its online data compression feature enables high speed web browsing.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5171" src="http://files.mrintech.com/wp-content/uploads/SecurityKISS-Logo.jpg" alt="SecurityKISS Logo" width="147" height="195" /></p>
<p>SecurityKISS also doesn&#8217;t requires any type of registrations, username and passwords &#8211; This means you only need to connect the client to the internet/VPN Server and start working instantly! It works on all platforms that allows OpenVPN, PPTP and L2TP connections. The client/server logs minimum amount of information, so that you remain completely anonymous. SecurityKISS can also unblock Skype and other VOIP based services.</p>
<blockquote><p>SecurityKISS is available for Windows (Both 32-bit and 64-bit versions of Windows 7 are supported), Mac OS X and for Mobile Devices like iPhone and iPad.</p></blockquote>
<h4>USA IP</h4>
<p><a href="http://usaip.eu/" target="_blank">USA IP</a> is a VPN Service that offers VPN plans for all major countries in the world (US, Europe and Asia) and works with all platforms that allows PPTP,L2TP,SSTP and OpenVPN connections. It offers high grade (2048-bit) data encryption and protection. The service helps you to be anonymous as well as keeps your network connection protected, so that you can use any Public WI-Fi and online services without any worry!</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5172" src="http://files.mrintech.com/wp-content/uploads/USAIP-Logo.jpg" alt="USAIP Logo" width="133" height="153" /></p>
<p>Using USAIP you will get unlimited/unmetered bandwidth/traffic! To enjoy the free (Demo version) version of USA IP, simply download and install the USA IP Application from <a href="http://usaip.eu/en/free_vpn.php" target="_blank">here</a></p>
<blockquote><p>USA IP is available for Windows, Mac OS, Linux and iOS and Android based Mobile Devices.</p></blockquote>
<p>Hope you find the above list of VPN Services meant for home users and businesses useful. If you know more Awesome FREE VPN Service Providers, feel free to share them in the comment section below. We&#8217;ll keep updating this post in future too, so make sure you <a href="http://mrintech.com/subscribe/" target="_blank">Subscribe</a> to us!</p>
<p>This Post: <a href="http://mrintech.com/4970/list-of-free-vpn-server-services-for-windows-mac-os-x-linux-ios-ipad-iphone-android-for-home-business-users/">Useful List of Best Free VPN Server, Clients and Services</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Mrintech?a=wKYJhjBIS4A:ixvLDtnWbTQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=wKYJhjBIS4A:ixvLDtnWbTQ:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=wKYJhjBIS4A:ixvLDtnWbTQ:bcOpcFrp8Mo"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=bcOpcFrp8Mo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=wKYJhjBIS4A:ixvLDtnWbTQ:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/Mrintech?i=wKYJhjBIS4A:ixvLDtnWbTQ:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Mrintech/~4/wKYJhjBIS4A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://mrintech.com/4970/list-of-free-vpn-server-services-for-windows-mac-os-x-linux-ios-ipad-iphone-android-for-home-business-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Short Review &amp; Download] Google Drive Client for Windows</title>
		<link>http://mrintech.com/5040/google-drive-gdrive-for-windows-download-and-review/</link>
		<comments>http://mrintech.com/5040/google-drive-gdrive-for-windows-download-and-review/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 22:38:46 +0000</pubDate>
		<dc:creator>Mrinmay Bhattacharjee</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[download google drive]]></category>
		<category><![CDATA[google drive]]></category>
		<category><![CDATA[google drive for windows]]></category>
		<category><![CDATA[google drive review]]></category>

		<guid isPermaLink="false">http://mrintech.com/?p=5040</guid>
		<description><![CDATA[With Google Drive, users can directly Download, Upload and Sync (in real time) various types of files and multiple folders to the Cloud from different/multiple Computers and Mobile based Operating Systems (OS) viz. Android, iOS, Windows and MAC. Let&#8217;s check out in this post, a short review of Google Drive Software/Client for Windows Operating System, along with [...]<p>This Post: <a href="http://mrintech.com/5040/google-drive-gdrive-for-windows-download-and-review/">[Short Review &#038; Download] Google Drive Client for Windows</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/vIqnSRvNru4VxAtmi4BnGLse8As/0/da"><img src="http://feedads.g.doubleclick.net/~a/vIqnSRvNru4VxAtmi4BnGLse8As/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vIqnSRvNru4VxAtmi4BnGLse8As/1/da"><img src="http://feedads.g.doubleclick.net/~a/vIqnSRvNru4VxAtmi4BnGLse8As/1/di" border="0" ismap="true"></img></a></p><p>With <a href="https://drive.google.com/">Google Drive</a>, users can directly Download, Upload and Sync (in real time) various types of files and multiple folders to the Cloud from different/multiple Computers and <a href="http://mrintech.com/category/mobile">Mobile</a> based Operating Systems (OS) viz. <a href="http://mrintech.com/category/android">Android</a>, <a href="http://mrintech.com/category/apple-2">iOS</a>, <a href="http://mrintech.com/category/windows">Windows</a> and MAC.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5042" title="google drive" src="http://files.mrintech.com/wp-content/uploads/google-drive.png" alt="google drive" width="521" height="381" /></p>
<p>Let&#8217;s check out in this post, a short review of Google Drive Software/Client for Windows Operating System, along with necessary download link.</p>
<p><span id="more-5040"></span></p>
<h3>Download and Install Google Drive for Windows</h3>
<p>Google Drive Client is compatible with <a href="http://mrintech.com/troubleshooting-windows-xp-common-problems">Windows XP</a>, Windows Vista, <a href="http://mrintech.com/download-iso-file-create-dvd-activate-windows-7-x86-and-x64-with-genuine-product-key">Windows 7</a> and Windows 8 and you can download Google Drive for Windows using <a href="https://tools.google.com/dlpage/drive/">THIS LINK</a></p>
<p>When you click the <strong>Download Google Drive Button</strong>, a Windows Installer named <strong>googledrivesync.exe</strong> will be downloaded onto your Computer Hard Drive. Now, Run the installer and the installer will start downloading Google Drive Setup from the Internet &#8211; This should complete in few minutes/seconds depending on the <a href="http://mrintech.com/check-what-actually-your-internet-connection-speed-is">speed of your Internet Connection</a>.</p>
<p>As soon as the installer has finished downloading Google Drive setup from the <a href="http://mrintech.com/category/web">Internet</a>, G Drive will be installed automatically and you will see following icon in your System Tray:</p>
<p style="text-align: center;"> <img class="alignnone size-full wp-image-5044" title="google drive icon system tray" src="http://files.mrintech.com/wp-content/uploads/google-drive-icon-system-tray.png" alt="google drive icon system tray" width="254" height="39" /></p>
<p>Right click on the Icon and Select Sign In, and you will be get following Login interface:</p>
<p style="text-align: center;"> <img class="alignnone size-full wp-image-5045" title="google drive for windows" src="http://files.mrintech.com/wp-content/uploads/google-drive-for-windows.png" alt="google drive for windows" width="543" height="373" /></p>
<p>Here you need to enter your Google Account Email Address, which you want to use with Google Drive Cloud Storage Service and Password. Hit the Sign In Button and if your login credentials are correct, you will be getting following <strong>Google Drive Getting Started Window</strong>:</p>
<p style="text-align: center;"> <img class="alignnone size-full wp-image-5046" title="google drive getting started windows" src="http://files.mrintech.com/wp-content/uploads/google-drive-getting-started-windows.png" alt="google drive getting started windows" width="511" height="365" /></p>
<p>Hit the <strong>Next Button</strong> and now hit the <strong>Advanced Setup Button</strong>:</p>
<p style="text-align: center;"> <img class="alignnone size-full wp-image-5047" title="google drive getting started windows 1" src="http://files.mrintech.com/wp-content/uploads/google-drive-getting-started-windows-1.png" alt="google drive getting started windows" width="507" height="409" /></p>
<p>In Advanced Setup Option of Google Drive you can customize the client as per your needs:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5048" title="google drive advanced setup" src="http://files.mrintech.com/wp-content/uploads/google-drive-advanced-setup.png" alt="google drive advanced setup" width="520" height="382" /></p>
<p>Here:</p>
<ul>
<li><strong>Folder Location:</strong> This will be the folder location for Google Drive Sync Folder on your Computer&#8217;s Hard Drive. Whatever files and folders you add in this folder, will be uploaded to the cloud by G Drive. Also, any other file/folder NOT present/synced in this folder will be downloaded from the cloud. Hit the <strong>Change Button</strong>, if you want the folder to be created on some other location on your Hard Drive.</li>
<li><strong>Sync Option for Folders:</strong> Before installing the Desktop client, if you used Google Docs/Google Drive Web interface for uploading/creating files in folder(s), then those folder names will be present in the List under Sync Options. Either you can Sync/Download ALL/Selected folders onto your computer&#8217;s Hard Drive OR you can simply ignore them ALL!</li>
<li><strong>Sync Google Docs Files:</strong> When using Google Docs, if you have created/uploaded files which were NOT assigned to any folder, this option allows you to Download them all onto your Local Hard Drive. Even you can setup offline access for Google Drive, which enables you to  view Google Documents and Spreadsheets, Shuffle/Manage folders around and Edit Non-Google Docs files stored in your Google Drive folder in Offline Mode (when you are not connected to the Internet)!</li>
<li>If you want Google Drive Client to run at System Start Up (as soon as your Windows PC gets started), select <strong>Start Google Drive automatically when you start your computer.</strong></li>
</ul>
<p>Once, you have customized the client as per your Syncing requirements, hit the <strong>Start Sync Button</strong> and <a href="http://mrintech.com/category/google">Google</a> Drive will instantly start downloading the files present in your Google Drive Folder.</p>
<h3>Working with Google Drive Client on Windows</h3>
<p>Working with Google Drive Client on Windows Operating System is very easy! &#8211; <em>If you have earlier used <a href="http://mrintech.com/backup-website-wordpress-blog-to-dropbox-via-ftp-sftp-using-backup-box">Dropbox</a> and <a href="http://mrintech.com/sugarsync-daily-bandwidth-file-size-limitation-restriction">SugarSync</a> clients for Windows, then working with GDrive will be a cake walk for you!</em></p>
<p>As soon as Google Drive is installed on your system, a special Google Drive folder with following icon will be created on your Hard Drive:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5049" title="google drive windows folder icon" src="http://files.mrintech.com/wp-content/uploads/google-drive-windows-folder-icon.png" alt="google drive windows folder icon" width="278" height="283" /></p>
<p>Whatever files and sub-folders you add in this folder will be directly synced/uploaded to the Cloud and files/folders which are present in the cloud will be downloaded to this folder automatically!</p>
<p>If you Right Click on the Google Drive Icon in the System Tray, you will be getting following options:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5050" title="google drive system tray options" src="http://files.mrintech.com/wp-content/uploads/google-drive-system-tray-options.png" alt="google drive system tray options" width="306" height="363" /></p>
<p>Here:</p>
<ul>
<li>You will see How many files are being Synced (both Upload and Downloads) automatically with the cloud (your Online Google Drive Account). If all files are synced already, you will be getting <strong>Sync Complete</strong> message.</li>
<li><strong>Pause</strong> option will immediately PAUSE/STOP all syncing processes, unless you UN-PAUSE/START it manually &#8211; Useful, when you want to use the Bandwidth of your Internet Connection for other purposes!</li>
<li><strong>Open Google Drive Folder</strong> will open the location of Google Drive Folder present on your Hard Drive.</li>
<li><strong>Visit your Google Drive on the Web</strong> will open your <a href="https://drive.google.com/#my-drive">Google Drive Account</a> in your Computer Browser &#8211; From here you can manage your files and folder, share files and folder with your friends/colleagues etc.</li>
<li><strong>View Items shared with me</strong> option will show all Files and Folders <a href="https://drive.google.com/#shared-with-me">shared</a> with you in your Computer Browser &#8211; You will see a full list of files and folders shared with you, along with the name of Sharer and Share Date.</li>
<li><strong>Buy More Storage</strong> option allows you to purchase additional storage space for your Google Drive Account &#8211; Check out How to <a href="http://mrintech.com/google-drive-g-drive-storage-plans-pricing-upgrade-details">Upgrade Google Drive Storage Space</a>?</li>
<li><strong>Preferences&#8230;</strong> will open the same Advanced Setup option we discussed earlier &#8211; If you want to change the location of default Google Drive folder OR want to disable running of G Drive on system start up etc., make use of Preferences.</li>
<li><strong>Help</strong> will redirect you to the <a href="https://support.google.com/drive/?hl=en&amp;p=desktop_home">Official Google Drive Help Page</a></li>
<li><strong>Send Feedback</strong> allows you to send Feedback to <em>Awesome People!</em> of Google/Google Drive Team using <a href="https://support.google.com/drive/bin/request.py?hl=en&amp;contact_type=drive_feedback">THIS PAGE</a></li>
<li><strong>Quit Google Drive</strong> option will make Google Drive EXIT from running services/processes completely &#8211; If you want to run Google Drive again, you need to click on the Google Drive Icon present on your Desktop or in Windows Start Menu.</li>
</ul>
<p>Overall, working with Google Drive for all your Sync requirements is very easy!</p>
<h3>Short Review of Google Drive for Windows</h3>
<p><span style="text-decoration: underline;"><strong>Pros:</strong></span></p>
<p><strong>1.</strong> Google Drive runs like a charm in Windows System Tray, whenever it is syncing files and folders to/from the cloud. It doesn&#8217;t slow down your system in anyway.</p>
<p><strong>2.</strong> The client Uploads and Downloads Files and Folders at Maximum Speed of your Internet Connection!</p>
<p><strong>3.</strong> Ability to Add/Remove Google Accounts instantly:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5052" title="google drive accounts" src="http://files.mrintech.com/wp-content/uploads/google-drive-accounts.png" alt="google drive accounts" width="470" height="63" /></p>
<p><strong>4.</strong> See ALL Shared Files and Folder in your Web Browser with a Single Click!</p>
<p><strong>5.</strong> No matter whether you are logged in or not in your Computer&#8217;s Web Browser, Google Drive will <em>instantly</em> open Shared Items Folder in the Web Interface of your Google Drive Account. This means you don&#8217;t need to login again and again in your Web Browser!</p>
<p><strong>6.</strong> You will see same beautiful icons in your Google Drive Folder, which you can see in your Google Docs/Google Drive Web Accounts:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5053" title="google drive folders files icon" src="http://files.mrintech.com/wp-content/uploads/google-drive-folders-files-icon.png" alt="google drive folders files icon" width="421" height="300" /></p>
<p><span style="text-decoration: underline;"><strong>Cons:</strong></span></p>
<p><strong>1.</strong> Currently, there&#8217;s NO option for setting up/limiting Download and Upload Speed in Google Drive client for Windows! Once, Google Drive starts syncing files, it will sync at Maximum Speed of your Internet Connection!</p>
<p><strong>2.</strong> You can&#8217;t configure a Proxy Connection with Google Drive.</p>
<p><strong>3.</strong> Like SugarSync File Manager, you can&#8217;t share a File/Folder directly from your Desktop! &#8211; For this you have to go to the Web everytime!</p>
<p><strong>4.</strong> As of now, Google Drive can&#8217;t sync Multiple Folders from your Computer. Instead all files and folders you want to sync, must be dragged to the Default Folder of Google Drive.</p>
<p><strong>5.</strong> No <a href="https://www.dropbox.com/help/137">LAN Sync</a> feature like Dropbox</p>
<p><strong>6.</strong> In order to edit/upload certain files in the Web Interface of Google Drive, you need to convert them to Google Docs supported format. This may not be welcomed by many users who want to keep their files in original format like Microsoft Office format etc.!, because if you convert a file to Google Docs supported format you are likely to lose tracked changes and other features!:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5055" title="google drive upload settings" src="http://files.mrintech.com/wp-content/uploads/google-drive-upload-settings.png" alt="google drive upload settings" width="548" height="109" /></p>
<p><strong>7.</strong> No Music/Video Streaming Facility with Google Drive &#8211; You can store music and videos in your Google Drive Account, but you can&#8217;t play them in the Web Interface of Google Drive:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5054" title="google drive player" src="http://files.mrintech.com/wp-content/uploads/google-drive-player.png" alt="google drive player" width="344" height="220" /></p>
<p>Some cloud storage services like SugarSync etc. supports direct streaming/play of Music and Videos on certain platforms/clients.</p>
<blockquote><p><em><span style="color: #ff0000;"><strong>Important Note:</strong></span> Google Drive has been launched recently and more features/functionalities will be added by Google Team in upcoming days/months. This whole post and review is all about the PRESENT client of Google Drive for Windows. This post will be updated suitably with more added/enhanced features and functionalities in future! Kindly don&#8217;t jump to any conclusion, just by reading the above review! <strong>Google Drive is AWESOME and you should definitely try it.</strong></em></p></blockquote>
<p>Also See: <a href="http://mrintech.com/gdrive-google-drive-keyboard-shortcuts-for-windows-pc-mac-based-computers">Google Drive Keyboard Shortcuts</a></p>
<p>This Post: <a href="http://mrintech.com/5040/google-drive-gdrive-for-windows-download-and-review/">[Short Review &#038; Download] Google Drive Client for Windows</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Mrintech?a=lA5une_9htU:6hXEtB15o3c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=lA5une_9htU:6hXEtB15o3c:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=lA5une_9htU:6hXEtB15o3c:bcOpcFrp8Mo"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=bcOpcFrp8Mo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=lA5une_9htU:6hXEtB15o3c:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/Mrintech?i=lA5une_9htU:6hXEtB15o3c:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Mrintech/~4/lA5une_9htU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://mrintech.com/5040/google-drive-gdrive-for-windows-download-and-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Keyboard Shortcuts for Google Drive a.k.a. G Drive</title>
		<link>http://mrintech.com/5028/gdrive-google-drive-keyboard-shortcuts-for-windows-pc-mac-based-computers/</link>
		<comments>http://mrintech.com/5028/gdrive-google-drive-keyboard-shortcuts-for-windows-pc-mac-based-computers/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 19:16:06 +0000</pubDate>
		<dc:creator>Mrinmay Bhattacharjee</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[g drive]]></category>
		<category><![CDATA[gdrive]]></category>
		<category><![CDATA[google drive]]></category>
		<category><![CDATA[Keyboard Shortcut]]></category>
		<category><![CDATA[Keyboard Shortcuts]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mrintech.com/?p=5028</guid>
		<description><![CDATA[Google Drive has finally arrived and everyone, with a Google Account, can now enjoy 5GB of FREE Cloud Storage and Sync Space. In this post, we will see a list of Keyboard Shortcuts which you can use with Google Drive! The following list of Windows PC Keyboard Shortcuts works only with the Web Version/Interface of [...]<p>This Post: <a href="http://mrintech.com/5028/gdrive-google-drive-keyboard-shortcuts-for-windows-pc-mac-based-computers/">List of Keyboard Shortcuts for Google Drive a.k.a. G Drive</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/8Fje_ic6CI_MVkJcGbNSKxU8yUk/0/da"><img src="http://feedads.g.doubleclick.net/~a/8Fje_ic6CI_MVkJcGbNSKxU8yUk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8Fje_ic6CI_MVkJcGbNSKxU8yUk/1/da"><img src="http://feedads.g.doubleclick.net/~a/8Fje_ic6CI_MVkJcGbNSKxU8yUk/1/di" border="0" ismap="true"></img></a></p><p><a href="https://drive.google.com/">Google Drive</a> has finally arrived and everyone, with a Google Account, can now enjoy 5GB of FREE Cloud Storage and Sync Space.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-4998" title="google drive logo" src="http://files.mrintech.com/wp-content/uploads/google-drive-logo.png" alt="google drive logo" width="469" height="301" /></p>
<p>In this post, we will see a list of Keyboard Shortcuts which you can use with Google Drive!<br />
<span id="more-5028"></span><br />
The following list of <a href="http://mrintech.com/category/windows">Windows</a> PC Keyboard Shortcuts works only with the <a href="https://drive.google.com/#my-drive">Web Version/Interface</a> of Google Drive (G Drive) in your <a href="http://mrintech.com/category/browser">Browser</a>. If you are using a <a href="http://mrintech.com/category/apple-2">MAC</a>, replace the <strong>CTRL Key</strong> with the <strong>Apple Key</strong> (or <strong>Command Key</strong>), and <strong>ALT Key</strong> with the <strong>Option Key</strong>:</p>
<h3>Google Drive Keyboard Shortcuts for selecting Files and Folders:</h3>
<table width="600px" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr bgcolor="#c3d9ff">
<th align="center" valign="middle"><span style="color: #0000ff;">Shortcut Keys</span></th>
<th align="center" valign="middle"><span style="color: #0000ff;">Action</span></th>
</tr>
<tr>
<td style="text-align: center;"><strong>J</strong></td>
<td style="text-align: center;">Navigate to and highlight next item in the list</td>
</tr>
<tr>
<td style="text-align: center;"><strong>K</strong></td>
<td style="text-align: center;">Navigate to and highlight previous item in the list</td>
</tr>
<tr>
<td style="text-align: center;"><strong>X</strong></td>
<td style="text-align: center;">Select/Unselect the highlighted item</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Down Arrow</strong></td>
<td style="text-align: center;">Select next item in the list</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + Down Arrow</strong></td>
<td style="text-align: center;">Select next item in the list while leaving the current selection selected</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Up Arrow</strong></td>
<td style="text-align: center;">Select previous item in the list</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + Up Arrow</strong></td>
<td style="text-align: center;">Select previous item in the list while leaving the current selection selected</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + A</strong></td>
<td style="text-align: center;">Select ALL</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + N</strong></td>
<td style="text-align: center;">Select NONE</td>
</tr>
</tbody>
</table>
<h3>Google Drive Keyboard Shortcuts for Creating New Documents and Collections:</h3>
<table width="600px" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr bgcolor="#c3d9ff">
<th align="center" valign="middle"><span style="color: #0000ff;">Shortcut Keys</span></th>
<th align="center" valign="middle"><span style="color: #0000ff;">Action</span></th>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + T</strong></td>
<td style="text-align: center;">Create a NEW Text Document</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + P</strong></td>
<td style="text-align: center;">Create a NEW Presentation</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + S</strong></td>
<td style="text-align: center;">Create a NEW Spreadsheet</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + D</strong></td>
<td style="text-align: center;">Create a NEW Drawing</td>
</tr>
<tr>
<td style="text-align: center;"><strong>Shift + C</strong></td>
<td style="text-align: center;">Create a NEW Collection</td>
</tr>
</tbody>
</table>
<h3>Google Drive Keyboard Shortcuts for directly accessing Navigation Panel, Documents and Collections:</h3>
<table width="600px" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr bgcolor="#c3d9ff">
<th align="center" valign="middle"><span style="color: #0000ff;">Shortcut Keys</span></th>
<th align="center" valign="middle"><span style="color: #0000ff;">Action</span></th>
</tr>
<tr>
<td style="text-align: center;"><strong>G then N</strong></td>
<td style="text-align: center;">Access Navigation Panel</td>
</tr>
<tr>
<td style="text-align: center;"><strong>G then L</strong></td>
<td style="text-align: center;">Access list of Documents</td>
</tr>
<tr>
<td style="text-align: center;"><strong>G then C</strong></td>
<td style="text-align: center;">Access Collections</td>
</tr>
<tr>
<td style="text-align: center;"><strong>G then D</strong></td>
<td style="text-align: center;">Access the Details Pane</td>
</tr>
</tbody>
</table>
<h3>Google Drive Keyboard Shortcuts for accessing G Drive Menus:</h3>
<table width="600px" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr bgcolor="#c3d9ff">
<th align="center" valign="middle"><span style="color: #0000ff;">Shortcut Keys</span></th>
<th align="center" valign="middle"><span style="color: #0000ff;">Action</span></th>
</tr>
<tr>
<td style="text-align: center;"><strong>C</strong></td>
<td style="text-align: center;">Show the Create New Menu, Use Arrow keys to select an item to create</td>
</tr>
<tr>
<td style="text-align: center;"><strong>U</strong></td>
<td style="text-align: center;">Show Upload Menu</td>
</tr>
<tr>
<td style="text-align: center;"><strong>A</strong></td>
<td style="text-align: center;">Show Actions Menu</td>
</tr>
<tr>
<td style="text-align: center;"><strong>R</strong></td>
<td style="text-align: center;">Show Sort Menu</td>
</tr>
<tr>
<td style="text-align: center;"><strong>V</strong></td>
<td style="text-align: center;">Show View Menu</td>
</tr>
</tbody>
</table>
<h3>Google Drive Action Keys:</h3>
<table width="600px" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr bgcolor="#c3d9ff">
<th align="center" valign="middle"><span style="color: #0000ff;">Shortcut Keys</span></th>
<th align="center" valign="middle"><span style="color: #0000ff;">Action</span></th>
</tr>
<tr>
<td style="text-align: center;"><strong>Z</strong></td>
<td style="text-align: center;">Organize</td>
</tr>
<tr>
<td style="text-align: center;"><strong>S</strong></td>
<td style="text-align: center;">Star/Unstar an Item</td>
</tr>
<tr>
<td style="text-align: center;"><strong>o or Enter</strong></td>
<td style="text-align: center;">Open an Item</td>
</tr>
<tr>
<td style="text-align: center;"><strong>. (Dot)</strong></td>
<td style="text-align: center;">Share a Folder/File</td>
</tr>
</tbody>
</table>
<h3>Google Drive Keyboard Shortcuts for accessing Search, Details Pane and Help Menu directly:</h3>
<table width="600px" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr bgcolor="#c3d9ff">
<th align="center" valign="middle"><span style="color: #0000ff;">Shortcut Keys</span></th>
<th align="center" valign="middle"><span style="color: #0000ff;">Action</span></th>
</tr>
<tr>
<td style="text-align: center;"><strong>/</strong></td>
<td style="text-align: center;">Directly Go to Search Box</td>
</tr>
<tr>
<td style="text-align: center;"><strong>D</strong></td>
<td style="text-align: center;">Show/Hide Details pane</td>
</tr>
<tr>
<td style="text-align: center;"><strong>? or Ctrl + /</strong></td>
<td style="text-align: center;">Access Shortcuts Help Menu</td>
</tr>
</tbody>
</table>
<p>Hope the above Keyboard Shortcuts List of Google Drive (GDrive) helps you in navigating, accessing and managing documents more efficiently.</p>
<p>Also See: <a href="http://mrintech.com/google-drive-g-drive-storage-plans-pricing-upgrade-details">Google Drive Pricing</a></p>
<p>This Post: <a href="http://mrintech.com/5028/gdrive-google-drive-keyboard-shortcuts-for-windows-pc-mac-based-computers/">List of Keyboard Shortcuts for Google Drive a.k.a. G Drive</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Mrintech?a=Jg0c3z5Uyiw:mc-ov-HPz3g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=Jg0c3z5Uyiw:mc-ov-HPz3g:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=Jg0c3z5Uyiw:mc-ov-HPz3g:bcOpcFrp8Mo"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=bcOpcFrp8Mo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=Jg0c3z5Uyiw:mc-ov-HPz3g:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/Mrintech?i=Jg0c3z5Uyiw:mc-ov-HPz3g:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Mrintech/~4/Jg0c3z5Uyiw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://mrintech.com/5028/gdrive-google-drive-keyboard-shortcuts-for-windows-pc-mac-based-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Drive Pricing Details: Upgrade Storage for Cheap!</title>
		<link>http://mrintech.com/4991/google-drive-g-drive-storage-plans-pricing-upgrade-details/</link>
		<comments>http://mrintech.com/4991/google-drive-g-drive-storage-plans-pricing-upgrade-details/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 10:16:20 +0000</pubDate>
		<dc:creator>Mrinmay Bhattacharjee</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[g drive]]></category>
		<category><![CDATA[gdrive]]></category>
		<category><![CDATA[google drive]]></category>
		<category><![CDATA[google drive plans]]></category>
		<category><![CDATA[storage plans and pricing]]></category>
		<category><![CDATA[upgrade Google drive storage]]></category>

		<guid isPermaLink="false">http://mrintech.com/?p=4991</guid>
		<description><![CDATA[The much awaited Cloud Storage Service from Google i.e. Google Drive or GDrive has finally arrived! Let&#8217;s check out in this post, the pricing structure for purchasing/upgrading to additional storage space for your Google Drive Account. Google Drive is open for all and you can start using Google Drive (G Drive) instantly, just by Signing [...]<p>This Post: <a href="http://mrintech.com/4991/google-drive-g-drive-storage-plans-pricing-upgrade-details/">Google Drive Pricing Details: Upgrade Storage for Cheap!</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/MSO53d3QtrpwTdlJKTJhsPuSBn0/0/da"><img src="http://feedads.g.doubleclick.net/~a/MSO53d3QtrpwTdlJKTJhsPuSBn0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MSO53d3QtrpwTdlJKTJhsPuSBn0/1/da"><img src="http://feedads.g.doubleclick.net/~a/MSO53d3QtrpwTdlJKTJhsPuSBn0/1/di" border="0" ismap="true"></img></a></p><p>The much awaited Cloud Storage Service from <a href="http://mrintech.com/category/google">Google</a> i.e. <a href="https://drive.google.com/">Google Drive</a> or GDrive has finally arrived!</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-4998" title="google drive logo" src="http://files.mrintech.com/wp-content/uploads/google-drive-logo.png" alt="google drive logo" width="469" height="301" /></p>
<p>Let&#8217;s check out in this post, the pricing structure for purchasing/upgrading to additional storage space for your Google Drive Account.</p>
<p><span id="more-4991"></span></p>
<p><a href="https://drive.google.com/">Google Drive</a> is open for all and you can start using Google Drive (G Drive) instantly, just by Signing in to the service using your Google Account/Gmail Email Address.</p>
<p>As a Free User and by default, you will be getting following storage quota for your Google Drive, GMail and Picasa Accounts respectively:</p>
<blockquote>
<ul>
<li><strong>Google Drive</strong> &#8211; 5 GB for your synced and uploaded files. Google Docs and files converted to Google Docs format don&#8217;t take up storage space!</li>
<li><strong>GMail</strong> &#8211; 10 GB (and counting) for Gmail messages and attachments.</li>
<li><strong>Picasa Web Albums</strong> &#8211; 1 GB for uploaded Photos and Videos.</li>
</ul>
</blockquote>
<p>If you run out of space and want to upgrade your account storage space, following are the storage plans available for Google Drive:</p>
<table border="1">
<tbody>
<tr>
<th>Storage</th>
<th>Monthly Price</th>
</tr>
<tr>
<td>25 GB</td>
<td>$2.49</td>
</tr>
<tr>
<td>100 GB</td>
<td>$4.99</td>
</tr>
<tr>
<td>200 GB</td>
<td>$9.99</td>
</tr>
<tr>
<td>400 GB</td>
<td>$19.99</td>
</tr>
<tr>
<td>1 TB</td>
<td>$49.99</td>
</tr>
<tr>
<td>2 TB</td>
<td>$99.99</td>
</tr>
<tr>
<td>4 TB</td>
<td>$199.99</td>
</tr>
<tr>
<td>8 TB</td>
<td>$399.99</td>
</tr>
<tr>
<td>16 TB</td>
<td>$799.99</td>
</tr>
</tbody>
</table>
<p><em>Note: 1024 MB equals 1 GB; 1 TB equals 1024 GB. Currently, Google is NOT offering any Yearly plan and above pricing doesn&#8217;t include any taxes or fees applicable in your country.</em></p>
<p><strong>Important:</strong></p>
<ul>
<li>When you purchase Additional Storage Space for your account, this space will be shared across your Google Drive and Picasa Account. This means, the storage will be used by any product that’s over its free storage quota on a first-come, first-served basis!</li>
<li>Your Gmail Account storage will be increased to <strong>25 GB</strong> as soon as your buy additional storage space for your GDrive + Picasa Account.</li>
</ul>
<h3>How to Purchase More Storage for your Google Drive Account?</h3>
<p>Upgrading Account Storage Space for your Google Drive Account is very easy! All you need to do is to follow these steps:</p>
<p><strong>1.</strong> Go to <a href="https://www.google.com/settings/storage/?hl=en" target="_blank">THIS LINK</a> and Login using your Google Account Email Address for which you want to purchase additional storage. As soon as you are logged in, you will be getting following interface which includes details on different types of Storage Plans available and their individual price per month (click to enlarge):</p>
<p style="text-align: center;"><a href="http://files.mrintech.com/wp-content/uploads/google-drive-storage-plans-pricing.png" rel="prettyPhoto[4991]" target="_blank"><img class="alignnone  wp-image-5001" title="google drive storage plans pricing" src="http://files.mrintech.com/wp-content/uploads/google-drive-storage-plans-pricing.png" alt="google drive storage plans pricing" width="599" height="327" /></a></p>
<p><strong>2.</strong> Suppose, you want to purchase <strong>100 GB for $4.99 per month</strong>, just click on <strong>Choose this Plan Button</strong> and you will be getting following confirmation details:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5005" title="google drive plan details" src="http://files.mrintech.com/wp-content/uploads/google-drive-plan-details.png" alt="google drive plan details" width="504" height="268" /></p>
<p><strong>3.</strong> Click on the <strong>Continue to Checkout Button</strong> and if a Credit Card is associated with your Google Wallet Account, you will be getting following <strong>Review your Purchase</strong> Interface:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-5006" title="google drive checkout" src="http://files.mrintech.com/wp-content/uploads/google-drive-checkout.png" alt="google drive checkout" width="550" height="450" /></p>
<p><em>* If there&#8217;s NO Credit Card associated with your Google Wallet Account, then you can add it using the New Card Button present on <a href="https://wallet.google.com/manage/#paymentMethods:" target="_blank">THIS PAGE</a></em></p>
<p><strong>4.</strong> Once, you have reviewed all the details, click on the <strong>Accept and Finish Button</strong> and your Credit Card will be processed by Google Wallet. Within 24 Hours you can start seeing upgraded Storage in your Google Drive + Picasa and Gmail Account!</p>
<p><em>* Your Credit Card will be processed and charged every month by Google Wallet, if you want to continue using the service with upgraded storage. You can manage/see all your Credit Card and Transactions using Google Wallet [See: <a href="http://mrintech.com/remove-delete-add-edit-credit-card-from-google-play-android-market-using-wallet-account">Remove Credit Card from Google Play</a>]</em></p>
<p>As you can see the <strong>Price per GB</strong> of Google Drive is very less when compared to popular Cloud Storage Services viz. <a href="http://mrintech.com/free-dropbox-bonus-cloud-storage-space">Dropbox</a>, <a href="http://mrintech.com/sugarsync-daily-bandwidth-file-size-limitation-restriction">SugarSync</a> etc., I am sure Google Drive is going to be the No.1 Cloud Storage Service soon!</p>
<p>This Post: <a href="http://mrintech.com/4991/google-drive-g-drive-storage-plans-pricing-upgrade-details/">Google Drive Pricing Details: Upgrade Storage for Cheap!</a> was originally made on <a href="http://mrintech.com">MrinTech</a></p>
<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Mrintech?a=PgZiAQcTyMQ:plPBmEuXjGE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=PgZiAQcTyMQ:plPBmEuXjGE:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=PgZiAQcTyMQ:plPBmEuXjGE:bcOpcFrp8Mo"><img src="http://feeds.feedburner.com/~ff/Mrintech?d=bcOpcFrp8Mo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Mrintech?a=PgZiAQcTyMQ:plPBmEuXjGE:guobEISWfyQ"><img src="http://feeds.feedburner.com/~ff/Mrintech?i=PgZiAQcTyMQ:plPBmEuXjGE:guobEISWfyQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Mrintech/~4/PgZiAQcTyMQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://mrintech.com/4991/google-drive-g-drive-storage-plans-pricing-upgrade-details/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Served from: mrintech.com @ 2012-05-31 07:59:19 by W3 Total Cache -->

