<?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>techcrank.com &#187; Windows</title>
	<atom:link href="http://techcrank.com/category/os/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://techcrank.com</link>
	<description>Technology Cranked</description>
	<lastBuildDate>Sat, 29 Oct 2011 08:57:18 +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>Top 5 Ultimate Internet Explorer Designing Hacks</title>
		<link>http://techcrank.com/blogging/top-5-ultimate-internet-explorer-designing-hacks/</link>
		<comments>http://techcrank.com/blogging/top-5-ultimate-internet-explorer-designing-hacks/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 15:15:27 +0000</pubDate>
		<dc:creator>Shubham</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://techcrank.com/?p=1569</guid>
		<description><![CDATA[Every Web Designer hates Internet explorer, I too hate Internet explorer for many reasons (especially IE6). HTML 5 and CSS3 are the most powerful techniques of creating a good design but IE can’t handle them. Few tricks can do some work to give a good look in Internet explorer. ]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://techcrank.com/blogging/top-5-ultimate-internet-explorer-designing-hacks/" title="Permanent link to Top 5 Ultimate Internet Explorer Designing Hacks"><img class="post_image alignright" src="http://techcrank.com/wp-content/uploads/2010/03/ie_designing_hacks_post.png" width="100" height="100" alt="ie designing hacks post Top 5 Ultimate Internet Explorer Designing Hacks"  title="Top 5 Ultimate Internet Explorer Designing Hacks" /></a>
</p><p>Every Web Designer hates Internet explorer, I too hate Internet explorer for many reasons (especially IE6). HTML 5 and CSS3 are the most powerful techniques of creating a good design but IE can’t handle them. Few tricks can do some work to give a good look in Internet explorer. The hacks like creating rounded corners, embedding HTML5, text and box shadow, Opacity are been given here.<span id="more-1569"></span></p>
<div id="attachment_1578" class="wp-caption aligncenter" style="width: 514px">
	<a href="http://techcrank.com/wp-content/uploads/2010/03/Internet-explorer-hacks.jpg"><img class="size-full wp-image-1578" title="Internet Explorer hacks" src="http://techcrank.com/wp-content/uploads/2010/03/Internet-explorer-hacks.jpg" alt="Internet explorer hacks Top 5 Ultimate Internet Explorer Designing Hacks" width="514" height="268" /></a>
	<p class="wp-caption-text">Internet Explorer hacks</p>
</div>
<p>Here are few tweaks for Internet Explorer to make your Blog look on Internet explorer:</p>
<h2>HTML5 For IE</h2>
<p>HTML5 is very powerful, it is the major advancement of HTM: the core markup language of the World Wide Web. most of the browsers handle HTML 5 very good but for IE it can be pretty difficult. It simply ignores the markup. The <em>html5.js</em> can do the work for you. Embedding it can be pretty easy. You can hotlink/add the script anywhere in as shown in example below.</p>
<pre class="brush: plain; title: ; notranslate">
&lt;!--[if IE]&gt;
&lt;script src=&quot;http://html5shiv.googlecode.com/svn/trunk/html5.js&quot;&gt;&lt;/script&gt;
&lt;![endif]--&gt;
</pre>
<h2>Text Shadow In IE 6 With CSS</h2>
<p>Due to recent implementation of text shadow in Firefox 3.5, it has been in use by every web designer. But this doesn&#8217;t work with Internet Explorer. IE-only <em>filter</em> property can create <em>text-shadow</em> quite well. As filter isn’t a standard CSS property so it should be isolated from different codes.</p>
<p>Implementation of CSS shadow effect in IE can be done as below:</p>
<pre class="brush: plain; title: ; notranslate">
p.shadowed {
  text-shadow: #0000ff 0px 0px 3px; /* Modern browsers */
  filter: glow(color=#0000ff,strength=3); /* IE */
}
</pre>
<h2>CSS Box Shadow in Internet Explorer</h2>
<p>Box shadow can be done in IE with simple codes. It is the coolest trick for creating HTML elements without using alpha channel png images. Saves load time and makes looks very impressive. A real impressive look.</p>
<pre class="brush: plain; title: ; notranslate">
.shadowed{
    box-shadow: 10px 10px 5px #888;
}
</pre>
<p>But for IE you still can’t get the shadow with the above property. You will have to use <em>filter</em> proprietary property. To implement it, here’s what you have to do.</p>
<pre class="brush: plain; title: ; notranslate">
.shadowed {
    filter:
        progid:DXImageTransform.Microsoft.DropShadow(color=#969696, offx=1, offy=1)
        progid:DXImageTransform.Microsoft.DropShadow(color=#C2C2C2, offx=1, offy=1)
        progid:DXImageTransform.Microsoft.DropShadow(color=#EFEFEF, offx=1, offy=1);
}
</pre>
<h2>Rounded Corner’s in Internet Explorer</h2>
<p>Rounded corner’s is an way to get a good looking smooth corners. They are very popular in Web 2.0 because of its easy implementation without the use of images. For those who don’t know here’s an example-</p>
<pre class="brush: css; title: ; notranslate">
.round{
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
}
</pre>
<p>For IE rounded corners can be implemented by adding a JavaScript. DD roundies is a small JavaScript which can round HTML elements the way you need. The code can be explained as -</p>
<pre class="brush: plain; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;DD_roundies.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
  DD_roundies.addRule('.roundify', '10px');
&lt;/script&gt;
</pre>
<p>You can download the JS file from <a href="http://www.dillerdesign.com/experiment/DD_roundies/" rel="nofollow" target="_blank">here</a>.</p>
<h2>Opacity in Internet Explorer</h2>
<p>It is one of the coolest feature used by web designers. Again for IE opacity can be given by filter CSS property that can help to attain opacity. The example can be shown as-</p>
<pre class="brush: css; title: ; notranslate">
.element{
    opacity:.7; /* Standard CSS */
    filter:alpha(opacity=70); /* IE patch */
}
</pre>
<p>These are some of the cool hacks in Internet Explorer that can make your design compatible with IE. If you have any question’s feel free to comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrank.com/blogging/top-5-ultimate-internet-explorer-designing-hacks/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Every Windows Keyboard Shortcuts Covered- Tweak</title>
		<link>http://techcrank.com/os/every-windows-keyboard-shortcuts-covered-tweak/</link>
		<comments>http://techcrank.com/os/every-windows-keyboard-shortcuts-covered-tweak/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 07:56:29 +0000</pubDate>
		<dc:creator>Shubham</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://techcrank.com/?p=1485</guid>
		<description><![CDATA[Windows keyboard shortcuts are a very easy way to get your work done faster and also more efficient. If you are a windows user and has a lot of Windows usage then these shortcuts are on your list to check. Here is a list of more than 100+ keyboard shortcuts to make your life easier [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://techcrank.com/os/every-windows-keyboard-shortcuts-covered-tweak/" title="Permanent link to Every Windows Keyboard Shortcuts Covered- Tweak"><img class="post_image alignright" src="http://techcrank.com/wp-content/uploads/2010/03/windows-keyboard-shortcuts.jpg" width="192" height="222" alt="windows keyboard shortcuts Every Windows Keyboard Shortcuts Covered  Tweak"  title="Every Windows Keyboard Shortcuts Covered  Tweak" /></a>
</p><p>Windows keyboard shortcuts are a very easy way to get your work done faster and also more efficient. If you are a windows user and has a lot of Windows usage then these shortcuts are on your list to check. Here is a list of more than 100+ keyboard shortcuts to make your life easier and more faster.<span id="more-1485"></span></p>
<h3><span style="text-decoration: underline;">The General keyboard Commands Revised -</span></h3>
<p>CTRL+C (Copy)</p>
<p>CTRL+X (Cut)</p>
<p>CTRL+V (Paste)</p>
<p>CTRL+Z (Undo)</p>
<p>DELETE (Delete)</p>
<p>CTRL+INSERT (same as Copy Command)</p>
<p>SHIFT+INSERT (same as Paste command)</p>
<p>CTRL+ALT+DELETE (Opens Task Manager)</p>
<p>WINDOWS+TAB (switch between the open Windows)</p>
<p>SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)</p>
<p>CTRL while dragging an item (Copy the selected item)</p>
<p>CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)</p>
<p>F2 key (Rename the selected item)</p>
<p>CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)</p>
<p>CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)</p>
<p>CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)</p>
<p>CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)</p>
<p>CTRL+SHIFT with any of the arrow keys (Highlight a block of text)</p>
<p>SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)</p>
<p>CTRL+A (Select all)</p>
<p>CTRL+W (Close the Open Window)</p>
<p>F3 key (Search for a file or a folder)</p>
<p>ALT+ENTER (View the properties for the selected item)</p>
<p>ALT+F4 (Close the active item, or quit the active program)</p>
<p>ALT+ENTER (Display the properties of the selected object)</p>
<p>ALT+SPACEBAR (Open the shortcut menu for the active window)</p>
<p>CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)</p>
<p>ALT+TAB (Switch between the open items)</p>
<p>ALT+ESC (Cycle through items in the order that they had been opened)</p>
<p>F6 key (Cycle through the screen elements in a window or on the desktop)</p>
<p>F4 key (Display the Address bar list in My Computer or Windows Explorer)</p>
<p>SHIFT+F10 (Display the shortcut menu for the selected item)</p>
<p>ALT+SPACEBAR (Display the System menu for the active window)</p>
<p>CTRL+ESC (Display the Start menu)</p>
<p>ALT+Underlined letter in a menu name (Display the corresponding menu)</p>
<p>Underlined letter in a command name on an open menu (Perform the corresponding command)</p>
<p>F10 key (Activate the menu bar in the active program)</p>
<p>RIGHT ARROW (Open the next menu to the right, or open a submenu)</p>
<p>LEFT ARROW (Open the next menu to the left, or close a submenu)</p>
<p>F5 key (Update the active window)</p>
<p>BACKSPACE (View the folder one level up in My Computer or Windows Explorer)</p>
<p>ESC (Cancel the current task)</p>
<p>SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)</p>
<h3><span style="text-decoration: underline;">Microsoft Utility Keyboard Shortcuts-</span></h3>
<p>Windows Logo (Display or hide the Start menu)</p>
<p>Windows Logo+BREAK (Display the System Properties dialog box)</p>
<p>Windows Logo+D (Display the desktop)</p>
<p>Windows Logo+M (Minimize all of the windows)</p>
<p>Windows Logo+SHIFT+M (Restore the minimized windows)</p>
<p>Windows Logo+E (Open My Computer)</p>
<p>Windows Logo+F (Search for a file or a folder)</p>
<p>CTRL+Windows Logo+F (Search for computers)</p>
<p>Windows Logo+F1 (Display Windows Help)</p>
<p>Windows Logo+ L (Log Off The Computer)</p>
<p>Windows Logo+R (Open the Run dialog box)</p>
<p>Windows Logo+U (Open Utility Manager)</p>
<p>Windows logo+Break (open System Properties)</p>
<p>PRINT SCREEN SYSRQ Button (Takes a snapshot of open Window)</p>
<p>WINDOWS+R (open’s Run)</p>
<h3><span style="text-decoration: underline;">Dialog Box Keyboard Shortcuts-</span></h3>
<p>CTRL+TAB (Move forward through the tabs)</p>
<p>CTRL+SHIFT+TAB (Move backward through the tabs)</p>
<p>TAB (Move forward through the options)</p>
<p>SHIFT+TAB (Move backward through the options)</p>
<p>ALT+Underlined letter (Perform the corresponding command or select the corresponding option)</p>
<p>ENTER (Perform the command for the active option or button)</p>
<p>SPACEBAR (Select or clear the check box if the active option is a check box)</p>
<p>Arrow keys (Select a button if the active option is a group of option buttons)</p>
<p>F1 key (Display Help)</p>
<p>F4 key (Display the items in the active list)</p>
<p>BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)</p>
<h3><span style="text-decoration: underline;">Accessibility Keyboard Shortcuts -</span></h3>
<p>Right SHIFT for eight seconds (Switch FilterKeys either on or off)</p>
<p>Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)</p>
<p>Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)</p>
<p>SHIFT five times (Switch the StickyKeys either on or off)</p>
<p>NUM LOCK for five seconds (Switch the ToggleKeys either on or off)</p>
<p>Windows Logo +U (Open Utility Manager)</p>
<h3><span style="text-decoration: underline;">Windows Explorer Keyboard Shortcuts -</span></h3>
<p>END (Display the bottom of the active window)</p>
<p>HOME (Display the top of the active window)</p>
<p>NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)</p>
<p>NUM LOCK+Plus sign (+) (Display the contents of the selected folder)</p>
<p>NUM LOCK+Minus sign (-) (Collapse the selected folder)</p>
<p>LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)</p>
<p>RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)</p>
<h3><span style="text-decoration: underline;">Internet Explorer Keyboard Shortcuts-</span></h3>
<p>CTRL+B (Open the Organize Favorites dialog box)</p>
<p>CTRL+E (Open the Search bar)</p>
<p>CTRL+F (Start the Find utility)</p>
<p>CTRL+H (Open the History bar)</p>
<p>CTRL+I (Open the Favorites bar)</p>
<p>CTRL+L (Open the Open dialog box)</p>
<p>CTRL+N (Start another instance of the browser with the same Web address)</p>
<p>CTRL+O (Open the Open dialog box, the same as CTRL+L)</p>
<p>CTRL+P (Open the Print dialog box)</p>
<p>CTRL+R (Update the current Web page)</p>
<p>CTRL+W (Close the current window)</p>
<p>ALT+D (Select the Address Bar)</p>
<p>CTRL+SHIFT+PLUS (Resizes the Page)</p>
<p>CTRL+ENTER (open’s a quick .com URL)</p>
<h3><span style="text-decoration: underline;">Remote Desktop Keyboard Shortcuts-</span></h3>
<p>CTRL+ALT+END (Open the m*cro$oft Windows NT Security dialog box)</p>
<p>ALT+PAGE UP (Switch between programs from left to right)</p>
<p>ALT+PAGE DOWN (Switch between programs from right to left)</p>
<p>ALT+INSERT (Cycle through the programs in most recently used order)</p>
<p>ALT+HOME (Display the Start menu)</p>
<p>CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)</p>
<p>ALT+DELETE (Display the Windows menu)</p>
<p>CTRL+ALT+Minus sign (-) (Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer.)</p>
<p>CTRL+ALT+Plus sign (+) (Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer.)</p>
<h3><span style="text-decoration: underline;">Main Window Keyboard Shortcuts (Microsoft Management Console (MMC))-</span></h3>
<p>CTRL+O (Open a saved console)</p>
<p>CTRL+N (Open a new console)</p>
<p>CTRL+S (Save the open console)</p>
<p>CTRL+M (Add or remove a console item)</p>
<p>CTRL+W (Open a new window)</p>
<p>F5 key (Update the content of all console windows)</p>
<p>ALT+SPACEBAR (Display the MMC window menu)</p>
<p>ALT+F4 (Close the console)</p>
<p>ALT+A (Display the Action menu)</p>
<p>ALT+V (Display the View menu)</p>
<p>ALT+F (Display the File menu)</p>
<p>ALT+O (Display the Favorites menu)</p>
<h3><span style="text-decoration: underline;">Character Map keyboard Shortcuts-</span></h3>
<p>After you double-click a character on the grid of characters, you can move through the grid by using the keyboard shortcuts:</p>
<p>RIGHT ARROW (Move to the right or to the beginning of the next line)</p>
<p>LEFT ARROW (Move to the left or to the end of the previous line)</p>
<p>UP ARROW (Move up one row)</p>
<p>DOWN ARROW (Move down one row)</p>
<p>PAGE UP (Move up one screen at a time)</p>
<p>PAGE DOWN (Move down one screen at a time)</p>
<p>HOME (Move to the beginning of the line)</p>
<p>END (Move to the end of the line)</p>
<p>CTRL+HOME (Move to the first character)</p>
<p>CTRL+END (Move to the last character)</p>
<p>SPACEBAR (Switch between Enlarged and Nor mal mode when a character is selected)</p>
<p><em><strong>If there is any nifty shortcut that I just might have missed, just add your comment.</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://techcrank.com/os/every-windows-keyboard-shortcuts-covered-tweak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Windows 7 Firewall : Security</title>
		<link>http://techcrank.com/os/windows/configuring-windows-7-firewall-security/</link>
		<comments>http://techcrank.com/os/windows/configuring-windows-7-firewall-security/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 08:27:28 +0000</pubDate>
		<dc:creator>Shubham</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://techcrank.com/?p=976</guid>
		<description><![CDATA[Configuring Windows 7 firewall to prevent your computers from any malicious software. Tweak your Firewall and make your data safe. Windows 7 add some exceptions on its own but others have to be done manually. A step by step guide will show you how to configure Windows 7 Firewall.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://techcrank.com/os/windows/configuring-windows-7-firewall-security/" title="Permanent link to Configuring Windows 7 Firewall : Security"><img class="post_image alignright" src="http://techcrank.com/wp-content/uploads/2009/12/configure_win7_firewall_post.png" width="100" height="100" alt="configure win7 firewall post Configuring Windows 7 Firewall : Security"  title="Configuring Windows 7 Firewall : Security" /></a>
</p><div id="attachment_978" class="wp-caption aligncenter" style="width: 645px">
	<img class="size-full wp-image-978" title="configuire windows 7 firewall" src="http://techcrank.com/wp-content/uploads/2009/12/configuire-windows-7-firewall.jpg" alt="configuire windows 7 firewall Configuring Windows 7 Firewall : Security" width="645" height="130" />
	<p class="wp-caption-text">Are you secured?</p>
</div>
<p>Configuring Windows 7 firewall to prevent your computers from any malicious software. Tweak your Firewall and make your data safe.<span id="more-976"></span></p>
<p>Windows 7 add some exceptions on its own but others have to be done manually. A step by step guide will show you how to configure Windows 7 Firewall -</p>
<p>1. Open Start to open start menu and click on the control panel to open it.</p>
<p>2.Control Panel Windows open up now go to System and Security and open Windows Firewall.</p>
<p>3. Clicking on Windows Firewall opens a new window.</p>
<p>On the <strong>left pane</strong>, you can see various options like, <strong>Allow a program or Feature through Windows Firewal</strong><strong>l</strong><strong>,</strong> <strong>Change notification settings, Turn Windows Firewall on or off, Restore defaults and Advanced settings</strong> etc.</p>
<p>On the right pane, you will see two types of network which you can configure. They are <strong>Home or Work (Private) networks </strong>and <strong>Public networks.</strong></p>
<p>By default the firewall is protecting both the networks.</p>
<p>4. Open <strong>Allow a program or Feature through Windows Firewall</strong>. Now a list will open. Check the list and block the access to untrusted applications which you are not sure is helpfull to you.</p>
<p>Have any problems or something to share, do comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrank.com/os/windows/configuring-windows-7-firewall-security/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Windows 7 From Pen Drive</title>
		<link>http://techcrank.com/os/windows/installing-windows-7-from-pen-drive/</link>
		<comments>http://techcrank.com/os/windows/installing-windows-7-from-pen-drive/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 13:12:43 +0000</pubDate>
		<dc:creator>Shubham</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[USB drive]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://techcrank.com/?p=928</guid>
		<description><![CDATA[Ever thought of installing Windows 7 with a USB drive? This makes your work more simpler and easier. Use a pen drive to install Windows to your computers and keep your Windows disks protected. Installing Windows 7 from a pen drive can keep your disks secured and apparently saves installation time.Some Tablet PC don&#8217;t have [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://techcrank.com/os/windows/installing-windows-7-from-pen-drive/" title="Permanent link to Installing Windows 7 From Pen Drive"><img class="post_image alignright" src="http://techcrank.com/wp-content/uploads/2009/11/install_windows7_pendrive_post.png" width="100" height="100" alt="install windows7 pendrive post Installing Windows 7 From Pen Drive"  title="Installing Windows 7 From Pen Drive" /></a>
</p><div id="attachment_942" class="wp-caption aligncenter" style="width: 645px">
	<img class="size-full wp-image-942" title="Installing Windows With a USB" src="http://techcrank.com/wp-content/uploads/2009/11/installing-Windows-With-a-USB.jpg" alt="installing Windows With a USB Installing Windows 7 From Pen Drive" width="645" height="130" />
	<p class="wp-caption-text">Installing Windows With a USB</p>
</div>
<p>Ever thought of installing Windows 7 with a USB drive? This makes your work more simpler and easier. Use a pen drive to install Windows to your computers and keep your Windows disks protected.<span id="more-928"></span></p>
<p>Installing Windows 7 from a pen drive can keep your disks secured and apparently saves installation time.Some Tablet PC don&#8217;t have optical drive so you might think that how to install the new Windows 7 on it? The answer is your pen drive.</p>
<p>The step by step process will help you to install the rocking new Windows operating system in no time.</p>
<p><em>Note: The Guide only works for Windows 7 and Windows Vista Installation&#8217;s.</em></p>
<p>Use a minimum 4GB USB drive to make it a bootable disk.</p>
<p>1. <strong>Formatting Your USB drive</strong>-</p>
<p>Plug in your USB drive and backup all your existing data to some other media&#8217;s or drive. You need to format your USB key before you can make it bootable device.</p>
<p>Open command prompt in Windows with Administrative right. Now type &#8220;<strong>diskpart</strong>&#8221; in your command prompt(if it gives an error, go to c:\Windows\system32 and then type it).</p>
<p><img class="aligncenter size-full wp-image-932" title="Run as Administrator" src="http://techcrank.com/wp-content/uploads/2009/11/snap016.jpg" alt="snap016 Installing Windows 7 From Pen Drive" width="405" height="539" /></p>
<p><img class="aligncenter size-full wp-image-931" title="Diskpart Tool" src="http://techcrank.com/wp-content/uploads/2009/11/snap010_sm.jpg" alt="snap010 sm Installing Windows 7 From Pen Drive" width="400" height="201" />The command will open the disk Partition command line tool.</p>
<p>Type &#8220;<strong>list disk</strong>&#8221; to get the list of all active disks, each of them are associated with a number. Make a note which one is your USB drive(here i have a 8GB USB disk).</p>
<p>Now type the Following codes stepwise:</p>
<p><img class="aligncenter size-full wp-image-937" title="snap012_sm" src="http://techcrank.com/wp-content/uploads/2009/11/snap012_sm.jpg" alt="snap012 sm Installing Windows 7 From Pen Drive" width="415" height="311" /></p>
<p><strong>&#8220;Select Disk #&#8221;</strong> (where # is the number of your USB drive).</p>
<p><strong>&#8220;Clean&#8221;</strong> to remove any existing files on your USB key.</p>
<p><strong>&#8220;Create Partition Primary</strong>&#8221; it creates a partition with default parameters).</p>
<p>&#8220;<strong>Select Partition 1</strong>&#8221; focus on the newly created partition.</p>
<p>&#8220;<strong>Active</strong>&#8221; (It sets the in-focus partition to active, informing the disk firmware that this is a valid system partition).</p>
<p>&#8220;<strong>Format FS=NTFS</strong>&#8221; (It formats the partition to NTFS format).</p>
<p>&#8220;<strong>Assign </strong>&#8221; Assigns a drive letter to USB Disk, in my case I was assigned &#8220;<strong>L</strong>&#8220;.</p>
<p>&#8220;<strong>Exit</strong>&#8221; closes the partition tool.</p>
<p>2. <strong>Now turning the USB key into Bootable</strong>-</p>
<p>Now insert the windows 7 DVD and copy all the files to your desktop or any other location. Incase you have an ISO extract it to a folder. I have copied it to a desktop folder( path of the folder C:\Users\USERNAMEHERE\Desktop\Windows 7\).</p>
<p>Open the command prompt and type the following code:</p>
<p>Navigate to C:\Users\USERNAMEHERE\Desktop\Windows 7 or to the location where you have placed Windows 7 Setup files.</p>
<p><strong>&#8220;CD Boot&#8221;</strong> (This gets you into the “boot” directory).</p>
<p><img class="aligncenter size-full wp-image-938" title="windows 7" src="http://techcrank.com/wp-content/uploads/2009/11/windows-7.jpg" alt="windows 7 Installing Windows 7 From Pen Drive" width="562" height="281" />&#8220;<strong>Bootsect.exe /nt60 L:</strong>&#8221; (where L is the drive letter assigned to the USB drive, replace L with your drive letter).</p>
<p>This command infuses boot manager compatible code into your pen drive.</p>
<p>Now close the command prompt.</p>
<p>3.<strong> Copying Windows 7 Files into your USB drive</strong>-</p>
<p>Copy all the files of Windows 7 from the extracted ISO file or the folder you copied the files of Windows 7 into your pen drive.</p>
<p><img class="aligncenter size-full wp-image-940" title="bios_usb" src="http://techcrank.com/wp-content/uploads/2009/11/bios_usb.jpg" alt="bios usb Installing Windows 7 From Pen Drive" width="372" height="279" />Your USB Key is ready to go! Restart the PC and select the boot device priority form the BIOS (genrally opened by pressing F2 during the startup) to USB drive.</p>
<p><strong><em>If you have any problems or loved this do comment.</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techcrank.com/os/windows/installing-windows-7-from-pen-drive/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>12 Windows 7 Secret Keyboard Shortcuts</title>
		<link>http://techcrank.com/os/12-windows-7-secret-keyboard-shortcuts/</link>
		<comments>http://techcrank.com/os/12-windows-7-secret-keyboard-shortcuts/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 20:40:46 +0000</pubDate>
		<dc:creator>Shubham</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://techcrank.com/?p=899</guid>
		<description><![CDATA[The 12 Windows 7 Secret Keyboard Shortcut you need to know. It has been a while when Windows 7 has been released and the response is very good. It beats the previous sale of Windows Vista by 232%(That&#8217;s really huge). I am using it for a while and found that Windows has packed it with [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://techcrank.com/os/12-windows-7-secret-keyboard-shortcuts/" title="Permanent link to 12 Windows 7 Secret Keyboard Shortcuts"><img class="post_image alignright" src="http://techcrank.com/wp-content/uploads/2009/11/keyboard_shortcuts_post.png" width="100" height="100" alt="keyboard shortcuts post 12 Windows 7 Secret Keyboard Shortcuts"  title="12 Windows 7 Secret Keyboard Shortcuts" /></a>
</p><div id="attachment_923" class="wp-caption aligncenter" style="width: 645px">
	<img class="size-full wp-image-923" title="Windows 7 Keyboard Secrets" src="http://techcrank.com/wp-content/uploads/2009/11/Windows-7-Keyboard-Secrets.jpg" alt="Windows 7 Keyboard Secrets 12 Windows 7 Secret Keyboard Shortcuts" width="645" height="130" />
	<p class="wp-caption-text">Windows 7 Keyboard Secrets</p>
</div>
<p>The 12 Windows 7 Secret Keyboard Shortcut you need to know. It has been a while when Windows 7 has been released and the response is very good. It beats the previous sale of Windows Vista by 232%(That&#8217;s really huge).<span id="more-899"></span></p>
<p>I am using it for a while and found that Windows has packed it with hidden features that can make your experience even better. Here are the top 10 windows secrets to make yor work even simpler and better.</p>
<h2><strong>Keyboard Shortcuts:</strong></h2>
<p>1.Lets kick off with keyboard shortcuts- every user must get familiar with the new keyboard shortcuts as they save time and leave your mouse with jealous and neglect.</p>
<p><strong>ALT + P</strong></p>
<div id="attachment_901" class="wp-caption aligncenter" style="width: 301px">
	<img class="size-medium wp-image-901" title="Alt + P preview pannel" src="http://techcrank.com/wp-content/uploads/2009/11/Alt-+-P-preview-pannel-300x226.png" alt="Alt + P preview pannel 300x226 12 Windows 7 Secret Keyboard Shortcuts" width="301" height="226" />
	<p class="wp-caption-text">Alt + P preview pannel</p>
</div>
<p>In windows explorer activate a new file preview pannel, it just enables<strong> </strong>user to have a preview of file he has just selected.<strong> </strong></p>
<p><strong>Windows ++ (Plus key)</strong></p>
<p><strong>Windows +- (Minus Key)</strong></p>
<p><img class="aligncenter size-full wp-image-905" title="magnifier1_sm" src="http://techcrank.com/wp-content/uploads/2009/11/magnifier1_sm.jpg" alt="magnifier1 sm 12 Windows 7 Secret Keyboard Shortcuts" width="415" height="259" /><img class="aligncenter size-full wp-image-904" title="magnifier" src="http://techcrank.com/wp-content/uploads/2009/11/magnifier.jpg" alt="magnifier 12 Windows 7 Secret Keyboard Shortcuts" width="352" height="302" />Pressing the keys lets you open the windows magnifier which lets you open the magnifier. You can also open the rectangular magnifier. Keeping the Windows ++ long pressed will give you smooth a zoom in.</p>
<p><strong>Windows + Up (key)<br />
</strong></p>
<p><strong>Windows + Down (key)<br />
</strong></p>
<p>If a window is not maximized pressing Windows + Up will make it fit the screen and Windows + Down will minimized it down. Using Windows + Up won&#8217;t let you get in former state if your window is minimized.</p>
<p><strong>Windows + shift + Up</strong></p>
<div id="attachment_907" class="wp-caption aligncenter" style="width: 404px">
	<img class="size-full wp-image-907" title="maximized Window" src="http://techcrank.com/wp-content/uploads/2009/11/maximized-Window.jpg" alt="maximized Window 12 Windows 7 Secret Keyboard Shortcuts" width="404" height="306" />
	<p class="wp-caption-text">Windows + Shift + Up</p>
</div>
<p>Similar to the shortcut above this shortcut will make your window maximize to the maximum height, it makes no change in the width. <strong> </strong></p>
<h3>Windows + Left</h3>
<h3>Windows + Right</h3>
<p><img class="aligncenter size-medium wp-image-912" title="windows + right" src="http://techcrank.com/wp-content/uploads/2009/11/windows-+-right-300x225.png" alt="windows + right 300x225 12 Windows 7 Secret Keyboard Shortcuts" width="300" height="225" /><img class="aligncenter size-medium wp-image-913" title="windows + left" src="http://techcrank.com/wp-content/uploads/2009/11/windows-+-left1-300x225.png" alt="windows + left1 300x225 12 Windows 7 Secret Keyboard Shortcuts" width="300" height="225" />The Windows + right and Windows + left key press will cascade the window into right and left hand side as shown above.</p>
<p><strong>Windows + Home</strong></p>
<p>The function of Windows + Home button is to minimize all the Windows running in background and to keep open the selected window. Pressing it again will do it back.</p>
<h3>Windows + E</h3>
<div id="attachment_915" class="wp-caption aligncenter" style="width: 300px">
	<img class="size-medium wp-image-915" title="Window + E" src="http://techcrank.com/wp-content/uploads/2009/11/Window-+-E-300x225.jpg" alt="Window + E 300x225 12 Windows 7 Secret Keyboard Shortcuts" width="300" height="225" />
	<p class="wp-caption-text">Windows + E</p>
</div>
<p>The function of Windows + E is to open the explorer Window.</p>
<h3>Windows + P</h3>
<p>It lets you toggle between the different monitor or projector. The computer only, projector only mode.</p>
<p><strong>Windows + Shift + left</strong></p>
<p><strong>Windows + shift + right</strong></p>
<p><img class="aligncenter size-medium wp-image-916" title="winp_sm" src="http://techcrank.com/wp-content/uploads/2009/11/winp_sm-300x187.jpg" alt="winp sm 300x187 12 Windows 7 Secret Keyboard Shortcuts" width="300" height="187" />This will let you switch between different monitors or screens. Swith to the projector, or any other monitor.</p>
<p><strong>Windows + [Number]</strong></p>
<p>The key combination of Windows will<strong> </strong>launch diffrent applications in your taskbar. For Example if you have Internet Explorer at the first place in your taskbar, Windows + 1 will open the application for you.</p>
<p><strong>Windows + T</strong></p>
<div id="attachment_917" class="wp-caption aligncenter" style="width: 300px">
	<img class="size-medium wp-image-917" title="Windows + T" src="http://techcrank.com/wp-content/uploads/2009/11/windows-+-T-300x225.png" alt="windows + T 300x225 12 Windows 7 Secret Keyboard Shortcuts" width="300" height="225" />
	<p class="wp-caption-text">Windows + T</p>
</div>
<p>IT will open a small prievew of applications opened in Windows. It open a small preview in taskbar.</p>
<h3>Ctrl + Shift + Click</h3>
<p>Hold down Ctrl + Shift while launching your Application and it will run in full administrative rights.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrank.com/os/12-windows-7-secret-keyboard-shortcuts/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>6 Best Windows 7 Cleaning Utilites</title>
		<link>http://techcrank.com/os/windows/6-best-windows-7-cleaning-utilites/</link>
		<comments>http://techcrank.com/os/windows/6-best-windows-7-cleaning-utilites/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 20:33:19 +0000</pubDate>
		<dc:creator>Aditya</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://techcrank.com/?p=793</guid>
		<description><![CDATA[The best registry tools for Windows 7, speed up your Windows in just seconds. The tools can fix any errors in the database. An error free Windows 7. They also clean unnecessary files, optimizing and tweaking Windows 7. 1. Super Utilities Pro: This utility software with its latest version has 27 pre built tools that [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://techcrank.com/os/windows/6-best-windows-7-cleaning-utilites/" title="Permanent link to 6 Best Windows 7 Cleaning Utilites"><img class="post_image alignright" src="http://techcrank.com/wp-content/uploads/2009/11/best_system_cleanup_utilities_post.png" width="100" height="100" alt="best system cleanup utilities post 6 Best Windows 7 Cleaning Utilites"  title="6 Best Windows 7 Cleaning Utilites" /></a>
</p><div id="attachment_825" class="wp-caption aligncenter" style="width: 645px">
	<img class="size-full wp-image-825" title="Windows 7 Cleaning Tools" src="http://techcrank.com/wp-content/uploads/2009/11/windows7-cleaning-tools.jpg" alt="windows7 cleaning tools 6 Best Windows 7 Cleaning Utilites" width="645" height="130" />
	<p class="wp-caption-text">Windows 7 Cleaning Tools</p>
</div>
<p>The best registry tools for Windows 7, speed up your Windows in just seconds. The tools can fix any errors in the database. An error free Windows 7. They also clean unnecessary files, <span id="main" style="visibility: visible;"><span id="search" style="visibility: visible;">optimizing and tweaking <em>Windows 7</em></span></span>. <span id="more-793"></span></p>
<div id="attachment_795" class="wp-caption alignleft" style="width: 121px">
	<img class="size-full wp-image-795" title="Super Utilities Pro" src="http://techcrank.com/wp-content/uploads/2009/11/Super-Utilities-Pro.jpg" alt="Super Utilities Pro 6 Best Windows 7 Cleaning Utilites" width="121" height="162" />
	<p class="wp-caption-text">Super Utilities Pro</p>
</div>
<div id="attachment_799" class="wp-caption alignleft" style="width: 117px">
	<img class="size-full wp-image-799" title="CleanMyPC" src="http://techcrank.com/wp-content/uploads/2009/11/CleanMyPC.jpg" alt="CleanMyPC 6 Best Windows 7 Cleaning Utilites" width="117" height="167" />
	<p class="wp-caption-text">CleanMyPC</p>
</div>
<div id="attachment_803" class="wp-caption alignleft" style="width: 116px">
	<img class="size-full wp-image-803" title="ccleaner" src="http://techcrank.com/wp-content/uploads/2009/11/ccleaner.gif" alt="ccleaner 6 Best Windows 7 Cleaning Utilites" width="116" height="164" />
	<p class="wp-caption-text">CCleaner</p>
</div>
<div id="attachment_801" class="wp-caption alignleft" style="width: 135px">
	<img class="size-full wp-image-801" title="regMech" src="http://techcrank.com/wp-content/uploads/2009/11/regMech.JPG" alt=" 6 Best Windows 7 Cleaning Utilites" width="135" height="171" />
	<p class="wp-caption-text">Registry Mechanic</p>
</div>
<div id="attachment_802" class="wp-caption alignleft" style="width: 128px">
	<strong><strong><img class="size-full wp-image-802" title="tuneup" src="http://techcrank.com/wp-content/uploads/2009/11/tuneup.jpeg" alt=" 6 Best Windows 7 Cleaning Utilites" width="128" height="152" /></strong></strong>
	<p class="wp-caption-text">Tune Up</p>
</div>
<div id="attachment_800" class="wp-caption alignleft" style="width: 140px">
	<strong><strong><strong><strong><img class="size-full wp-image-800" title="regEasy" src="http://techcrank.com/wp-content/uploads/2009/11/regEasy.jpg" alt="regEasy 6 Best Windows 7 Cleaning Utilites" width="140" height="153" /></strong></strong></strong></strong>
	<p class="wp-caption-text">RegEasy</p>
</div>
<p><strong><strong> </strong></strong><strong>1. Super Utilities Pro:</strong></p>
<p>This utility software with its latest version has 27 pre built tools that helps cleaning your PC and increasing its overall performance. It has four utility suits for different operations on registries and cleaning etc. The four utilities suits are as follows:</p>
<p>a) System Cleaner</p>
<p>b) System Protector</p>
<p>c) System Maintenance</p>
<p>d) Special Utilities</p>
<p><strong>2. Clean My PC Registry Cleaner:</strong></p>
<p>This software utility is basically for fixing the registry entries of windows. It can backup the whole registry of windows making it safe to work without the worries of registry crashes or failures. It has a startup and a BHO organizer feature which lets you manage your startup and IE BHO items very easily and productively and also lets user control programs started with windows or Internet Explorer.</p>
<p>The utility is a freeware and can be downloaded from the official website regitery-cleaner.net.</p>
<p><strong>3. CCleaner:</strong></p>
<p>CCleaner is one of my personal favorite system utility software. It cleans up all unused data on your system and temporary files that fills up the system and are usually are of no use. It also fixes the registry problems on your PC making the system work faster and in a more efficient way. Besides saving a good amount of space it also clears any traces of any online activity by clearing the cache and cookies.</p>
<p>The software utility is freeware and can be downloaded from its website.</p>
<p><strong>4. Registry Mechanic:</strong></p>
<p>It’s a highly effective software which is built with a strong coding that fixes even the slightest changes in the registry. It detects the missing or invalid registry references that crawl up while working on various software’s  and fixes them. This software is a must have for experts in the field of information technology for dealing with day to day issues. This utility is not a freeware and has to be purchased on its website.</p>
<p><strong>5. Tune Up:</strong></p>
<p>One of the world’s best preferred utility software has now more features than ever. The utility can not only fix the problems on your PC but can also customize its look and feel. It can change the configuration of windows according to your needs. It can fix registry issues and does other works like system maintenance, scheduled checking and system cleaning.</p>
<p>The newest version has a Turbo Mode which disables the unneeded processes has focuses the system memory on the processes at hand. Along with it, there is a Live Optimization system which regularly checks if some programs are consuming memory than usual and prohibits their further consumption making the system speeds considerably faster. The latest version is TuneUp 2010 and can be purchased or downloaded (trial version 30 days) from its official website.</p>
<p><strong>6. Registry Easy:</strong></p>
<p>It’s a simple software which has a very less memory consumption and still can work very effectively. It’s a utility that can work great on low-end PC’s. Scanning and cleaning is done very easily with the help of this utility.</p>
<p>Along with the cleaning features, it can also backup the data of registry and sets system checkpoints regularly in case of a future system crash or software failure. It also has a system optimization utility which helps the user to set the performance of the PC to his or her needs.</p>
<p>This utility is not a freeware. However trail version can be downloaded from the official website which has limited scan activities and is not limited to a few days.</p>
<p><strong><em>If you have something to share, do comment.</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techcrank.com/os/windows/6-best-windows-7-cleaning-utilites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Should You Switch To Windows 7</title>
		<link>http://techcrank.com/news/should-you-switch-to-windows-7/</link>
		<comments>http://techcrank.com/news/should-you-switch-to-windows-7/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 18:53:13 +0000</pubDate>
		<dc:creator>Shubham</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[switch to windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://techcrank.com/?p=338</guid>
		<description><![CDATA[Windows is out in stores, now the question is should you switch to windows 7? Two days ago on 22nd Oct windows launched its most awaited windows 7. Now Do you need a upgrade? or Is windows 7 really something that you should get your hands on? Windows 7 is the new operating system after [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://techcrank.com/news/should-you-switch-to-windows-7/" title="Permanent link to Should You Switch To Windows 7"><img class="post_image alignright" src="http://techcrank.com/wp-content/uploads/2009/10/switch_to_windows_7.png" width="100" height="100" alt="switch to windows 7 Should You Switch To Windows 7"  title="Should You Switch To Windows 7" /></a>
</p><div id="attachment_341" class="wp-caption aligncenter" style="width: 645px">
	<img class="size-full wp-image-341" title="Do you need a Upgrade?" src="http://techcrank.com/wp-content/uploads/2009/10/thums8.jpg" alt="thums8 Should You Switch To Windows 7" width="645" height="130" />
	<p class="wp-caption-text">Do you need a Upgrade?</p>
</div>
<p>Windows is out in stores, now the question is should you switch to windows 7? Two days ago on 22nd Oct windows launched its most awaited windows 7. Now Do you need a upgrade? or Is windows 7 really something that you should get your hands on?<span id="more-338"></span></p>
<p>Windows 7 is the new operating system after Windows Vista, Microsoft has worked hard on the complains in Vista. We will check out the new and improved features of Windows Vista nd will decide whether to upgrade it or not. Top 5 things are reviewed:</p>
<p>1. <strong>Look and Feel</strong>- Like the Windows Vista, Windows 7 too has Aero effects, 3D-Flip and transparency effects. The new Windows is much sexier and smooth and more glossy, windows has really worked on the looks. The taskbar looks amazing, it displays icons of open applications. The taskbar can be seen below.</p>
<div id="attachment_339" class="wp-caption aligncenter" style="width: 645px">
	<img class="size-full wp-image-339" title="Windows 7 Taskbar" src="http://techcrank.com/wp-content/uploads/2009/10/thums7.jpg" alt="thums7 Should You Switch To Windows 7" width="645" height="130" />
	<p class="wp-caption-text">Windows 7 Taskbar</p>
</div>
<p>You can see the preview of the taskbar in the image above. Its pretty cool, you can see the previews of open applications just by hovering your mouse over them, just like vista. Here applications have icon, no name or stuff like it used to be in Vista or XP. Another feature is Aero Snap, it resize windows and fit them on available space.</p>
<div id="attachment_343" class="wp-caption aligncenter" style="width: 645px">
	<img class="size-full wp-image-343" title="Boot Up Screen" src="http://techcrank.com/wp-content/uploads/2009/10/thums9.jpg" alt="thums9 Should You Switch To Windows 7" width="645" height="130" />
	<p class="wp-caption-text">Boot Up Screen</p>
</div>
<p><strong>Booting Time</strong>- I was using the candidate release of Windows 7 since past few months and i must admit it that windows 7 has a pretty less booting time than any other operation system, whether it may be Vista, XP or even Mac OS X. The Windows team has worked on the booting time. Its really good.</p>
<p><strong>Speed and Requirements</strong>- The windows 7 requires the same amount of everything that Windows Vista requires. The benefit in using Windows 7 is that it runs faster and smoother than Vista. I love the speed, it does not hangs like the Vista. Although you need a good requirement to run Windows 7.</p>
<p><strong>Compatibility</strong>: Well Windows 7 supports all the programs that you use in Windows XP. Earlier version Windows Vista has many application related issues. Windows 7 is coded such that it runs every peice of software which runs on Windows XP but in rare case if it doesn&#8217;t, you can use the virtual XP mode in it. So for XP lovers its a good news.</p>
<p><img class="aligncenter size-full wp-image-345" title="Piracy" src="http://techcrank.com/wp-content/uploads/2009/10/thums10.jpg" alt="thums10 Should You Switch To Windows 7" width="645" height="130" /><strong>Piracy</strong>: It is always been tough to be a pirate, if you are a genuine buyer you don&#8217;t have to face many problems. But Windows 7 seems to be the home of pirates. You can use all your downloaded Video&#8217;s and Audio&#8217;s to display on TV, you just need a Wi-Fi enabled TV or Gadget. You don&#8217;t need any software or tool to display media over TV&#8217;s or Gadgets.</p>
<p><img class="aligncenter size-full wp-image-348" title="Upcoming Support" src="http://techcrank.com/wp-content/uploads/2009/10/thums11.jpg" alt="thums11 Should You Switch To Windows 7" width="645" height="130" /><strong>Upcoming Support</strong>: Technology evolves faster, the Windows 7 is designed to work awesome with the new hardware&#8217;s and software&#8217;s. If 2009 will be the era of multi-touch screens and tablet PC&#8217;s, Windows 7 will be the best OS. It include the multi-touch feature. If you talk about processor Windows 7 will scale upto 256 processors. Wow, thats more than enough. The new 7 is ready for the future of computing.<br />
<object width="645" height="350" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ssOq02DTTMU&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed width="645" height="350" type="application/x-shockwave-flash" src="http://www.youtube.com/v/ssOq02DTTMU&amp;hl=en&amp;fs=1&amp;" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>On Overall Basis Windows 7 is a must upgrade, Words aren’t enough. You gotta try the OS to get the look and feel. Have a upgrade today rather feeling good about it later.</p>
]]></content:encoded>
			<wfw:commentRss>http://techcrank.com/news/should-you-switch-to-windows-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

