<?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>WinTechGeek</title>
	<atom:link href="http://www.wintechgeek.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wintechgeek.com</link>
	<description>Being a Windows Geek</description>
	<lastBuildDate>Fri, 26 Apr 2013 17:00:41 +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>Automating Things with Batch Files &#8211; They Work on Today&#8217;s Computers Too!</title>
		<link>http://www.wintechgeek.com/batch-and-vbsripting/automating-things-with-batch-files-they-work-on-todays-computers-too/</link>
		<comments>http://www.wintechgeek.com/batch-and-vbsripting/automating-things-with-batch-files-they-work-on-todays-computers-too/#comments</comments>
		<pubDate>Sun, 06 May 2012 21:10:50 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Batch and VBSripting]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/?p=1452</guid>
		<description><![CDATA[If you&#8217;re familiar with MS-DOS at all, you&#8217;ll recall that it&#8217;s a command-driven operating system that performs functions issued at the C:&#62; prompt. The only way to get an MS-DOS computer to do something was to type a command at this prompt and if you can imagine, it was a rather cumbersome way to use [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re familiar with MS-DOS at all, you&#8217;ll recall that it&#8217;s a command-driven operating system that performs functions issued at the C:&gt; prompt. The only way to get an MS-DOS computer to do something was to type a command at this prompt and if you can imagine, it was a rather cumbersome way to use a computer.</p>
<p>As an example, to load up Microsoft&#8217;s simple editing program, you had to type the name of the drive that the program was on, the directory that the program was in, and then the name of the program. So if Microsoft Edit was in a directory or folder named &#8220;Process,&#8221; you could start the program by typing, &#8220;C:&gt;process\edit.com&#8221; Then, and only then would the program load up for use.</p>
<p>This is a small command, but just imagine if you had a program that was deeply nested within a series of folder. You could end up typing a command as wide as your computer screen or worse, long enough that the entire command would have to wrap onto the next line! Now imagine having to type these long commands every time that you wanted to start a program. Yikes!</p>
<p>That&#8217;s one of the reasons why batch files became so popular. Batch files are small text-based documents that contain a bunch of these commands on their own lines. When executed, they would process each command without the user having to type each and every one of them.</p>
<p>When Windows was developed, the need for typing commands was essentially eradicated thanks to the introduction of the point-and-click (mouse) interface. But this didn&#8217;t stop the batch file fever that started under MS-DOS &#8211; and in some small circles, batch files are still as popular as they were in the beginning.</p>
<p>Even though you may use Windows XP or Vista, batch files can save you tons of time by automatically starting multiple programs and performing different tasks at the single click of a button. They don&#8217;t require any extensive programming background and they don&#8217;t need to be encrypted with some weird, expensive compiler. Batch files are plain text files, and you can build one for your own personal use with Windows&#8217; Notepad.</p>
<p>You could make a batch file that loads up your favorite websites at once for example, or you could make a batch file that fills your desktop with the most important applications for the day. To do so only requires a little knowledge about the locations of these applications.</p>
<p>Let&#8217;s say that every day we need to load up the Yahoo web browser, Microsoft Word, and then the calculator that comes with Windows. Instead of doing this by hand, we could write a batch file to do it for us.</p>
<p>First, we&#8217;d load up Notepad and type in the following:</p>
<blockquote><p>START &#8220;http://www.yahoo.com&#8221;<br />
START &#8220;winword.exe&#8221;<br />
START &#8220;c:/windows/calc.exe&#8221;</p></blockquote>
<p>We would then save this data into a file named, &#8220;mytasks.bat&#8221; onto the Desktop for easy access. Each time we double-clicked on this file, the Yahoo website would load up, Microsoft Word would start, and the simple calculator would pop up.</p>
<p>Since we want these programs to load every day, we could create a shortcut to this file and then place the shortcut inside our computer&#8217;s Start Up folder. That way, these three programs would load every time we turn on the computer. If you wanted these programs to start minimized, you could type the following into a batch file instead:</p>
<blockquote><p>START &#8220;http://www.yahoo.com&#8221;<br />
START &#8220;winword.exe&#8221;<br />
START &#8220;c:/windows/calc.exe&#8221;</p></blockquote>
<p>This will run all three programs as before, however the &#8220;/m&#8221; parameter will minimize them so that they don&#8217;t clutter up the desktop.</p>
<p>Other people have found much more creative and effective ways to use batch files, but the important thing is that you know they&#8217;re a resource you can use to save a few seconds or minutes in performing important tasks. We&#8217;ve come a long way from MS-DOS, but it&#8217;s still a valuable source of automation that anyone can use with no programming knowledge at all.<br />
Batch files are one of my primary interest and would be putting up more tutorials on it. You would know it&#8217;s fun learning and creating batch files.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/batch-and-vbsripting/automating-things-with-batch-files-they-work-on-todays-computers-too/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows 8 Consumer Preview to be Launched</title>
		<link>http://www.wintechgeek.com/windows-8/windows-8-consumer-preview-to-be-launched/</link>
		<comments>http://www.wintechgeek.com/windows-8/windows-8-consumer-preview-to-be-launched/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 15:02:25 +0000</pubDate>
		<dc:creator>subhashchy</dc:creator>
				<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/?p=1386</guid>
		<description><![CDATA[Before sometime, we wrote about Windows 8 developer’s  preview, and now the time has come when Microsoft is going to release Windows 8 Consumer Preview. Windows 8 Consumer Preview soon to be Launched. Finally Windows 8 Consumer Preview is going to be released in upcoming days at Mobile World Congress (MWC).The Mobile World Congress will [...]]]></description>
			<content:encoded><![CDATA[<p>Before sometime, we wrote about <a href="../../../../../windows-8/download-windows-8/">Windows 8 developer’s</a>  preview, and now the time has come when Microsoft is going to release Windows 8 Consumer Preview.</p>
<h2>Windows 8 Consumer Preview soon to be Launched.</h2>
<p>Finally Windows 8 Consumer Preview is going to be released in upcoming days at Mobile World Congress (MWC).The Mobile World Congress will be held on 29 Feb in Barcelona, Spain.</p>
<p>&nbsp;</p>
<p><img src="http://www.wintechgeek.com/wp-content/uploads/2011/09/091411_1918_Experiencet1.png" alt="" /></p>
<p>&nbsp;</p>
<p>So, In this article we&#8217;ll be discussing some of the tips which needs to be followed while dealing with the Windows 8 Consumer Preview like How you are going to deal with the new beta version of Windows 8, What steps to be followed after downloading the Windows 8 beta version and many more such things.</p>
<p>The minimum hardware configuration required to successfully operate Windows 8 are:</p>
<p># 1 GHz Processor</p>
<p># 1 GB and 2 GB RAM for 32- bit and 64-bit OS respectively</p>
<p># DirectX 9 with WDDM 1.0 driver</p>
<p># 16 GB &amp; 20 GB HDD free space for 32-bit &amp; 64-bit OS respectively</p>
<p>Do not install beta version directly into your main working PC, instead install it on the less used system in order to check out its working and features. And in my advice do not try this beta version on Laptops, Tablets or any other devices as PC have generic drivers that will make the system operational. Since it is beta version only so need of experimenting it on your daily working devices.</p>
<p>Also do not try installing Windows 8 over Windows 7, it is preferred to first format the hard drive and then install a fresh copy of Windows 8. If you still face some problem then it is definitely Windows 8 causing the problem.</p>
<p>Now the Question will arise in your mind: Will Windows 8 install in my system if it does not possess ARM based motherboard?</p>
<p>As we all know, currently there are very few people who have the possession of ARM based motherboard. So, do not worry about it as it will not be an issue for you. As it is the beta version it will be easily installed in any latest configured motherboard.  So, your PC would easily handle Windows 8 beta version. You will be able to access almost all the features of Windows 8 like Tile interface, reset &amp; refresh feature and other many more new features. Since Windows 8 is touch centric so its touch screen options will also work but only on Touch screen monitor.</p>
<p>[stextbox id="download"]</p>
<p>Update : Here is the link to download windows 8 in different formats.</p>
<p><a href="http://windows.microsoft.com/en-IN/windows-8/download">Installable</a>     <a href="http://windows.microsoft.com/en-IN/windows-8/iso">ISO Images </a></p>
<p>[/stextbox]</p>
<p>I hope you will now be able to install the upcoming Windows 8 consumer Preview and if you still face some problems feel free to ask, At this time why not subscriber to our email updates so we can keep you updates on <a href="../../../../../category/windows-8/">windows 8 topics</a> and other tech tips  ?</p>
<p>&nbsp;</p>
<div id="mc_embed_signup">
<form id="mc-embedded-subscribe-form" class="validate" action="http://wintechgeek.us2.list-manage.com/subscribe/post?u=59e518e46f84100762810b159&amp;id=ed3338d2a3" method="post" name="mc-embedded-subscribe-form" target="_blank"><label for="mce-EMAIL">Yes! I want to be a Geek </label><br />
<input id="mce-EMAIL" class="email" type="email" name="EMAIL" value="" />
<div class="clear">
<input id="mc-embedded-subscribe" class="button" type="submit" name="subscribe" value="Count me In " /></div>
</form>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/windows-8/windows-8-consumer-preview-to-be-launched/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Malwarebytes Anti-Malware &#8211; A must have for every computer user.</title>
		<link>http://www.wintechgeek.com/tip-of-the-day/malwarebytes-anti-malware-a-must-have-for-every-computer-user/</link>
		<comments>http://www.wintechgeek.com/tip-of-the-day/malwarebytes-anti-malware-a-must-have-for-every-computer-user/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 03:54:47 +0000</pubDate>
		<dc:creator>subhashchy</dc:creator>
				<category><![CDATA[sticky]]></category>
		<category><![CDATA[Tip of the Day]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/?p=1313</guid>
		<description><![CDATA[So you have a working computer with a nice internet connection. You know how to browse the whole internet and enjoying it. Do you know when and how computer can get infected with malwares or virus/worms/trojans/rootkits or spywares ? &#160; [stextbox id="info"]Malicious + Software = Malware[/stextbox] Malware is short name for malicious software. Malware is [...]]]></description>
			<content:encoded><![CDATA[<p>So you have a working computer with a nice internet connection. You know how to browse the whole internet and enjoying it. Do you know when and how computer can get infected with malwares or virus/worms/trojans/rootkits or spywares ?</p>
<p>&nbsp;</p>
<p>[stextbox id="info"]<strong>Malicious + Software = Malware</strong>[/stextbox]</p>
<p>Malware is short name for malicious software. Malware is a kind of  software or script or code which is designed to disrupt your computer operation, gather sensitive information, or gain unauthorized access to computer systems.</p>
<p>It is a general term used to describe any kind of software or code specifically designed to exploit a computer, or the data it contains, without the knowledge of the user..</p>
<p>&nbsp;</p>
<p>By now I guess it&#8217;s pretty clear that a Malware is not a good thing to have in your computer. Do you know you are always at risk of getting infected by malwares while doing day to day browsing (Even without downloading any programs) ?</p>
<p>&nbsp;</p>
<p>[stextbox id="warning"]<strong>Malware is big and having malware in your computer is bad.</strong>[/stextbox]</p>
<p>While you are searching for your favorite movie, song or TV program or downloading softwares from third party website your computer is highly at a risk of infections by Malware. As we mentioned above a malware sitting in your computer can steal your personal data or monitor your online activities. Would you afford to have your credit card or bank details being monitored and stolen by some strange programmer?</p>
<p>&nbsp;</p>
<p><img class="aligncenter" title="Malware bytes antimalware " src="http://www.wintechgeek.com/wp-content/uploads/2012/01/malware-bytes.jpg" alt="Malware bytes antimalware " width="343" height="351" /></p>
<p>&nbsp;</p>
<p>[stextbox id="info"]<strong>Here is the bad news: Malware is not gonna go away soon</strong>[/stextbox]</p>
<p>It’s a fact that Malware is not going away very  soon. Malware is being hard to detect and and even more hard to remove day by day. Only the most robots and contently updating  protection e software can protect your computer from such threats. Today we will talk about such a program which is trusted by corporates and available for free to use.</p>
<p><strong>[stextbox id="info"]The Good News is : “Malwarebytes”  - Detect – Remove and Protect from malware[/stextbox]</strong></p>
<p>One of the most robust and sophisticated anti-malware software is  Malware bytes. It is trusted by corporates and being suggested by top technicians in popular tech support forums every day.</p>
<p>&nbsp;</p>
<table width="35" border="0" cellspacing="0" cellpadding="0" align="right">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td valign="top"></td>
</tr>
</tbody>
</table>
<p>Malwarebytes´ is an easy-to-use, simple, and effective anti-malware software designed to detect and remove malware that even the most well known anti-virus and anti-malware applications fail to detect.</p>
<p>&nbsp;</p>
<p>Have a look at some of the features Malwarebytes antimalware have -</p>
<p>&nbsp;</p>
<ul>
<li>Light speed and quick scanning.</li>
<li>Ability to perform full scans for all drives.</li>
<li>Malwarebytes´ Anti-Malware Protection Module. (requires registration)</li>
<li>Database updates released daily.</li>
<li>Quarantine to hold threats and restore them at your convenience.</li>
<li>Ignore list for both the scanner and Protection Module.</li>
<li>Settings to enhance your Malwarebytes´ Anti-Malware performance.</li>
<li>A small list of extra utilities to help remove malware manually.</li>
<li>Multi-lingual support.</li>
<li>Works together with other anti-malware utilities.</li>
<li>Command line support for quick scanning.</li>
<li>Context menu integration to scan files on demand.</li>
</ul>
<p><em>Editor’s Note :  The free version does not include realtime protection, scheduled scanning, and scheduled updating, but that is OK for a basic user most of the time.</em></p>
<p>&nbsp;</p>
<p>[stextbox id="download"]You can download Malwarebytes Free version from their official <a href="http://www.malwarebytes.org/mbam-download.php">download link here.</a>[/stextbox]</p>
<p>&nbsp;</p>
<p>Have some question or not sure about something ? Feel free to write in comments below and we will take it from their.</p>
<p>&nbsp;</p>
<p>Do not miss out important updates about computers and stay updated with technology,  Join with hundreds of other WinTechGeek readers and stay ahead in technology.Simply put your Email Address and we will deliver next articles right into your inbox.<br />
<!-- Begin MailChimp Signup Form --></p>
<div id="mc_embed_signup">
<form id="mc-embedded-subscribe-form" class="validate" action="http://wintechgeek.us2.list-manage.com/subscribe/post?u=59e518e46f84100762810b159&amp;id=ed3338d2a3" method="post" name="mc-embedded-subscribe-form" target="_blank"><label for="mce-EMAIL">Yes!I would love to read more from you </label><br />
<input id="mce-EMAIL" class="email" type="email" name="EMAIL" value="" />
<div class="clear">
<input id="mc-embedded-subscribe" class="button" type="submit" name="subscribe" value="Count me In " /></div>
</form>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/tip-of-the-day/malwarebytes-anti-malware-a-must-have-for-every-computer-user/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Are You Working a Dead-End Job? 7 Signs That You May Be</title>
		<link>http://www.wintechgeek.com/uncategorized/are-you-working-a-dead-end-job-5-signs-that-you-may-be/</link>
		<comments>http://www.wintechgeek.com/uncategorized/are-you-working-a-dead-end-job-5-signs-that-you-may-be/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 13:22:48 +0000</pubDate>
		<dc:creator>subhashchy</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[sticky]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/?p=1294</guid>
		<description><![CDATA[This article is kinda off topic but still a worth read for my readers. Most of you are working employees so should be relevant. Just thought of writing something other than tech stuff There are times when you felt like you are working at a dead end job. If that’s the case definitely you are not alone. [...]]]></description>
			<content:encoded><![CDATA[<p><em>This article is kinda off topic but still a worth read for my readers. Most of you are working employees so should be relevant. Just thought of writing something other than tech stuff <img src='http://www.wintechgeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p>There are times when you felt like you are working at a dead end job. If that’s the case definitely you are not alone. Even through with that in mind,Just because you think that you are working in a dead end job, it’s not always necessarily mean that you are. Sounds confusing ? yes it is. If you want to clarify things and have have some proof or verification you might be interested i n reading on.</p>
<p>&nbsp;</p>
<h2><strong>Sign #1: Same position for years and years ?</strong></h2>
<p>Do you find yourself at same position for years ? If that is the true be aware! it’s one of the sign that you might be working in a dead end job. If you joined your organization with the intention of no improvement then the current position may be fine for you,But is that the case ? Being said that in mind,If you have goals and have yet to see those accomplished you might be working in a dead end job. Do you want your hard work un-rewarded ? Especially if you were hired by the same company for years.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2><strong>Sign #2 : Same Payout for years and years  ?</strong></h2>
<p>Another sign that you might be part of a dead end job is you are getting same payout for years. Actually many employers automatically give you appraisals yearly or even quarterly.  If you are working with same organization and for a long period of time with no or less appraisals you may be part of a dead end job. There is a good thing though, If your only issue is with pay you still have chance to turn this dead-end job into a great job. You can do this by inquiring about a pay raise. Sometime it works and sometime makes you feel like you are begging for your rights  Sad but true.  Though many employers expect this, especially after an extended period of time without a raise; therefore, you may have nothing to lose by at least asking.</p>
<p>&nbsp;</p>
<p><strong><img class="aligncenter size-full wp-image-1303" title="Dead-end job" src="http://www.wintechgeek.com/wp-content/uploads/2012/01/Depositphotos_6960557_XS.jpg" alt="" width="294" height="410" /> </strong></p>
<h2></h2>
<h2><strong>Sign #3 : Your hours are counted as minutes</strong></h2>
<p>When you love what you are doing, most likely you don’t stare on the clock. When you know you are going somewhere positive you usually don’t care how much time you are spending. But the thing is , When you stop caring about what you are doing (Job) a feeling come that  your job is taking away your important time which you could spend with your family members or other tasks.</p>
<p>You can ask below question to you and see whether you are doing a dead-end job or a great job.</p>
<ul>
<li>Do you honestly feel that there are adequate opportunities for advancement?</li>
<li>Do you honestly feel that your boss and the management cares about you?</li>
<li>Whether there is a sense of camaraderie and a common purpose at your workplace?</li>
</ul>
<p>&nbsp;</p>
<p><strong> </strong></p>
<h2></h2>
<h2><strong>Sign #4 : Management is a bunch of incompetent buffoons ?</strong></h2>
<p>You might be getting nice benefits,package and a decent salary but it can be still be hard to work on a blood-sucking project full with problems that management is unwilling or unable to fix.</p>
<p>it’s fact that Management doesn&#8217;t always know how to best motivate their employees. Possibly they are taking some kinda short approach to bleeding the employees dry instead of giving the tools to succeed.  Do you notice salary and  compensation is based on arbitrary instead of performance ?</p>
<p>Few questions which should say whether the ship is starting to sink?</p>
<ul>
<li>Number is departuers are far more than new hiring ?</li>
<li>Lack of communication between management and you ?</li>
<li>You do your job without even knowing why ?</li>
<li>Management only speaks in terms of generalities and vague statements ?</li>
<li>Mostly The <em>real</em> news comes only through the grapevine ?</li>
</ul>
<p>If most of the answer is positive, possibly these are signs the ship ain’t going into right direction.</p>
<h2></h2>
<h2><strong>Sign #5 : Do you spend more time looking at Facebook rather than doing your job ?</strong></h2>
<p>If you don’t love your job, you tend to spend more time looking at facebook and other websites instead of doing the actual job. Reason could be either there is no much work to do or you are simply demotivated to work.</p>
<p>This will be for short time of-cou se, Management will find out you are surfing the web instead of doing your job and crank down the ways to access outside website but did they tried to look into why employees don’t like the job ?</p>
<p><strong> </strong></p>
<h2></h2>
<h2><strong>Sign #6 :  Promise of promotion which never come true ?</strong></h2>
<p>Of-course managers know that it’s their responsibility to keep the employees motivated, But they may not have the budget or whatever of that sort to hand out appraisal latters. Or you think they simply not have will or desire to do so ?</p>
<p>At this point, they might hold back from sharing the bad news with you. A simple “NO” may demotivate you so they try to say “yes” from their own. They Surly understand that <strong>“A motivated employee is  more productive”.</strong></p>
<p>&nbsp;</p>
<ol start="1">
<li>When was your last promotion ?</li>
<li>Have your management give you lot of hints but no real action ?</li>
<li>Is there even a room for you to get promoted ?</li>
</ol>
<p>&nbsp;</p>
<p>It will be really annoying to feel like like management is not listening to the performance reports from the ground. You want  to feel like you are working on projects that will make a difference, and that their concerns are being heard.Don’t you ?  Nobody wants to be stuck working on a manager’s bridge to nowhere.</p>
<p>&nbsp;</p>
<h2></h2>
<h2><strong>sign #7 : Working as a senior but being paid like juniors ?</strong></h2>
<p>Last but not the least. So after a long time you got the position and raise you were waiting for. But in this time their base starting salary increased due to market needs. Now even through you are working as a senior but your payout is lower than the newly hired junior. That hurts and is enough to demotivate you</p>
<p>&nbsp;</p>
<p>Above mentioned are just few sings that should trigger whether you are working in a dead-end job or not. As mentioned earlier it is important to remember that you are not bond to keep on working what may be called as a dead-end job forever. There are still ways you can take to see improvement and success.</p>
<p>At this point the best thing you can do is, hear yourself. what you want ? and To accomplish that what you can do ?</p>
<p>&nbsp;</p>
<p>Alright, That’s is for today. have you ever trapped in a dead-end job ? I would love to hear your stories. <img src='http://www.wintechgeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Write down below in comments .Either use your own name or use a fake name  depends on your guts <img src='http://www.wintechgeek.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/uncategorized/are-you-working-a-dead-end-job-5-signs-that-you-may-be/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Win At Battlefield 3 &#8211; Battlefield 3 cheats</title>
		<link>http://www.wintechgeek.com/general/how-to-win-at-battlefield-3-battlefield-3-cheats/</link>
		<comments>http://www.wintechgeek.com/general/how-to-win-at-battlefield-3-battlefield-3-cheats/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 02:19:24 +0000</pubDate>
		<dc:creator>subhashchy</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/?p=1247</guid>
		<description><![CDATA[Click here   to grab this battlefield 3 cheats.  &#160; In this post I want to give you a few tips that you can use to up your game on Battlefield 3 and make sure that you are dominating the game. The thing is that the game changes a lot of the aspects that are present in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wintechgeek.com/bfguide.htm">Click here</a>   to grab this <a href="http://www.wintechgeek.com/bfguide.htm"><strong>battlefield 3 cheats. </strong></a></p>
<p>&nbsp;</p>
<p>In this post I want to give you a few tips that you can use to up your game on Battlefield 3 and make sure that you are dominating the game.</p>
<p>The thing is that the game changes a lot of the aspects that are present in other FPS and that is you need to make sure that you know how to work together with your team. There are 4 classes in Battlefield 3 and depending on which class you pick it will greatly change your experience of the game.</p>
<p>&nbsp;</p>
<p>If you want to have the edge in Battlefield 3 then you need to consider getting some good tuition! It is the same as with anything. If you want to play the guitar you need lessons right? Well the world of FPS (First person shooters) can be a dangerous one especially online</p>
<p>If you don’t know what you are doing you will get killed a lot, shouted at a lot on multiplayer and the main thing is that you will not have that much fun.</p>
<p>So Can You Be Good At Battlefield 3?</p>
<p><strong>Yes, you can!</strong></p>
<p>&nbsp;</p>
<p>There is a common misconception that to be good at the game you will have to put hours and hours into perfecting your skills. While this is true in part, you will need practice you might not need as much as you think!</p>
<p>We recommend that if you are new that you stick with the Assault class as this is a good all-rounder but you should also get to grips with the slightly more difficult classes that I think are Recon and Engineer..</p>
<p>&nbsp;</p>
<p>The good thing is that a guide has been released that gives you a complete guide to the game and as well as a full class guide and how to customize your weapons you get a video walkthrough for the single player campaign and the multiplayer missions as well.</p>
<p>Probably the best thing about the guide is the fact that it has HD videos giving you the tactics and strategies that you need to dominate multiplayer in the game as well!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="wp-caption alignnone" style="width: 665px"><a href="http://www.wintechgeek.com/bfguide.htm"><img title="Battlefield 3 cheats" src="http://www.bf3dominator.com/images/banner2.jpg" alt="Battlefield 3 cheats" width="655" height="81" /></a><p class="wp-caption-text">Click on the image to download</p></div>
<p>&nbsp;</p>
<p>If you want to up your game and you feel that you are getting left behind check out the full Battlefield 3 guide which is called BF3 Dominator and discover how you can go pro fast:</p>
<p>&nbsp;</p>
<p><a href="http://www.wintechgeek.com/bfguide.htm">Click here</a>  to read more on this battlefield 3 guide.</p>
<p>&nbsp;</p>
<p>Basically this guide takes you through all aspects of gameplay and includes a full campaign walkthrough for the game on single player and multiplayer. As well as that you also get a full multiplayer guide that will take you through the battlefield 3 maps and the strategies that you need to start winning.</p>
<p>So, Enjoying your Gaming and let me know how far you gone after 3 days.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/general/how-to-win-at-battlefield-3-battlefield-3-cheats/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Q&amp;A: Should I buy a windows 7 desktop or wait for windows 8?</title>
		<link>http://www.wintechgeek.com/windows-8/qa-should-i-buy-a-windows-7-desktop-or-wait-for-windows-8/</link>
		<comments>http://www.wintechgeek.com/windows-8/qa-should-i-buy-a-windows-7-desktop-or-wait-for-windows-8/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 13:15:12 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[Should]]></category>
		<category><![CDATA[wait]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/windows-8/qa-should-i-buy-a-windows-7-desktop-or-wait-for-windows-8/</guid>
		<description><![CDATA[Here we have a question from one of our reader. &#160; Should I buy a windows 7 desktop or wait for windows 8? I was planning on buying an Hp pavilion desktop, but i found out about Windows 8 and i like it. Should i get the Hp or wait for windows 8? What do [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Here we have a question from one of our reader.</strong></em></p>
<p>&nbsp;</p>
<p><strong>Should I buy a windows 7 desktop or wait for windows 8?</strong></p>
<p>I was planning on buying an Hp pavilion desktop, but i found out about Windows 8 and i like it. Should i get the Hp or wait for windows 8?</p>
<p><strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/windows-8/qa-should-i-buy-a-windows-7-desktop-or-wait-for-windows-8/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Tips on How to block social networking sites on your computer</title>
		<link>http://www.wintechgeek.com/networking/qa-how-do-i-block-social-networking-sites-on-my-computer/</link>
		<comments>http://www.wintechgeek.com/networking/qa-how-do-i-block-social-networking-sites-on-my-computer/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 20:26:26 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[block social networking sites]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[sites]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/networking/qa-how-do-i-block-social-networking-sites-on-my-computer/</guid>
		<description><![CDATA[How to block social networking sites ? Different people look at the internet in different ways. Some feel that it is the invention that truly changed the face of the Earth while others believe that it is one of the major factors that is causing the youth to behave in an irresponsible manner. A lot [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to block social networking sites ?</strong></p>
<p>Different people look at the internet in different ways. Some feel that it is the invention that truly changed the face of the Earth while others believe that it is one of the major factors that is causing the youth to behave in an irresponsible manner. A lot can be said on both sides. I do agree that the there are certain sites on the net that are creating a lot of ruckus and they are affecting the minds of the youth adversely, but we cannot say that the internet in general has a negative impact on children. There are many software that is available in the market that will help you to keep track of what your child is viewing on the internet or to be more specific block social networking sites or adult sites.<strong></strong></p>
<p><strong> </strong></p>
<p>Today we are going to talk about One of the best software that is available in the market for this purpose, that  is the <strong><a href="http://www.tkqlhce.com/click-5515919-10649958" target="_top">CyberPatrol Parental Controls</a></strong><strong></strong>.<strong></strong></p>
<p>&nbsp;</p>
<p><strong>Overview of CyberPatrol Parental Controls Software</strong></p>
<p>The <strong><a href="http://www.tkqlhce.com/click-5515919-10649958" target="_top">CyberPatrol Parental Controls</a></strong><strong></strong> enables the children to play and surf the internet and at the same time controls the time that is spent online. It can allow and block specif sites depends on your preference, such as blog social networking sites like Facebook etc. You can protect up to three computers with the help of one package and it restricts all the bad sites that you child can intentionally or accidentally end up browsing.</p>
<p><strong> </strong></p>
<p><strong>Main Features of the CyberPatrol Parental Control Software</strong></p>
<p><strong> </strong></p>
<p>1. The most important feature that makes the <strong><a href="http://www.tkqlhce.com/click-5515919-10649958" target="_top">CyberPatrol Parental Controls</a></strong><strong></strong> a must have in case you have kids in the house is that the software restricts the entry of the user to any adult site or any other site that is shady and may have a negative impact on the child’s mind.</p>
<p>&nbsp;</p>
<p>2. You can restrict the user from visiting social networking site such as Facebook and Twitter and YouTube as well. Other than this there are nine other categories that are available that you can block so that the kids do not venture into the darker areas of the internet. As a careful parent who does&#8217;t want to Block social networking sites ?</p>
<p>&nbsp;</p>
<p>3. Another striking feature of the software is that you can limit downloading to certain sites only, thus preventing a possible virus attack.</p>
<p>&nbsp;</p>
<p>4. The software lets you chat with people without disclosing your identity and whereabouts and you can also restrict your kids from chatting and entering the various chat rooms that are available on the internet with the help of the software.</p>
<p>&nbsp;</p>
<p>5. You will receive in depth information about all the sites and pages that your child has visited in your absence and the duration of the visit as well. So you can leave the child alone and get on with your work and later go through the history of the software and know what all the child did in your absence.</p>
<p>&nbsp;</p>
<p>6. If you are worried that your child spends too much time on the internet in your absence, then this software will help you to put a restriction on the time as well. This means that you can set a time period for which there would be internet connectivity, after this the connection would automatically break, even if you are not there.</p>
<p>&nbsp;</p>
<p><strong><a href="http://www.tkqlhce.com/click-5515919-10649958" target="_top">CyberPatrol Parental Controls</a></strong><strong></strong> is the perfect choice among all the other such software that are available in the market and the basic reason for this is the fact that the software is loaded with features that it’s useful for every parent or person looking for kind of internet filtering software.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/networking/qa-how-do-i-block-social-networking-sites-on-my-computer/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Detect Drive letter of a Flash drive from Batch Script</title>
		<link>http://www.wintechgeek.com/batch-and-vbsripting/how-to-detect-drive-letter-of-a-flash-drive-from-batch-scrip/</link>
		<comments>http://www.wintechgeek.com/batch-and-vbsripting/how-to-detect-drive-letter-of-a-flash-drive-from-batch-scrip/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 11:17:17 +0000</pubDate>
		<dc:creator>subhashchy</dc:creator>
				<category><![CDATA[Batch and VBSripting]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/?p=1126</guid>
		<description><![CDATA[I saw a question on a popular forum asking How to detect drive letter of a flash drive  from cmd (Command prompt). Detecting drive letter from command prompt is possible but a bit tricky, First we have to get into Diskpart then identify the disk type and obtaining the drive letter. Scripting this can be difficult. Instead [...]]]></description>
			<content:encoded><![CDATA[<p>I saw a question on a popular forum asking How to detect drive letter of a flash drive  from cmd (Command prompt).</p>
<p>Detecting drive letter from command prompt is possible but a bit tricky, First we have to get into Diskpart then identify the disk type and obtaining the drive letter. Scripting this can be difficult. Instead going this route Why not try a easy VBScript ?</p>
<p>In this tutorial We will see a vb-script  which will detect the drive letter of a USB removable drive and output either on screen or on the cmd console.</p>
<p>&nbsp;</p>
<p>[stextbox id="grey"]</p>
<p>&#8216; DetectFlashDriveLEtter.vbs<br />
&#8216; VBscript to detect the drive letter for a flash drive</p>
<p>Option Explicit<br />
Dim objWMIService, objItem, colItems, strComputer<br />
Dim strDriveType, strDiskSize<br />
On Error Resume Next<br />
strComputer = &#8220;.&#8221;</p>
<p>Set objWMIService = GetObject _<br />
(&#8220;winmgmts:\\&#8221; &amp; strComputer &amp; &#8220;\root\cimv2&#8243;)<br />
Set colItems = objWMIService.ExecQuery _<br />
(&#8220;Select * from Win32_LogicalDisk&#8221;)</p>
<p>For Each objItem in colItems<br />
Select Case objItem.DriveType<br />
Case 1 strDriveType = &#8220;Drive could not be determined.&#8221;<br />
Case 2 strDriveType = &#8220;Removable Drive&#8221;<br />
Case 3 strDriveType = &#8220;Local hard disk.&#8221;<br />
Case 4 strDriveType = &#8220;Network disk.&#8221;<br />
Case 5 strDriveType = &#8220;Compact disk (CD)&#8221;<br />
Case 6 strDriveType = &#8220;RAM disk.&#8221;<br />
Case Else strDriveType = &#8220;Drive type Problem.&#8221;<br />
End Select</p>
<p>If objItem.DriveType =2 Then<br />
Wscript.Echo objItem.Name<br />
Else</p>
<p>End If</p>
<p>Next</p>
<p>WSCript.Quit</p>
<p>&nbsp;</p>
<p>[/stextbox]</p>
<p>&nbsp;</p>
<p>As you can see, here we have 5 different type of drives which can be identified using this script. Those are</p>
<ol>
<li> Removable Drive</li>
<li>Local hard disk.</li>
<li>Network disk.</li>
<li>Compact disk (CD)</li>
<li>RAM disk.</li>
</ol>
<div>So if I have to get the drive letter of CD ROM, I would  change the drive type in below line and leave rest as it is.</div>
<p>[stextbox id="grey"]</p>
<div>If objItem.DriveType =2 Then</div>
<div> [/stextbox]</div>
<h2>How to use this Script to detect drive letter from CMD -</h2>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div>To usethis script to detect drive letter of flash drive from cmd, Follow below steps : -</div>
<div>
<ol>
<li>Save it as DetectFlashDrive.vbs in a directory.</li>
<li>Open CMD</li>
<li>Switch to the directory where you saved this vbs</li>
<li>type  cscript DetectFlashDrive.vbs and hit Enter.</li>
<li>Example is shown in the screenshot below</li>
</ol>
</div>
<p><img class="aligncenter size-full wp-image-1132" title="detect drive letter from cmd" src="http://www.wintechgeek.com/wp-content/uploads/2011/11/detect-drive-letter-from-cmd.png" alt="" width="545" height="294" /></p>
<div>
<p>If you look closely, I have typed 2 different commands and they gave different output. First command output includes Microsoft script host logo whether 2nd does not include it. So if you have to hide the logo, add /nologo after cscript.Further, You can assign this output  to a variable and later use in a batch script &#8211;  To assign this output as a variable call this :[stextbox id="grey"]<strong>for /f %a in (&#8216;cscript/nologo DetectFlashDrive.vbs&#8217;) do set drive=%a </strong>[/stextbox]</p>
<p>Now the USB drive&#8217;s letter is assigned to the variable &#8221;%drive% which can be called from anywhere in your command session. To call this type &#8220;Echo %drive%.</p>
<p>&nbsp;</p>
<p>That&#8217;s it for today, if you are a script lover, You might want to receive next tutorial via email. Simply put your email address in this box.</p>
<p>&nbsp;</p>
</div>
<div id="mc_embed_signup">
<form id="mc-embedded-subscribe-form" class="validate" action="http://wintechgeek.us2.list-manage.com/subscribe/post?u=59e518e46f84100762810b159&amp;id=ed3338d2a3" method="post" name="mc-embedded-subscribe-form" target="_blank"><label for="mce-EMAIL">Yes! I want to be a Geek </label></p>
<input id="mce-EMAIL" class="email" type="email" name="EMAIL" value="" />
<div class="clear">
<input id="mc-embedded-subscribe" class="button" type="submit" name="subscribe" value="Count me In " /></div>
</form>
</div>
<p>&nbsp;</p>
<p>External References :<a href="http://www.computerperformance.co.uk/vbscript/wmi_disks.htm" target="_blank"> WMI &#8211; Logical Disk Properties</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/batch-and-vbsripting/how-to-detect-drive-letter-of-a-flash-drive-from-batch-scrip/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Five Printing Tips for Windows Users</title>
		<link>http://www.wintechgeek.com/tips-tricks-and-howtos/five-printing-tips-for-windows-users/</link>
		<comments>http://www.wintechgeek.com/tips-tricks-and-howtos/five-printing-tips-for-windows-users/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 14:55:55 +0000</pubDate>
		<dc:creator>subhashchy</dc:creator>
				<category><![CDATA[How To Guides]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/?p=1065</guid>
		<description><![CDATA[Like many things having to do with computers, getting your printer to work like you want it to can be extremely frustrating. Part of this is due to the fact that printers come from many different manufacturers, and not all of them work the same. How Windows handles communicating with a printer can also be [...]]]></description>
			<content:encoded><![CDATA[<p>Like many things having to do with computers, getting your printer to work like you want it to can be extremely frustrating. Part of this is due to the fact that printers come from many different manufacturers, and not all of them work the same. How Windows handles communicating with a printer can also be quite complicated. To help, here are five great printing tips for Windows users.</p>
<h2>1. How to Remove Header and Footer Info from Printed Webpages</h2>
<p>One of the default settings of Windows Internet Explorer causes it to print out information in the header and footer such as the URL, date, and page number when printing out a webpage. However, there may be times when you want to discard this extra information.</p>
<p>To do so, simply press on the drop down menu of the printer icon on Explorer’s default toolbar. Choose “Page Setup.” There should be text boxes that allow you to edit what appears in the headers and footers of the printed pages. To remove things like the URL, date, and page number, simply clear out these text boxes.</p>
<h2>2. How to Change Your Default Printer</h2>
<p>Some computers are connected to multiple printers. This will likely be the case for an office environment. Having the wrong printer constantly print out documents when you choose to start a print job can be quite frustrating. One way to solve this problem is by changing a computer’s default printer.</p>
<p>First, press on the start button on the Windows task-bar. On the pop-up menu, click to navigate to the “Devices and Printers” menu. You should see icons for each external device installed on your computer. This should include all of your printers. To change the default printer, simply right click on one of the icons and choose “Set as default printer.”</p>
<h2>3. How to Make Your Printer Aware of Your Location</h2>
<p>Another problem occurs when a person switches in-between computers that technically exist in different networks but still wants to use the same printer. In the past, the default printer would change with each network change. However, an update to certain versions of Windows 7 has changed this. You can now set your default printer to change with you when you switch between different computers at home or in the office.</p>
<p>First, click on the start menu icon. Choose to go to the “Devices and Printers” menu. Right click on one of the printer icons that appears in this menu. Choose the “Manage Default Printers” option. Within this menu, you can choose to have your default printer stick with you when you change to a computer in a different network.</p>
<h2>4. How to Change the Order Pages Print Out in Excel</h2>
<p>Sometimes, when a spreadsheet contains a large amount of information, a print job can involve a very large number of pages printing out over a long period of time. The default setting in Excel causes pages to be printed out in order from the top of a spreadsheet to the bottom and then from the left to the right. This may be frustrating when you need to order these pages differently or only care about specific information in the spreadsheet.</p>
<p>Thankfully, the order in which pages are printed out in Excel can be changed. First, open up the spreadsheet you wan to print out. Next, navigate to the tab named “Page Layout.” Once there, click on the “Page Setup” option.</p>
<p>There should be a number of tabs in this menu. Choose the tab labeled “Sheet.” On this tab, there will be a section that allows you to choose what direction the spreadsheet prints out in. You can switch it to print from the bottom up or from right to left as opposed to the default settings.</p>
<h2>5. How to Repair Printer Drivers</h2>
<p>At some point, many users may encounter sudden unexplained printing errors when attempting to send a print job. The printer may be properly hooked up to a computer or network. The printer may also already be installed for that computer.</p>
<p>When this occurs, the problem is often corrupted drivers. There can be many reasons why drivers go bad. Repairing your printer drivers, however, is rather easy.</p>
<p>First, enter into the “Devices and Printers” menu that can be accessed from the start menu pop-up. Right click the printer that is giving you problems and choose “Remove device.” Next, simply choose the “Add a printer” option on that menu’s toolbar. Once you add back the printer, the drivers should reinstall as new.</p>
<p>&nbsp;</p>
<p>This article is contributed by James,</p>
<p>Working for a company that deals <a href="http://www.cartridgesave.co.uk/">printer ink cartridges</a>, James is mostly occupied with blogging on the website, but also tests and reviews <a href="http://www.cartridgesave.co.uk/ink-cartridges/HP.html">HP printer cartridges</a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/tips-tricks-and-howtos/five-printing-tips-for-windows-users/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Disable Right Click &#8211; Fun with computer</title>
		<link>http://www.wintechgeek.com/windows-registry/disable-right-click-fun-with-computer/</link>
		<comments>http://www.wintechgeek.com/windows-registry/disable-right-click-fun-with-computer/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 10:02:28 +0000</pubDate>
		<dc:creator>subhashchy</dc:creator>
				<category><![CDATA[Registry Tricks]]></category>

		<guid isPermaLink="false">http://www.wintechgeek.com/?p=1008</guid>
		<description><![CDATA[&#160; This is the next tutorial in &#8220;Registry tricks&#8221;. In this tutorial we will learn how to disable right click menu in windows explorer. It&#8217;s not a troubleshooting tip but just a  fun with computer which you can use to play with your friends. They will think their mouse is not working. We will be [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>This is the next tutorial in <a title="All posts in Registry tricks" href="http://www.wintechgeek.com/tips-tricks-and-howtos/add-program-right-click-explorer-menu/" target="_blank"><strong>&#8220;Registry tricks&#8221;</strong></a>. In this tutorial we will learn how to disable right click menu in windows explorer. It&#8217;s not a troubleshooting tip but just a  fun with computer which you can use to play with your friends. They will think their mouse is not working. We will be modifying windows registry to get this done in as easy as 1 &#8211; 2 &#8211; 3 done!. If you are not sure what windows registry is, consider reading <a title="Introduction to Windows Registry." href="http://www.wintechgeek.com/windows-registry/introduction-to-windows-registry-2/" target="_blank">&#8220;Introduction to Windows Registry&#8221;</a><span style="font-size: 1pt;">. </span></p>
<p><a href="http://www.uniblue.com/pc/?id=RBgen&amp;aff=18932&amp;xat=gen"><img title="Download" src="http://www.uniblue.com/assets/resources/affiliates/materials/rb-en/ContentBlog-3-Above_Article.gif" alt="Download" width="567" height="92" border="0" /></a></p>
<p>&nbsp;</p>
<h1> <strong>How we can disable right click ?  </strong></h1>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-1018" title="Disable right click menu" src="http://www.wintechgeek.com/wp-content/uploads/2011/09/Disable-Right-Click-menu-.jpg" alt="Disable Right click menu" width="428" height="280" /></p>
<p>&nbsp;</p>
<p>We are going to disable right click by modifying the registry key &#8220;[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\].</p>
<p>&nbsp;</p>
<p><strong> [stextbox id="info"]Let&#8217;s get Started :-[/stextbox]</strong></p>
<p>&nbsp;</p>
<p><span style="color: #0070c0;"><strong>Step 1.</strong>  <strong>Open Windows Registry</strong><br />
</span></p>
<ol style="margin-left: 54pt;">
<li>Windows XP users can type regedit in start=&gt;Run dialog box.</li>
<li>
<div>Just type regedit In windows 7 start menu search box.</div>
<p style="margin-left: 27pt;"><img src="http://www.wintechgeek.com/wp-content/uploads/2011/09/092211_1012_DisableRigh1.png" alt="" /><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
</li>
</ol>
<p>&nbsp;</p>
<p><span style="color: #0070c0;"><strong>Step 2.  </strong><strong>Navigate to [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies]</strong><br />
</span></p>
<p style="margin-left: 27pt;"><img src="http://www.wintechgeek.com/wp-content/uploads/2011/09/092211_1012_DisableRigh2.png" alt="" /><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="color: #0070c0;"><strong>Step3.  Right Click on the &#8220;Right Pane&#8221; of registry editor (The white space) and select &#8220;new=&gt;DwordValue&#8221;</strong><br />
</span></p>
<p style="margin-left: 27pt;"><img title="Disable right click menu" src="http://www.wintechgeek.com/wp-content/uploads/2011/09/092211_1012_DisableRigh3.png" alt="Disable right click menu" width="519" height="384" /><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><span style="color: #0070c0;"><strong>Step 4. As the name of the Dowrd Value, Put &#8220;</strong>NoViewContextMenu&#8221; without quotes..<br />
</span><br />
<img title="policies registry key" src="http://www.wintechgeek.com/wp-content/uploads/2011/09/092211_1012_DisableRigh4.png" alt="policies registry key" width="568" height="384" /><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span><br />
<span style="color: #0070c0;"><strong>Step 5. Double Click on &#8220;NoViewContextMenu&#8221; and then put 1 as the value data.</strong><br />
</span></p>
<p><img src="http://www.wintechgeek.com/wp-content/uploads/2011/09/092211_1012_DisableRigh5.png" alt="" /><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p>That&#8217;s all needs to be done. Now Simply log off and re login (Or restart your computer). You will see Right click is not working. After 1-2 tries you will get used to it and can complete the above 5 steps in couple of seconds and make your friends scream .<br />
To disable this, simply delete the value or change the value data to 0 (Step 5).</p>
<p>&nbsp;</p>
<p><strong>[stextbox id="info"]I get this. Would you mind telling how this thing works ?[/stextbox]</strong></p>
<p>&nbsp;</p>
<p>The registry key we used above (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies) contains polies for the user. Windows shell (Explorer.exe) reads this key to determine the way it will behave with this user. Basically these settings are used by system admins in organizations to restricts users with specific components.</p>
<p>&nbsp;</p>
<blockquote><p>Disclaimer : This tutorial requires making changes in Windows Registry. Do not mess with the keys you do not know about. It can cause your system to become unstable. If something goes wrong, Do not panic and try to undo what you have or ask for help with detailed information about what sort of problem you are encountering . You should backup registry before attempting to make any changes.</p>
<p>&nbsp;</p></blockquote>
<p><a href="http://www.uniblue.com/pc/?id=RBgen&amp;aff=18932&amp;xat=gen"><img title="Download" src="http://www.uniblue.com/assets/resources/affiliates/materials/rb-en/ContentBlog-2-One_Liner-2.gif" alt="Download" width="620" height="25" border="0" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wintechgeek.com/windows-registry/disable-right-click-fun-with-computer/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>
