>NULL: October 2013

Tuesday 22 October 2013

Configure new Offline Address Book on Exchange 2003

This is something that pops up from time to time.

1. Create a new OAB in ESM/Recipients/Offline Address Lists

2. Right click/Set as default

3. Go to the mailbox store ESM/Administrative Groups/First Admi.../Servers/Servername/Mailbox Store

4. Right click/Properties set the Address Book as the new one.

Monday 21 October 2013

Windows 8.1 and Server 2012 R2: Quick start guide for sysadmins • The Register

Having struggled with Microsoft KMS in the past I found this quick guide very useful.

Windows 8.1 and Server 2012 R2: Quick start guide for sysadmins • The Register:

Don't use hibernation? hiberfil.sys too big?

Open an Administrative command prompt.

POWERCFG -H OFF

All done. :)

Android Nexus Root Toolkit

After years of using custom ROM's on my Android phone and tablet I've just come across a great utility I wanted to share, it makes flashing and recovering a Nexus 4 almost n00b proof.

If you have any of the following Nexus devices you can use this handy util to backup, restore, unlock the bootloader, root the device, return it to a stock Google android image and even install the ADB-mode drivers on your PC without the usual hassles.

It works on...
Galaxy Nexus
Nexus S
Nexus 7
Nexus 10
and of course Nexus 4

Instructions and downloads can be found at http://www.wugfresh.com/nrt/ 

I'll be posting more Android related stuff as I find the time to document it.

Error 0x8007005 when activating Office 2013 Office365 (we're sorry something went wrong)

Despite the Office 365 portal saying the product was activated the software continued to display the red banner across the title bars of all Office apps, I was receiving the error 'We're sorry something went wrong.' and error code 0x8007005 when trying to activate.

The solution turned out to be very simple. Run an office application as Administrator and wait a minute until it activates it's self, I didn't need to do anything other than right click Excel and run as Administrator then wait.

It will then tell you it has activated and you can go back to using the apps as usual.

Monday 14 October 2013

Stop Office 365 login passwords from expiring

**You must have the following installed.
*Microsoft Online Services Module for Windows PowerShell
*Microsoft Online Services Sign-In Assistant



Import-Module msonline
$cred = Get-Credential
Connect-MsolService -cred $cred


**Get a list of users and their password expiration status**
Get-MSOLUser | Select UserPrincipalName, PasswordNeverExpires


**Set all users passwords not to expire**
Get-MSOLUser | Set-MsolUser -PasswordNeverExpires $true


**Get a list of commands**
Get-Command –Module msonline