Windows Server 2019 - Windows Admin Center


After having played around a bit with Windows 2019 server, it was time to see what this “Project Honolulu” was all about. Only to find out it’s no longer called that, it’s now been re-branded to it’s (hopefully) final name: Windows Admin Center

Well, according to Microsoft it’s simply this:

Windows Admin Center is a new, locally-deployed, browser-based management tool set that lets you manage your Windows Servers with no Azure or cloud dependency.

Windows Admin Center gives you full control over all aspects of your server infrastructure and is particularly useful for managing servers on private networks that are not connected to the Internet.

Windows Admin Center is the modern evolution of “in-box” management tools, like Server Manager and MMC. It complements System Center - it’s not a replacement.

The quick definition for me would be a better version of the Server Manager, now accessible through your browser!

But enough talk, let’s take it for a spin!

Off we go, downloading the latest LTSC build for Windows Server 2019 (you will need that version if you want Desktop Experience) and while we’re at it, I’ll grab a copy of the new Windows Admin Center  🙂

Spinning up my test lab machine [Intel NUC6i5SYH in case you’re interested], I immediately create a new 2019 VM to see what’s what.

Start installing
Start installing

Literally 3 minutes after clicking on the install button I was looking at my logon screen 🙂

Log in
Log in

This is going to be a good night!

Ok, so we have our server up and running, let’s install the Windows Admin Center and see what we can do!

First we’ll need to copy the installation file from our lab to our VM:

1
2
3
$VM = Get-VM -Name SRV2019
$Session = New-PSSession -VMName $VM.Name
Get-ChildItem -Path $env:USERPROFILE\Downloads\*AdminCenter* | Copy-Item -ToSession $Session -Destination C:\

Presto Chango, files are copied on to the VM (if you didn’t know about this before, you might want to look up something called PowerShell Direct)

I’m using all the defaults to install the Windows Admin Center, using default ports and a self signed certificate [usable for 60 days]. Of course in production you’d want to look into securing this, but this is still preview and test-lab, so knock yourself out 🙂

Once Windows Admin Center’s installed, you want to start using it to see all the cool toys… You open the browser and enter the URL https://<servername> , only to be greeted with the following error:

Browser problems
Browser problems

Turns out, you’re supposed to manage your severs from a management machine (preferably Windows 10 of course) and not on your server. Since this is a quick test lab however, I’ll just install a decent browser and get along with the show!

Do note that due to the self signed SSL certificate, you will still get an error message, it’s just safe to proceed

Connection not private
Connection not private

After all those errors, it’s time to actually start up what we came here for [well, part of it]

You’ll first be greeted by the Tour window, but the contents are currently rather shabby

Welcome tour
Welcome tour

After that’s closed, you get to the actual heart of the Admin Center

Set up connections
Set up connections

Select the machine you want to manage and click Connect. This will prompt you for the machine’s credentials [first time only] and will give you access to all the sexy tools it has to offer…

Windows Admin Center Overview
Windows Admin Center Overview

Now we’re talking!

Now I won’t go through ALL the features the Admin Center has to offer [although I’m really tempted], but I’ll throw in some features I thought were just AWESOME to be able to manage centrally:

  • Firewall settings
  • Network settings
  • PowerShell
  • RDP
  • Registry
  • Updates

They all just work IN THE BROWSER!!

Look at the registry &lt;3
Look at the registry <3

Start playing around to see how it works, how FAST it actually is and be amazed at how user friendly it all is!

Have fun!