Archive for the ‘Windows’ Category

.msi Install Problem

Thursday, February 18th, 2010

I had to install an msi file on Vista today. An msi extension means the file is a Windows Installer file.

When I right-clicked and selected ‘install’ it failed. So I right-clicked again, thinking it had to be run as administrator, and there was no ‘run as administrator’ option.

Fortunately, there is a workaround.

1. Open up the command prompt in ‘run as administrator’ mode.

2. Navigate to the directory where the msi file is located.

3. msiexec  /a “The Big App.msi”

The /a will install the file as an administrator.

Deleting an ActiveX Control in Vista

Thursday, July 23rd, 2009

I never thought removing an activex control could be so obfuscated.

Recently I ran Secunia PSI which checks the versions of programs to see if they are up-to-date and are a security risk. One program that showed up was Trend Micro’s Housecall activex control which was woefully out of date.  Not using housecall anymore I though it simple to delete the activex control. Hah!

The control was firmly esconced in the Windows/Downloaded Program Files directory. Even starting Windows explorer as an admin did not help.

I opened Internet Explorer 8.0 > Tools > Manage add-ons.

The activex control was nowhere to be found until I selected All add-ons under the Show: label. I scrolled down to the Housecall activex control, right-clicked on it, and chose More Information. Then click Remove which will delete the control.

Telnet in Vista?

Tuesday, May 26th, 2009

I needed to use telnet today to see if my ISP was blocking a port. No telnet on Vista. After some searching, I found out that it is not preinstalled (unlike Windows XP) so it needed to be installed. Here is how to install it:

  1. Click start then control panel
  2. Click Programs and Features
  3. Click Turn Windows features on or off (on the left side)
  4. Select the Telnet client
  5. Click OK. A dialog box will appear to show the installation. Note that it may take several minutes, even on a fast computer.

How to Search for File Extensions in Vista

Tuesday, May 19th, 2009

It took me quite a while to figure out how to search for file extensions using Vista’s new search interface. In searching for an answer, *many* other people were perplexed, too.

In XP, you could type:  *.xls  to find all the Excel spreadsheets. That does not work in Vista. Here is what you do:

In the search box:

To search for one extension, type in:

ext:(*.xlsx)

or

ext:*.xlsx

To search for more than one extension, type in:

ext:(*.xlsx OR *.xls)

Make sure the OR is capitalized.

Here is a link to more search features:

Desktop Search

Doug

XAMPP Install Problem on Vista

Thursday, December 25th, 2008

I was installing XAMPP 1.70 for Windows on my Vista machine so I could run a copy of WordPress locally so I could work on a plug-in (I know, run-on sentence). Everything installed fine on Windows XP but Vista had problems. Apache and MySQL server started fine from the control panel. But when I typed in ‘localhost’ in Firefox, I had a PHP error message. The language options would not appear. BTW, the install path was c:xampp.

After some futile debugging, I realized I had a copy of PHP in the c:php directory which I installed so I could debug locally using Expression Web. Apparently XAMPP and this PHP install did not work together. After uninstalling c:php and reinstalling XAMPP everything went smooth. BTW, I uninstalled PHP on XP a few days ago which is why the XAMPP install went fine.

I highly recommend installing XAMPP for testing on your computer. I keep a copy of WordPress installed so I can test plug-ins and themes before using them live. No more FTPing for testing.

Vista and the Jumping Cursor

Thursday, October 23rd, 2008

I bought a portable USB Logitech laser mouse for my Vista encrusted laptop. Great for on-the-go people like myself. Lately, I’ve run into a problem: the cursor, for no apparent reason, would jump to a corner of the screen. All were fair game. After spending too much time perusing the Internet for a solution, none of which worked (clean the mouse, turn over the mousepad, update the driver, roll back SP1 (didn’t do this), disable the touch pad, etc). Replacing the mouse with another DID work but I wanted to make this one work.

Oddly enough, the problem ended up being the mousepad I was using. The pad is darkish blue with a Hard Rock cafe logo on it. I took it away and used the desktop which works fine. The other laser mouse I had worked fine on it…but not the Logitech. I read the laser mice are sensitive; I believe!

Doug

Vista Users: Reclaim 1.5GB of Disk Space

Wednesday, March 26th, 2008

If you have Vista and have upgraded to service pack 1 you can reclaim 1.5 GB of disk space.

Windows Vista Service Pack 1 installer will not remove the older versions of Vista files from the hard drive. This is because the older files may be required in case you decide to uninstall SP1 later from the system. It has been reported that this amounts to 1.5 GB of disk space. If you are satisfied with the performance of Windows Vista SP1 and unlikely to remove it later, why not reclaim some disk space by removing all the older Vista files. Note that once this is done SP1 cannot be uninstalled.

It is easy and takes less than a minute. Just open your Windows command prompt and type vsp1cln.exe (short for Vista SP1 Cleaner).

vsp1cln.exe is added to your Windows Vista System folder after you install Vista SP1

This will make Windows Vista Service Pack 1 permanent on this computer. All the older files are deleted now and your hard disk has about 1.5 GB of extra space.

Fix Weird Problems in Windows XP and Vista

Friday, March 21st, 2008

This is a bit off the subject but is important.

I noticed my computer time was off a few minutes. Big deal. But when I tried to update the time (in XP double click on the time in the notification area, internet time tab, then ‘update now’ button) an error occurred (RPC not available). I tried this with a few different time servers (I use clock.via.net) and all gave the same problem.

Without boring details, what I did was verify the operating system files were intact and correct.

This sounded like a long shot but amazingly it worked.

I would recommend doing an operating system verify once a month or if you have strange problems with your computer.

Doug

Find Startup Programs

Wednesday, November 29th, 2006

Many people complain that their computer is too slow and it takes a long time to boot up. Startup programs are often the culprit. There are many hidden startup programs that are installed without the user’s knowledge – monitors and schedulers to name a few.
msconfig comes with Windows XP and does a minimal job of showing startup programs. We like autoruns by SysInternals. It is freeware and shows MUCH more than just startup programs: drivers, services, print monitors, browser helper objects…the list goes on. You can hide signed Microsoft entries so only 3rd party items show up. Autoruns makes it easy to disable/enable startup entries. This can also be the bane of autoruns.
Autoruns has a command line mode, too. And it runs on all versions of Windows; 95 on up.

Doug