>NULL

Monday, 21 October 2013

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

Tuesday, 17 September 2013

Friday, 30 August 2013

One of the most complete and accessible articles I have read on network theory.

This article explains in simple non-techie terms how various network foundations work in the real world.

What did the Romans ever do for us? Packet switching... • The Register:

'via Blog this'

KB2685811 Will not install. (Kernel-Mode Driver Framework version 1.11 update for Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2)

I found that KB2685811 will not install on some PCs due to problems with WMI, following these steps will repair WMI and allow the update to install.

You may follow these steps and check if the issue persists.
a. Click Start -> Type CMD -> Right click on CMD from the result -> Click Run as Administrator
b. Run the following command one at a time and press enter to execute
• cd /d %windir%\system32\wbem
• for %i in (*.dll) do regsvr32 -s %i
• for %i in (*.exe) do %i /regserver
c. Close all windows and reboot the computer and now try opening the system information

Remote Administration of Terminal Services by Non-Administrators Accounts

How to allow a non-admin RDP access to a Domain Controller without giving Domain Admin rights.

Remote Administration of Terminal Services by Non-Administrators Accounts:

'via Blog this'