<?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>Essay Web Blog &#187; Windows 7</title>
	<atom:link href="http://blog.essayweb.net/tag/windows-7/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.essayweb.net</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 22:15:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Changing the cache location in Chrome</title>
		<link>http://blog.essayweb.net/2009/11/07/changing-the-cache-location-in-chrome/</link>
		<comments>http://blog.essayweb.net/2009/11/07/changing-the-cache-location-in-chrome/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 17:22:15 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[Chrome browser]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://blog.essayweb.net/?p=95</guid>
		<description><![CDATA[Why would you want to do this? Because you’re using Windows. Because file fragmentation is a problem with every version of Windows, and it inexorably slows down your computer the longer you use it. Because browser caches are some of the highest file activity regions on your disk, which means they make the disk fragment [...]]]></description>
			<content:encoded><![CDATA[<p>Why would you want to do this?</p>
<p>Because you’re using Windows. Because file fragmentation is a problem with every version of Windows, and it inexorably slows down your computer the longer you use it. Because browser caches are some of the highest file activity regions on your disk, which means they make the disk fragment very quickly. You don’t want your operating system or programs disks to be fragmented that fast, do you? So you make a separate scratch disk, just a tiny one, and place all browser caches and other fast changing files there.</p>
<p>Except that unlike Firefox or Internet Explorer, Chrome doesn’t let you choose the browser cache size or location. Instead, it dumps it right on your OS disk, which is about the worst place to have a browser cache.</p>
<p>Here’s how you can change the location of Chrome’s cache, despite the laziness of the programmers. What you do is manually create a directory for the cache on a disk of your choice. Then you set up a symbolic link from the default Chrome cache location to this new directory you’ve created. Chrome still thinks it’s dumping files in its default location, but the files are really going to a different disk.</p>
<h2>Step by Step Instructions (Vista and Windows 7)</h2>
<p>1. Shut down Chrome if it’s open. Now open Task Manager and look under the Processes tab to make sure there is no Chrome process running. This is necessary because even after shutting down the browser, the process often continues to run for a while to do housekeeping tasks. If it’s running, it will have locked the files you need to move, so the process won’t work. Make absolutely sure it’s not running.</p>
<p>2. Next, open Windows Explorer, navigate to where you want the cache to go, and make a directory there for the Chrome cache. In my case, I made a directory called “Chrome Cache and Profile” on drive S, as shown in the picture below.</p>
<p><a href="http://blog.essayweb.net/wp-content/uploads/2009/11/chrome_directory.png"><img class="aligncenter size-full wp-image-96" title="Chrome Cache Directory" src="http://blog.essayweb.net/wp-content/uploads/2009/11/chrome_directory.png" alt="Chrome Cache Directory" width="447" height="551" /></a><br />
3. Next, navigate to where Chrome stores its user profile. This will usually be:</p>
<pre>C:\Users\{username}\AppData\Local\Google\Chrome\User Data</pre>
<p>Move the entire “User Data” directory to the other drive, and make it a subdirectory of the new directory you just created in the previous step. So in my case, I moved it from the default location listed above to S:\Chrome Cache and Profile\User Data.</p>
<p>4. Now open an elevated command prompt. This means that you right-click on the command prompt icon in the Start Menu, and choose “Run as Administrator”. In the command prompt window, enter the command:</p>
<pre>mklink /J “C:\Users\{username}\AppData\Local\Google\Chrome\User Data” “S:\Chrome Cache and Profile\User Data”</pre>
<p>Make sure you replace {username} with your own username, and change the directories as appropriate in your case. The quotes around the directory names are necessary, so leave them there.</p>
<p>That’s it. You’ve created a symbolic link from the default location to the new location of the User Data directory. Because you used the “/J” switch, Windows created what’s called a “junction”, which Chrome can’t see, so it continues to think that the directory hasn’t been moved, and proceeds as usual.</p>
<p>Note that if you did exactly like I described above, you’ve not only moved the Chrome cache, but the entire User Data directory, which also contains stuff like cookies, bookmarks, etc. If you don’t want to move the rest of this stuff over, dig deeper into the User Data subdirectory, and locate the cache subdirectory, which will be:</p>
<pre>… User Data\Default\Cache</pre>
<p>In that case, you could just make the symbolic link at that directory level, rather than at the User Data level. It’s up to you.</p>
<h2>If you’re using Windows XP or Windows 2000</h2>
<p>Windows XP and Windows 2K have the ability to make symbolic links but don’t come with a command line tool to make them. So if you’re using either of these two operating systems, you’ll need to download a tool to make them. Microsoft Technet offers <a href="http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx" target="_blank">Junction</a>, which is a tiny utility that lets you add symbolic links in either XP or 2000.</p>
<p>The command would be:</p>
<pre>junction C:\path-to-directory\User Data “S:\path-to-directory\User Data”</pre>
<p>Make sure you fill in the proper paths to the source and linked directories, and also note that the second set of quotes is required.</p>
<h2>Other Methods</h2>
<p>Some people use a different method for changing the cache location, which is to start Chrome with an argument pointing to a separate directory. For example, if you wanted the cache to be located in S:\junk, you could make a shortcut to start Chrome with the command line:</p>
<pre>C:\path-to-chrome-executable\chrome-exe –user-data-dir=s:\junk</pre>
<p>This would work, but there are problems because a browser isn’t always started from a shortcut. Many other applications often invoke the default browser to display HTML stuff. So if Chrome is started by some other application, or in any way other than through your shortcut, it will still dump files in the default location and not in your junk directory. For this reason, I prefer the symbolic link method.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.essayweb.net/2009/11/07/changing-the-cache-location-in-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing the Start Menu in Windows 7</title>
		<link>http://blog.essayweb.net/2009/11/07/fixing-the-start-menu-in-windows-7/</link>
		<comments>http://blog.essayweb.net/2009/11/07/fixing-the-start-menu-in-windows-7/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 16:03:02 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[Start Menu]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://blog.essayweb.net/?p=87</guid>
		<description><![CDATA[I like the start button in Windows 7, specially the search feature and the ability to pin frequently used programs to both the start menu and the task bar (just right click the icon and choose “pin” or “unpin”). In Windows XP, I had all my programs on the start menu sorted into directories, so [...]]]></description>
			<content:encoded><![CDATA[<p>I like the start button in Windows 7, specially the search feature and the ability to pin frequently used programs to both the start menu and the task bar (just right click the icon and choose “pin” or “unpin”). In Windows XP, I had all my programs on the start menu sorted into directories, so that it was easy to find any of them. I agree that the search feature makes this sort of redundant, but I am one of those people who can’t bear to see stuff just thrown into the “All Programs” menu without any attempt to organize it.</p>
<p style="text-align: center;"><a href="http://blog.essayweb.net/wp-content/uploads/2009/11/start_menu_win7.png"><img class="aligncenter size-full wp-image-88" title="Windows 7 Start Menu" src="http://blog.essayweb.net/wp-content/uploads/2009/11/start_menu_win7.png" alt="Windows 7 Start Menu" width="509" height="428" /></a></p>
<p>So I rearranged the programs in the All Programs list on the Start Menu to look more like XP. The image on the left shows the Start Menu, and the image on the right shows what happens when you click or hover over “All Programs”. As you can see, the programs have been arranged into directories, like “Communications”, “Utilities”, etc. This makes it much easier for me to find programs, and to keep track exactly what I have on this machine.</p>
<p>Here’s how to do it. Like Windows XP, Windows 7 also keeps program short cut locations in two places, depending on whether the program was installed just for the current user or for all users. However, the two locations are different in Windows 7.</p>
<p>Programs installed for All Users now go to:</p>
<pre style="padding-left: 30px;"> C:\ProgramData\Microsoft\Windows\Start Menu.</pre>
<p>Programs installed for your user account only go to:</p>
<pre style="padding-left: 30px;"> C:\Users\{username}\AppData\Roaming\Microsoft\Windows\Start Menu.</pre>
<p>Since most programs are installed by default for all users, the easier way is to go to the first location and make directories there. I typically make the directories “Office” (for MS Office, and related stuff such as font managers, scanning and OCR, etc.), “Viewers and Players” (for anything used purely for viewing a file, such as video and DVD players, audio and mp3 players, file viewers such as PDF, XPS, Lit viewers, etc.), “Communication” (for all web browsers, IRC, instant messengers, fax or terminal apps, etc.), and “Utilities” (for a bunch of miscellaneous stuff). Each directory can be nested, for example “Utilities” has nested subdirectories containing programs related to file/disk compression, disk operations (such as defrag, mounting virtual volumes, etc.), system (such as CPU-Z, Sisoft Sandra, Memtest and Prime95, etc.), hardware (such as mouse or keyboard settings, CoreTemp, Speedfan, etc.), and security (such as virus scanner and firewall, packet sniffer, Spybot, etc.).</p>
<p>Not only does it make easier to find programs, because you know exactly where to go instead of scanning a long list, it also makes it very easy to tell which programs you have installed. I know there are other ways of doing this, such as using the search feature, or checking Control Panel for installed programs. But I like stuff organized. And after a while, I tend to have so many programs installed that there’s no way I’d remember their names to search, nor at times even recognize their function if I happened to see the name in Control Panel. But if I have the Start Menu organized, then if I see a listing such as Start Menu &gt; Programs &gt; Video &gt; VirtualDub, then I instantly recognize that VirtualDub was that program I downloaded off the web six months ago to edit videos.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.essayweb.net/2009/11/07/fixing-the-start-menu-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Experiences with Windows 7</title>
		<link>http://blog.essayweb.net/2009/11/07/experiences-with-windows-7/</link>
		<comments>http://blog.essayweb.net/2009/11/07/experiences-with-windows-7/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 15:54:21 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://blog.essayweb.net/?p=84</guid>
		<description><![CDATA[I recently switched from Windows XP to Windows 7. This was a big switch for me, since I had avoided Vista, so I went pretty much from an 8 year old 32 bit operating system, to the newest 64 bit OS from Microsoft. As you can imagine, it has been a learning experience. My main [...]]]></description>
			<content:encoded><![CDATA[<p>I recently switched from Windows XP to Windows 7. This was a big switch for me, since I had avoided Vista, so I went pretty much from an 8 year old 32 bit operating system, to the newest 64 bit OS from Microsoft. As you can imagine, it has been a learning experience.</p>
<p>My main reason for the switch was to get more memory. Some of my applications &#8211; Photoshop and 3ds Max in particular; use massive amounts of memory. I was living under the 32-bit OS limitation, which meant about 3.4GB of usable memory. This was not enough. Switching to 64 bit Win 7 has allowed me to expand the system RAM to 16 GB.</p>
<p>The transition has not been very smooth, though I don’t blame Windows 7 for that. Since I never bothered with Vista, I have skipped a step and am learning the changes of two versions simultaneously. So it’s mostly my own inexperience.</p>
<p>I plan to blog a few of the problems I encountered. Perhaps they’ll help someone else going through the same thing, or other people might have suggestions or advice for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.essayweb.net/2009/11/07/experiences-with-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
