Search This Blog

Monday, 21 November 2011

If you need to move your WSUS content you can do so with the wsusutil.exe tool from the Update Services installation folder.  However you may find a little gotcha when you try to move the files, the error

Fatal error: unable to access the log path because of the following error: Access is denied
Well the issue is not always the permissions but actually a bit of semantics.  The command for the move is

wsusuitl movecontent E:\myPath E:\myLog
What the syntax does not say is that you have to specify the logfile name and not just the location, the file will not be created for you.  You must specify the extension .log

Its an easy gotcha to fall for and it had me for over 20 minutes before I sussed it!

Monday, 14 November 2011

BES Express 5.0.3 & SBS 2011 Dispatcher Service will not start

I had one of our team install BES Express 5.0.3 onto a Small Business Server 2011 so that we could support all of five Blackberry users, so this should have been straight forward.  Well as is life it wasn't, it was the team members first BES install and after many hours of head scratching he came back to ask for an escalation.

I took a look and could see the issue was the Blackberry Dispatcher Service was stuck in in Starting mode.  This is never a good state for a service to be in so I knew it was likely that if we fixed this we fixed the issue.

Now BES uses SQL Server Express for its database and this had been installed on the SBS Server, but being SBS Server the SQL Server Browser Service was disabled.  The SQL Server Browser Service is required for Blackberry Administration Server (BAS) to operate.

So I enabled the service and hey presto, Blackberry Dispatcher Service now starts.  The BAS web page still did not load and I had to restart the Blackberry Administration Service - Native Code Container.

Once this restarted the BAS was available and we could get onto the task of adding the Blackberry handsets.

Friday, 11 November 2011

ODBC Links do not save passwords in Windows 7 x64

Had a really interesting one today, setting up an ODBC link into SQL Server 2005 from Access 2007 and no matter what we did the password field would not save the password for our SQL Account.

The customer knew the account worked and the DSN settings on another computer so we were confident it was not those that were at fault.

Well the problem turns out to be Windows 7 x64 and the ODBC applet that is in Administrative Tools.  This is the x64 version and we need the 32bit version for Office to make the link as Office is 32bit.

So we go to this location

c:\windows\sysWow64\odbcad32.exe
If you run this you get the 32bit version of the ODBC applet and its exactly the same, enter your details and hey presto the link works and Access pulls down the data!

Legal Mumbo Jumbo

I know we have to have rules otherwise we would be in France as Al Murray says.  But sometimes the T&C of a contract can be ridiculous and frankly pointless.  Take this wonderful sentence below I have found in a T&C of a contract I am entering.

Any undertaking by the Customer not to do any act or thing shall be deemed to include an undertaking that the Customer shall procure that any user of the Services (to include without limitation any employee, agent or contractor) shall not do such act or thing. 
I mean what does that mean?  I have read it 10 times now and I am still unsure to be honest. Do I really have to pay someone £100 an hour to decipher this for me?  Is that what six years of Law School does for the world?  If it is then go be a Doctor, they actually help people.

I did not even bother to find out what the definition of "thing" is.

Rant over.

Thursday, 10 November 2011

Windows 2003 Certificate Service will not start

I had a good one today, a Exchange 2003 Server with a SSL Certificate had expired.  So I quickly issued a CSR and renewed the SSL Certificate with DigiCert and away we go Outlook Web Access is working again and Outlook Anywhere.

Then after 3 hours Outlook Anywhere stops working and I get errors in the event log for 58 and 100 stating



So this wasn't a good time as we have users complaining about no Outlook Anywhere.  So what is the cause?

Well the error states about the CA certificate being expired so I used MMC to open the Certificates MMC and then saw that the Root Certificate had expired.  It expired in June mind so that was a little odd.

Well if the Root CA Certificate is expired then it needs to be renewed, this can be done by the Certificate Authority in Administrative Tools.


Choose the new the CA Certificate and agree to the change and you will then find that you have a new five year CA certificate in the Certificates MMC.

I started the Certificates Service and it stayed started!  Hurrah issue over.


Locked out of Symantec System Centre Console?

Although I don't use this application very often you sometimes find a site where the IT Support have left and no one knows the password to the Symantec System Centre Console.  If this happens to you, there is a handy tool from Symantec to resolve this, all you need is administrator access to the server console and you can use the IFORGOT.EXE tool to reset this.

The file and location is shown below, enter the username and password you want and its all done!


Wednesday, 2 November 2011

Just how many Exchange Mailboxes I have I got?

Sometimes we like to know how many mailboxes are on a server or in a database, back in the day we used to count the mailboxes in Exchange 2003.  Well I did, I was greener then!

So if you have Exchange 2007/2010, and if you don't why not?, how do you do this with the Powershell.

Well its simple, open the EMS and use

Get-Mailbox | Measure-Object

If you want to do this in a database then use

Get-Mailbox -Database databasename| Measure-Object

Its that simple with EMS!