Rename a client on an Essentials network

Dont PanicI see this question crop up a lot, and people can get themselves tied up in knots second guessing the Essentials Dashboard.  The key thing to remember is DON’T PANIC, as our dear friend Arthur Dent was often told.

Firstly, why do you want to rename your pc? Actually scratch that, you wouldn’t be here if you didn’t have a good reason. (Obviously)

Secondly, how are you planning to do this? Because, stop right now.. thank you very much. (excuse the Spice Girls reference) Read more of this post

Quick Fix: Hide users from Essentials 2012 R2 Dashboard

If you have installed Exchange 2013 into your Essentials network, chances are upon loading the dashboard you will see a large amount of new users appear, you may even notice an alert telling you, you have too many users!

Licensing

These are all of the exchange service accounts, and you may decide you don’t want them to appear in your dashboard.

Read more of this post

Windows Server 2012 R2 Essentials –You do not have permission to open the dashboard.

A question came up in the Essentials Forum recently which prompted me to build quite a large lab, and not even manage to repro the issue. The issue affects both the Essentials Role and the SKU., but it does not appear to affect R1.

The symptoms were, that a user of the Domain Admins was unable to open the Dashboard, being greeted instead with this error..

You do not have permission to open the dashboard

Read more of this post

Windows Server 2012 Essentials, An Error prevented the Dashboard from opening

Windows Server 2012 Essentials LogoThis is an issue that has caught me out once or twice in my testing and general messing about with Essentials over the last age, and also someone in the forum just posted a question along these lines so i thought it worth a post. I have been struggling with a bit of ‘writers block’* recently and this seemed to be something easy to get back into blogging again with.

* I do not consider myself to be a writer, merely a lazy admin who had nothing interesting to say.

Read more of this post

PowerShell, Make it do something useful!

powershell2xa4$users = ((Get-ADUser -filter * | where-object { $_.GivenName -ne $null }) | foreach{ $_.Name})
foreach ($user in $users)
{
        $FirstName = (Get-ADUser -filter {Name -eq $User} | foreach {$_.GivenName}).ToString()
        $SurName = (Get-ADUser -filter {Name -eq $User} | foreach {$_.SurName}).ToString()
        $DisplayName = ("$Firstname" + " " + "$Surname")
        $DisplayName
        Set-ADUser $User -DisplayName $DisplayName
        Set-ADUser $User -Description "User Created by Windows Server 2012 Essentials Dashboard"
}

You might be wondering what the hell that means?

Read more of this post

%d bloggers like this: