WSUS 3.1 and the SelfUpdate Virtual Directory

Sunday, January 18th, 2009 | Tech Help | 5 Comments

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.

Tags: , ,

Diskeepers Business Practices

Tuesday, January 13th, 2009 | Tech News | 2 Comments

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

Tags:

Better Late Than Never

Saturday, January 10th, 2009 | Tech News | Comments Off

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

Tags: , ,

Printers = Hate

Monday, January 5th, 2009 | Tech Help | Comments Off

A user reported an issue with her printer this afternoon. Whenever she tried to print it locked up her PC. I tried all my usual tricks to hack out the offending job, but nothing I tried was working. The print spooler would crash seconds after starting. This error kept taunting me:

“Spoolsv.exe – Application Error”

“The instruction at “0×77fcc2c0″ referenced memory at “0×00000000″.

“The memory could not be written.”

I popped out my trusty Troubleshooting Swiss Army Knife (read: Google) and quickly had another tool to fight the tenacious spooler.

It turns out the most common cause of the error is an abundance of .SHD and .SPL files in the spool directory. These files are created by the spooler to save the spooled data of a print job. The .SPL file comprises drawing commands and the .SHD file comprises job settings information of the print job.

To fix spoolsv.exe application error, you will have to remove these files from the system. To do this, perform the following steps on your Windows XP computer:

  1. Open Control Panel, select Performance and Maintenance, select Administrative Tools and then select the Services option.
  2. In the Services management console, locate the Spooler services, right-click on it and select Stop.
  3. Next, open the C:\Windows\System32\Spool\Printers folder. (Here, we are assuming that your Windows is installed in the default C:\Windows folder)
  4. Delete all the .SHD and SPL files from this folder.
  5. Next, open the TMP folder and delete all old and unused files from this folder.
  6. Finally, restart the Spooler service from the Services management console.

Just like that the users printer problems disappeared.

Tags: , ,

Moving WSS 3.0 Databases

Tuesday, November 18th, 2008 | Tech Help | 2 Comments

WSS 3.0 uses Microsoft SQL Embedded Edition (MSEE) for its data store. When MSEE is installed, the data files are installed to your C: drive by default. Since you do not want to have a file on your system drive that can grow exponentially, you need to move it to another drive. Here is how you do it.

Note: While completing this process your WSS site will be offline to your users.

  1. Shutdown all Windows Sharepoint services & IIS Admin service: This will ensure that there are no locks on the files you need to move.
  2. Open a cmd prompt and cd to C:\Program Files\Microsoft SQL Server\90\Tools\binn
  3. Enter sqlcmd -S \\.\pipe\mssql$microsoft##ssee\sql\query -E: This starts the Microsoft SQL Server 2005 Command Line Query Utility
  4. Enter the following commands to view the available databases & hit Enter after each:
    • SELECT name from sysdatabases
    • GO

    You should see a number of DBs, move the following 4 databases (GUID’s may be different):

    • SharePoint_Config_c464b7ce-59ef-4820-9f75-f46a0937c08e
    • SharePoint_AdminContent_451452bf-9dc0-40c9-be18-14f14bc23007
    • WSS_Search_NETSERVER_86a140c5958d4a5d97c8c2cbee745424
    • WSS_Content
  5. Enter the following commands & hit Enter after each line. Repeat for each database.
    • EXEC sp_detach_db @dbname = ‘Content_Database_name’

    • GO
  6. Move the databases to their new location. They can be found in C:\Windows\SSQL\Data\.mdf and _log.ldf
  7. After the files have been moved run the following commands (Make sure to change the itialic sections to your specifics):
    • EXEC sp_attach_db @dbname = ‘Content_Database_name‘, @filename1 = ‘drive:\path\Data\.mdf’, @filename2 = ‘drive:\path\Data \_log.ldf’
    • Go
  8. Repeat step 7 for each database you moved.
  9. Restart IIS Admin services and all Windows Sharepoint services
  10. Ensure your Sharepoint site is working

If this is done before you build your site it will take no time at all to move the DBs to the new location.

Tags: ,

Moving Pictures…

Friday, September 12th, 2008 | Life | Comments Off

Three more videos of our little monster.

Tags: ,

For your viewing pleasure

Friday, September 5th, 2008 | Life | Comments Off

Here is an old video of Keely at about 2 months old:

This one is from a few weeks ago during our visit to Thunder Bay:

› Continue reading

Tags: ,

More Registry Goodies

Wednesday, July 16th, 2008 | Tech Help | Comments Off

We are in the process of installing a policy and procedure management application at the hospital. It has been setup so that users are not required to enter their user name and password to access the site, it is done via LDAP. To get the single-sign-on benefits of the LDAP look ups we needed to add the domain name to the list of trusted sites in IE. This can be done via Group Policy, but, my experiences with this group policy setting has been mixed. Each time I configured this Group Policy Object setting it turned off the option for the user to add sites. Each new site needed to be added by me in to the GPO. While I limit what my users can change and access I do not like getting calls for simple stuff like this. What was I to do?

› Continue reading

Tags: , ,

Set the IE homepage via the registry

Friday, July 11th, 2008 | Tech Help | Comments Off

We just got in a batch of HP desktops and so far they look to be a good investment. There isn’t much crap/bloat ware installed on it, so we can get them out the door to our users quite quickly. We have had only 1 minor issue with them. For each new user who logs in, the system sets the IE homepage to an HP/AOL site, not our corporate intranet. Instead of emailing our users instructing them on how to set the homepage back to our intranet site I logged into our Desktop Authority server and added a new option under the registry settings.

› Continue reading

Tags: , ,

IT Humour

Thursday, July 3rd, 2008 | Life | 1 Comment

After years in the IT field, I have seen incidents and users like this. I laughed my ass off when the IT guys goes into his boss’ email and deleted the DO NOT REBOOT THE WEB SERVER!!!!!!! email.



IT Guy Vs Dumb Employees – Watch more free videos

The guys/gals that produced this gem should win an award.

Tags:

Search

Catagories

Photos

The Mob 018.jpg
The Mob 020.jpg
The Mob 024.jpg
The Mob 016.jpg
The Mob 014.jpg
The Mob 027.jpg

Get Spiceworks!

Free Networking Monitoring Software For Network Management