Uninstalling Programs on Windows 7
This demonstration video shows you how to uninstall applications on Windows 7. For this video I intentionally sabotaged my computer with a bunch of applications which I don't recommend anyone actually download, just to show viewers the various tricks that some programs play to prevent you from removing them.
This is the third video in a series developed for my Home PC Maintenance course. Enjoy!
Check Your Hard Drive Space Using Windows 7
The following video shows you how to check your available hard drive space using Windows 7. It also explains how to use the Disk Cleanup Wizard, Compress, and Index options under the Windows 7 Drive Properties window. This is the second video in a new series I've developed for my Home PC Maintenance course.
Defragmenting Your Hard Drive on Windows 7
This video I made tonight will teach you how to defragment your hard drives on Windows 7. This is the first video in a new series I am creating for an upcoming Basic PC Maintenance Course.
PHP On Windows 7
Last week I decided to take the plunge and install the release candidate of Windows 7 on my office workstation where I happen to do a lot of web development and testing. My development stack consists of Netbeans IDE, PHP 5.2.8, and IIS 7. There are plenty of other quality tutorials out there explaining how to get PHP working on IIS 7 so I won't bother beating that particular dead horse. However there was one quirky difference between installing PHP on Vista and installing PHP on IIS 7 that developers may want to be aware of before they follow my lead.
The Problem : Editing php.ini as a Standard User
During the process of installing PHP on Windows 7 you will be required to copy php.ini into the C:\Windows directory, and later point you'll most likely need to edit this file to suit your needs.
On Windows Vista I simply wasn't allowed to edit files under the \Windows directory (specifically php.ini) when logged in as a Standard User. Windows 7 was more than happy to allow me to modify and save this file in the same location, logged in with the same credentials. But even after restarting IIS my configuration changes never took effect.
The problem was caused by something called the Virtual Store, an application compatibility feature that existed in Windows Vista but works a little bit differently in Windows 7. Where Vista wouldn't let me edit this file at all, Windows 7 happily lets me modify it but transparently saves the changes in a different location. The updated php.ini was stored in %UserProfile%\AppData\Local\VirtualStore\Windows\php.ini. The service account which IIS runs under can't see this updated file
The Solution: Run As Administrator
When editing php.ini, don't simply double-click it and make changes. You must run your text editor as an administrator to edit the file, otherwise the changes will be saved to the Virtual Store.
