Thomas H. Chapin IV

Quote for ya.

Posted by Thomas Chapin on Tuesday, May 20th, 2008

“I have a mind that works like a steel bear trap. Important and occasionally crucial facts stumble into my head only to be brone-crunchingly snapped shut upon, never to be remembered again…”

continue reading

Hot Air Balloon Ride

Posted by Thomas Chapin on Tuesday, February 26th, 2008

This past Saturday, I went on a hot air balloon ride! We went over a mile high, and it was awesome!
My business partner, Chris Tingom, came along (he rode in the other balloon) and he took a video of the experience, and a few photos. I took a video as well, but he beat me [...]

continue reading

Litmus Test for Door to Door Sales

Posted by Thomas Chapin on Monday, October 22nd, 2007

If I ever get down on my luck, I’m totally going to start a business selling “No Soliciting” signs from door to door.
The way I see it, it’s practically a guaranteed sale…
“Sorry, we’re not interested in whatever you’re selling! In fact, we hate door to door sales people!”
“Well in that case, you’ll love this sign!”
The [...]

continue reading

Get rid of those pesky Windows XP temp files

Posted by Thomas Chapin on Thursday, January 12th, 2006

I just recently stumbled upon a nifty way to make my windows xp machine run a little bit faster. Check it out.

If you search your entire computer for temp files, you may be surprised to find hundreds of megabytes worth of data that has been sitting around since God knows when. Windows is supposed to automatically delete these, but sometimes it just doesn’t happen. Now… supposedly when you boot up your computer or internet explorer, Windows will scan through your temp files (looking for recently viewed web pages, etc). So if everything is cluttered up, things might run a little bit slow.

So the goal here is to delete all temp files before we shut down the system at the end of the day. This way, everything is fresh and clean, come next morning!

  1. Open up a copy of notepad and paste in the following chunk of text:

    @echo off
    taskkill /F /FI “USERNAME ne SYSTEM” /FI “USERNAME ne LOCAL SERVICE” /FI “USERNAME ne NETWORK SERVICE” /FI “IMAGENAME ne explorer.exe” /FI “IMAGENAME ne cmd.exe” /FI “IMAGENAME ne taskkill.exe”
    RD /S /q “%HOMEPATH%\Local Settings\History”
    RD /S /q “%HOMEPATH%\Local Settings\Temp”
    RD /S /q “C:\temp”
    RD /S /q “C:\Windows\Temp”
    SHUTDOWN -s -t 01


  2. Save the file off as “C:\shutdown.bat” (make sure you set the file type as “All Files”, *not* “Text Documents”)
  3. Browse to your C:\ drive using windows explorer and right-click on the shutdown.bat file. Select the “Create Shortcut” option in the context menu.
  4. Rename the shortcut file to “Clear Temp Files & Shut Down”.
  5. Right-click on the shortcut and select “Properties” from the context menu.
  6. When the properties window pops up, make sure you are on the “Shortcut” tab and click on the “Change Icon” button. If it gives you some kind of error about the file not containing any icons, ignore it and just click OK.
  7. Where it says “Look for icons in this file:”, make sure that it says, “%SystemRoot%\system32\SHELL32.dll”.
  8. Select the red, square icon with the circle and a vertical line in the middle. This is the shutdown icon that you see when you click on your start button and select “Turn off your computer”.
  9. Ok your way out of there back to your explorer window.
  10. Drag the shortcut to your desktop.

Now, whenever you want to shut down your computer, just double-click the icon on your desktop!
Windows will clear your temp files after killing all your programs (it can’t clear temp files if programs are currently using them), and then it will proceed to shut down.

IMPORTANT NOTE: If you are using Windows XP Home, you may not have the taskkill.exe file, as it only comes with Windows XP Pro by default. Click here to download it and extract it to your C:\Windows\System32\ folder.

Posted in: Tip and Tricks.

Leave a Reply