Killing All Chrome Processes

Chrome has (what’s supposed to be) a nifty feature under the hood: each tab runs as its own Windows process. This means – in theory – that if one tab were to crash, it won’t take down the rest of your open tabs. You should – in theory – be able to close the misbehaving tab and go on about your business.

But what happens when Chrome itself stops responding? You could try using the “X” (close) button in the upper right corner of the Chrome window, or you could try CTRL+SHIFT+Q to exit Chrome. But what if Chrome doesn’t respond to mouse clicks or keyboard sequences? You could always open Task Manager and kill the Chrome processes… but remember, each tab is its own process. If you have 30+ tabs open, your Task Manager will probably look like this:

chrome_task_manger

Do you HAVE to right-click on each process and choose “End Process”?

Of course not… if you’re using Windows XP or later. Just open a command prompt and type the following:

TASKKILL /IM chrome.exe /F

Taskkill, which is built in to Windows, does exactly what it says on the tin: kills any process you want. The /IM switch tells Taskkill to use “image name” (or process name) instead of the numerical “process ID”. The /F switch tells Taskkill to kill all instances of the image name. By the way, Taskkill works on any Windows process, not just Chrome. You can use it to kill all instances of IEXPLORE.EXE or FIREFOX.EXE or WINWORD.EXE… or anything else you need killed. Just change “chrome.exe” to whatever process you want.

Outlook and 0x8004010F Errors

I recently decided to move my Documents folder from Windows 7’s default location to a cloud storage provider. So what had been:

c:\users\jim\documents

was now

c:\users\jim\dropbox\documents

When I opened Outlook, I was told that my default PST file could not be located. This wasn’t totally unexpected. but it was still kinda surprising. The user’s %DOCUMENTS% folder is stored as a variable in Windows, and software is supposed to request the %DOCUMENTS% folder, rather than an absolute path like c:\users\user\documents. This is so that If you move the folder to a server or a different partition, third-party software won’t freak out and say that it couldn’t find the folder. And It would seem that Microsoft isn’t following its own guidelines!

But anyway… no big deal, right? I clicked in the “Browse” dialog box and found the PST at the new location. Problem solved, right? Well, no. Everything seemed OK: I could send and receive email, RSS feeds and tweets – but the send\receive operation would return a 0x8004010F error:

outlook_0x8004010f

This means that the PST file could not be located… even though Outlook in all other respects seemed to be working normally.

So… how to fix? Well, you have to create a new (temporary) PST, and tell Outlook to deliver mail there, then change the delivery location back to the original (moved) PST.

Step-by-step instructions for Outlook 2010 follow:

1) Click File > Account Settings > Account Settings.

2) Select the first email account on the list, then click “Change Folder”.

3) Click “New Outlook Data File”.

4) Create a new data file. This can be any name you like, in any location you’d like.

5) In the new PST, click the + to expand the folder tree, choose “Inbox”, and then click “OK”.

6) Click “Change Folder” again, and navigate to the original PST file in the new location. Click the + to expand the folder tree, choose “Inbox”, and then click “OK”.

7) Repeat the process for any additional email accounts.

8) Close the Account Settings window. You might want to also close Outlook and delete the temporary PST file you created in steps 3-4.