• The Forums
  • About
  • Archives
  • Categories
  • Archive for September, 2011

    Slow HP Server running Windows 2003 R2 64bit


    2011 - 09.19

    There are times when you think to your self “Why the Hell Windows, just, WHY!?”

    This is generally when you realise that something so simple is causing the server to behave completely erratically but you can’t put your finger on it. In this case, I have a HP DL385 quad core, 8Gb of ram running Exchange. I thought initially that install the BESx software on the server killed its speed. It still functioned, just ridiculously slowly.

    It came to a head tonight when I had to patch it and it ground to a halt. It’s soooo sloow. I started researching what could cause it. Everyone did the usual posts of reboot in to safemode, is it quick then, did you do this patch, that registry edit. I thought I’d start with the basics and actually disable the services I don’t need/want.

    Off went DHCP client (it’s a fixed IP server), next went the HP Smart Array SAS/SATA Event Notification Service and voila! All of a sudden, the OS starts performing correctly and at full speed!

    Thanks HP, yet another service from you guys that breaks your hardware!

    Reset Apple OS X password


    2011 - 09.09

    I don’t know about you but administering Macs is a whore of a job. The good stuff though is the bottom end of it being a BSD/Linux system you can do stuff like reset the admin password when a user brings you their Mac from home and begging you to help:

    Power on the Mac, push and hold AppleKey+S and it’ll boot in to single user mode (God/Root)
    Do ‘mount -uw /’
    Do ‘rm /var/db/.AppleSetupDone’ (Makes the OS think it hasn’t been initiated yet)
    Do ‘shutdown -h now’

    Upon power up you are greeted with the OS thinking it’s all new and shiny. Register a new account (not one that exists) and bang, you have a new admin account and can reset the password to the old one if you wish.

    Find & Update legacy mailboxes


    2011 - 09.05

    I don’t know about you, but I still create my users using an old VBS script. It creates the users fine but the Exchange Server is 2007 so it creates a legacy-mailbox type which can’t be used from OWA.

    Easy fix, in PowerShell, search and apply mandatory properties to fix them. You can take this on the end of a VBS script if you call it from a PowerShell prompt:

    Get-Mailbox -server SERVERNAME -RecipientTypeDetails LegacyMailbox | set-mailbox -applymandatoryproperties

    Simple, eh?