Dave Hildebrand.com

The IT Crowd

Microsoft Offends Some, Causes Knee Slaps For Everyone Else

Posted on July 3rd, 2009 by Dave

A bit of a controversy over a recent Microsoft IE 8 advertisement. While it has caused many a Maude Flanders “think of the children” diatribe, I think it is actually quite funny.

Take a look for yourself.

IT Humour: Update

Posted on July 3rd, 2009 by Dave

Last year I posted a video that would make any IT pro laugh hysterically. I said the creators should win an award for their work, and they did just that. The folks over at thewebsiteisdown.com have not rested on their laurels and have produced two more gems. I feel for the IT pro who has to deal with Chip the sales guy as he uses “Excel” in inventive ways and as Chip calls for tech support for his failed hard drive.

Remember to all ways remain calm. ;)
Read more on “IT Humour: Update” »

A Time for Change

Posted on July 2nd, 2009 by Dave

It has been quite some time since I’ve had a new theme here at the blog. I’ve decided it is time to get up to date on HTML 5 and what you see is a minimalist HTML 5 based theme. I will be styling to my liking as time permits.

Top 5 Features to look forward to

Warning: Highly technical one and a half hour video on HTML 5 goodness.

How to Crack WEP

Posted on July 2nd, 2009 by Dave

WEP is the redheaded stepchild of WPA & WPA2. For quite some time it has been very easy for someone with limited Google searching skills to crack. In the video below the presenter shows you how easy it is to crack WEP.
Read more on “How to Crack WEP” »

Rain Gutter Cable Tray

Posted on June 22nd, 2009 by Dave

Rain Gutter Cable Tray

Rain Gutter Cable Tray


This is the most ingenious use of a rain gutter for something other that shunting off rain I have ever seen. My office is currently in cable hell and this lil trick just might be the thing to fix it.

Check it out over at Flickr.

IMF Updates Keep Prompting for Installation

Posted on June 22nd, 2009 by Dave

With the recent update to the IMF signatures for Exchange 2003 I got caught in a never ending circle of installation prompts. The new update would install, then last months update would ask to install and so on and so on. After realizing what was going on I went in search of answers. The 1st thing to try was to reset the Windows Update Cache. It can be done by plopping the code below in to a bat file and running it on the offending server.

net stop bits
net stop wuauserv
regsvr32 /u wuaueng.dll /s
del /f /s /q %windir%\SoftwareDistribution\*.*
del /f /s /q %windir%\windowsupdate.log
regsvr32 wuaueng.dll /s
net start bits
net start wuauserv
wuauclt.exe /resetauthorization /detectnow

This did not solve the issue for me. I turned out that my WSUS server did not mark the old IMF update as declined. Once the old update’s status was changed to declined the update cycle was stopped dead in its tracks.

Remove a Windows Service

Posted on May 6th, 2009 by Dave

Last night I moved my PRTG virtual machine to my newly installed ESXi server. The move went well, but when I went to boot up the PRTG VM the service wouldn’t start. PRTG was nice enough to tell me that I had another copy of the service running on the network and even gave me the command to find the PC it was running on.

Turns out it was running on an old monitoring PC I had used years before that was still powered on. Since I still use it for a couple of other monitoring apps I couldn’t just turn it off. As a temp fix I stopped the service and set it to disabled. Now the PRTG VM started up and began collecting data once again.

As the PRTG uninstaller did not remove the PRTG service from the old monitoring PC I still needed a way to pitch it even though I had disabled it. A quick search turned up a couple of options, the easy way and the slightly more difficult way.

The Easy Way:

sc delete “service_name

In my case the command was:
sc delete PRTGService

The Slightly More Difficult Way:

**Dislaimer: This process involves working in the Windows Registry. Before deleting any file please make a backup in case of borking your system.

  • Run Regedit
  • Find the registry entry “HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services”
  • Look for the service there and delete it.
  • WSUS 3.1 and the SelfUpdate Virtual Directory

    Posted on January 18th, 2009 by Dave

    I came back from my extended leave to find that my workstations and servers had not checked into the WSUS server for months. After a bit of detective work the issue came down to the SelfUpdate virtual directory in IIS was missing. The Microsoft help page details how to fix the issue but wasn’t completely helpful. More on that later.

    Here is what I did to get my clients checking in again.

    Check the folder permissions on the SelfUpdate directory, located at C:\Program Files\Update Service\SelfUpdate. Make sure the permissions like this;

    Group Permissions
    Administrators Full Control
    System Full Control
    Domain/Users or Local/Users Read&Execute, Read, List Folders
    IUSR_ComputerName Read&Execute, Read, List Folders

    In my case the IUSR_ComputerName permission was missing.

    After adding the correct permissions I looked for the re-installation msi, Selfupdate.msi. The only problem is that the SelfUpdate re-installation msi was not found on my WSUS server. Turns out in the recent WSUS update to 3.1 this installer can become corrupted and not installed on the server.

    To get the Virtual Directory back I would have to install it by hand. Here are the settings you need to create it;

    Open Internet Information Services (IIS) Manager. Right click on the “Default Web Site” and choose;

    • New
    • Virtual Directory…
    • It started the VD Creation Wizard
    • Alias = SelfUpdate
    • Path = C:\Program Files\Update Services\SelfUpdate
    • Finish the wizard.
    • Right click on the newly SelfUpdate and choose Permissions.
    • I added “Authenticated Users” and gave them the default rights:
      • Read & Execute
      • List Folder Contents
      • Read

    After completing these steps I ran “wuauclt /detectnow” on each of my servers. I left the workstations to check in on their own.

    Within 12 hours the number of missing clients had gone from nearly 200 to less than 50. Once everyone logs in on Monday morning this number should dwindle to nothing.

    Diskeepers Business Practices

    Posted on January 13th, 2009 by Dave

    I have been using Diskeeper’s products for 6 years and have commented on them before. It is my opinion that their products are slipping.

    But another review of their products is not the reason for this post. I received a Christmas card from them this year and inside of it was a quote from L. Ron Hubbard, of Scientology fame. I thought it was quite odd to feature a quote from him inside a Xmas card and noted it on Twitter, saying something along the lines of “seriously thinking of ending my business with Diskeeper”.

    Not long after a had a comment on said Tweet which informed me of a legal dispute with a former employee suing Diskeeper for forcing Scientology down his throat.

    I really cannot stand the integration of church/religion and state or your place of employment. I do not care that it was a quote from the writer of this classic pile of crap or if it had been a quote from the Pope, or the Dalai Lama. Leave your preaching to your personal life.

    So this ends my business relationship with Diskeeper. Time to find a new application to keep my disks unfragmented. Note: On home machines I like Defraggler

    Better Late Than Never

    Posted on January 10th, 2009 by Dave

    The Windows 7 Beta launch yesterday had its share of problems and the Windows 7 team took notice. They have extended the beta download time and increased the number of keys beyond the 2.5 million initially slated for download.

    I tried for most of Friday to get my keys but was unable to get past the green circle of death. Today the process was painless and carefree.

    I haven’t had the time to install it yet, but look forward to doing so and seeing if the hype meets expectations.


    win7beta