About Me

My photo
"Smoke me a kipper, I'll be back for Breakfast" - one man's journey through life with IT and all things related to it whether it's purely technical or just for fun...

Note - Any posts on this blog are purely my own personal opinion and do not reflect any opinions of companies and/or people that I mention. All advice is given to help you but I cannot be held responsible for your actions should you decide you want to try these things out yourself!

Thursday 24 May 2012

Exchange 2010 - How much White Space do I have?

Haven't posted a blog entry for quite some time but that's because I haven't had the time to do one.  Fortunately this little gem landed on my door last week and I think it needs to be shared.  In Exchange 2007 we had to wait for Online Database Maintenance to tells us how much White Space was in a mailbox store.  Now in Exchange 2010 we have a great PowerShell cmdlet that does it all for us:

Get-MailboxDatabase -Status | ft name,databasesize,availablenewmailboxspace

The output will tell you exact how much Available White Space you have - if it's a high amount then to reclaim you have to migrate all your mailboxes to a new store.  Sounds bizarre but it's the best and safest way to do it to avoid corruption, Microsoft do not recommend using ESEUTIL on Exchange 2010 stores.  This is due to the new database schema that is now used.

Happy Defragging!

Monday 26 March 2012

Hotfix - When you try and log on a Windows XP workstation with SP3 using a roaming profile, the profile fails to load

I thought about other useful posts I could put on this blog and decided that hotfixes can be useful.  Most of the time Microsoft Support will be first in the list of Google but having said that some of the fixes I have obtained aren't readily available until later and also their key word searches can be a bit poor.  Mine may not be much better but Google aren't that bad at getting me the answers I need.

Anyway here is my first hotfix that could prove useful for those with Win XP clients, with SP3, that won't log into the domain with a proper roaming profile.  This is a particular issue with Thin Client XP boxes.

http://support.microsoft.com/kb/958058

This is the hotfix we have applied and it does appear to be working well.  Remember any hotfixes should be tested thoroughly and only applied to systems that exhibit the issues described.  Be sure to read Microsoft's guff before you apply them!

Monday 19 March 2012

Exchange 2010 - Scheduled Migrations Made Easy


It would appear that in their infinite wisdom, Microsoft have removed the tools to allow you to schedule migrations. During all my 2003-to-2007 migrations I used this feature heavily for overnight moving of mailboxes that needed to be up the next day. But do not fear Exchange geeks for I have found a useful little article from a fellow Exchange blogger that aided me - this is how it's done...

Wednesday 22 February 2012

TMG - URL Normalization

Hey Folks, found a fix for something I haven't seen before and fortunately it was quite a quick one too.  If you are publishing a website via TMG using a publishing rule you will find that, if your URL contains % symbols or "escaped characters" as the Help file calls them, the HTTP Filter which is on all HTTP/HTTPS rules will block it.  This is how to fix it...


Monday 6 February 2012

PowerShell - Easy Mailbox Stats Gathering

Just a quick bit of PowerShell for those that use it as often as I do.  This is something I created a long time back for reporting against user mailbox sizes.  You can tailor it to your own needs of course if you know the right attributes:

Get-mailboxstatistics –Server GLL-EXCHMB-01 | select-object servername, storageGroupname, databasename, DisplayName, @{name="TotalItemSize(KB)";expression={$_.TotalItemSize.Value.ToKB()}},StorageLimitStatus,LastLogonTime, LastLoggedOnUserAccount,ItemCount, DeletedItemCount | export-csv c:\Server_Stats.csv

Have fun!

Wednesday 1 February 2012

Documentation - Can it be easier?

Just a quick post to say that someone has showed me one of the best features I have ever seen in Windows and hopefully it will make life documenting installs and configuration so much easier than using Print Screen and Wordpad...


Tuesday 31 January 2012

Windows Server 2008 R2 - Print Servers and different architecture drivers

There comes a time where we all have to upgrade and move on away from old things to the new and mostly it is a good thing to do.  One pain in the side though that I am sure many technicians and consultants alike will face is the prospect of upgrading a Windows 2003 server with a Windows Server 2008 R2 version and want to get those lovely x86 printer drivers going.  Well I have news for you, it isn't always easy...