Archive for Troubleshooting

Vista: The specified print monitor is unknown

The specified print monitor is unknown

Symptoms

When trying to install a shared network printer in Windows Vista, you get an error which states:

Windows cannot connect to the printer.
The specified print monitor is unknown.

The Cause

This is a bug in Vista. If you disable the UAC, Vista is seemingly unable to add a network printer.

The Fix

To fix this, you’ll need to install a “Performance and Reliability Update”, KB938979. Bizarrely, this update is listed as Optional by Windows Update, and so you may not have installed it. I shall refrain from commenting further on the lunacy of this ;)

Comments (2)

Windows XP Service Pack 2 Halts on “Checking Product Key”

If you’re installing Windows XP Service Pack 2 and it halts or hangs on you while it is allegedly “Checking Product Key”, you can fix it like so:

1) Please go into the CMD prompt (Start/Run –> cmd.exe )

2) Then type cd /d %windir%\inf and make sure we are in that
directory.

3) Then type ren oem*.inf oem*.old, it will go back to the prompt
after giving you some error (Do not worry about it)

4) Then type ren oem*.pnf oem*.old1, it will go back to the prompt
after giving you some error (Do not worry about it)

5) Then goto start – run – type “%windir%\inf” and you will see
the files in the folder.

6) Then find the file by name INFCACHE.1 and take a backup of it
to desktop (by copying it to desktop) and delete the INFCACHE.1
from c:\windows\inf.

7) Close all windows and reboot the computer to safe mode and
start the installation of SP2 and it should go fine.

This solution is dotted all around the internet, but I can’t find it’s original source. If you know the source, let me know and I’ll credit it correctly.

Comments (44)

Vista Crashes: yk60x86.sys

Problem

Vista Crashes (Blue Screens) with an error message mentioning yk60x86.sys.

Solution

We’ve got a bunch of Sony Vaio VGN-SZ5MN laptops at work and a lot of them are blue screening (BSOD) as soon as you plug in the Ethernet cable. If that’s not enough of a clue (hehe), the problem is the Marvell Yukon Ethernet Controller driver.

To fix the problem, download the updated driver from the Marvell Driver page.

Or try this direct link to the Driver Installer for Windows 2000/XP/Vista

Comments (2)

“My computer is running slow”

In an interview a while back, I was asked to troubleshoot a Windows XP Laptop. The scenario was pretty simple: A client had reported that their Laptop had begun to run very slowly, particularly when booting; and it was my job to find the problem.

I thought I’d write down my usual procedure for this kind of scenario. Let’s go!

Check for Virii and Malware

Virii and Malware often consume large amounts of CPU time while going about their nefarious business, so let’s check those first:

  • Check Anti-virus is installed and up-to-date. Perform a manual check just in case.
  • Check Anti-Malware / Anti-Spyware is installed and up-to-date. Again, perform a manual check.
  • Spybot S&D, HijackThis, CWShredder, and Rootkit Revealer are tools that I find incredibly useful.
  • Filehippo is a great, centralised, place to find free and open-source apps for general troubleshooting.

Check your Startup programs and Services

Some useless, and damaging, things can get into your system Startup and Services areas. For example, do you really need to have QuickTime load every time your PC boots? This is another good place to check for Malware, and weird names like “fke38282gje.exe” should immediately flag your attention.

  • Check the Startup tab in the System Configuration Utility for anything suspect (Start > Run… > msconfig).
  • While you’re there, check in the Services tab for anything out of place.
  • Google anything you find, and you’ll usually find out if it’s malicious or not.

System Configuration Utility

Defrag and RAM

There are of course, perfectly natural reasons for a system’s slow down. The two main ones being a fragmented hard drive, and a lack of sufficient RAM.

  • Check Hard Drive fragmentation (Right click My Computer > Manage > Storage > Disk Defragmenter).
  • Check your RAM (Right click My Computer > Properties). XP really should have at least 512MB of RAM.

Disk Defragmenter

Less likely causes

In addition, you may want to check a few other things which are much less likely.

As the PC was reported to be slow to boot, check the DHCP Server and also the DHCP settings on the client PC. If a system is set to grab a DHCP address it will often wait a long period of time, for a response from the DHCP server, before timing out. After that it gives itself an AUTO-IP and continues to load. Because nothing really happens for a while, this will appear as though the PC is slow to boot. A time out might occur if the DHCP server is down, or there’s a problem with your network downstream.

If the PC is reported as being generally slow, check that the Hard Drive is running in DMA Mode, and hasn’t fallen back to PIO mode. PIO is a slower, and much more CPU intensive, method of accessing Hard Drives than DMA. Often if Windows notices that data is being corrupted in DMA (CRC failures), it’ll fall back to PIO mode, resulting in a much slower system. Steps: Right click My Computer > Manage > Device Manager > IDE ATA/ATAPI Controllers. Check both Primary and Secondary IDE Channels by right clicking, Properties, then looking in the Advanced Settings tab.

Check out this Microsoft KB article for a lot more detail on the issue.

2007-07-16_145631.png


Did this help you at all? Is there anything I should add? Let me know in the comment section below!

Comments

Network policy stops you from using Windows Update

After re-installing the OS on a Dell Powervault 715n, I remembered that out of the box, it won’t connect to Windows Update (which is of course really, really stupid for a Windows 2000 Server based NAS).

If you RDC into the box, and then try to connect to Windows Update, you’ll see a message like this:

Access Denied

Network policy settings prevent you from using Windows Update to download and install updates on your computer.

If you believe you have received this message in error, please check with your system administrator.

Solution

To get around this on the 715N, follow these instructions:

  1. Log in as Administrator
  2. Go Start > Run… > gpedit.msc
  3. In the Left pane: Open User Configuration, Administrative Templates, and then click Start Menu and Taskbar
  4. In the Right pane: Double-click on Disable and remove links to Windows Update
  5. Choose ‘Disable’ and click OK
  6. You can now get Windows Updates via the Start Menu
  7. Don’t forget to Enable Automatic Updates! (Control Panel > Automatic Updates)

For any other Operating System, have a look at the Microsoft KB article

Comments