Table of Contents
Introduction
You might have heard that Microsoft is switching to Semi-Annual Channel (SAC) model for Windows Server and System Center. You can read all about it here. In short, this means that every 6 months, Microsoft will release a new version with additional features for System Center and Windows Server. You will be able to update your system if you have eligible Software Assurance. These updates will fix issues, but also include new features. But before Microsoft releases the final SAC version, they will publish first a preview version for that specific update.
In November 2017, Microsoft released the first SAC preview version for System Center 1711 (17=Year 2017 and 11=November), and the first production SAC for System Center is just released, version 1801 (18=Year 2018 and 01=January). But we are already in February 2018 and not in January. Yes, it’s true, Microsoft slipped in this release. Hope the next SAC release will be on time by June 2018.
What’s new in this release?
System Center, version 1801 focuses on enhancements and features for System Center Operations Manager, Virtual Machine Manager, and Data Protection Manager. Additionally, security and bug fixes, as well as support for TLS 1.2, are available for all System Center components including Orchestrator, Service Management Automation, and Service Manager.
These are the capabilities included in this release:
- What’s new in System Center 1801 – Virtual Machine Manager.
- What’s new in System Center 1801 – Data Protection Manager.
- What’s new in System Center 1801 – Operations Manager.
- What’s new in System Center 1801 – Orchestrator.
- What’s new in System Center 1801 – Service Manager.
How to Get System Center?
You can try System Center, version 1801 today at the Evaluation Center or the Volume Licensing Service Center.
The fastest way is to download the Evaluation VHDs using the following PowerShell script, and you are good to go:
# Download all System Center First SAC Release Version 1801 VHD Evaluation
# Updated by Charbel Nemnom https://charbelnemnom.com/
# Credit to Niklas Akerlund http://vniklas.djungeln.se/
# Name: Install-SC1801VHDEVAL.ps1
[CmdletBinding()]
param (
[Parameter(Position=0, HelpMessage = 'Destination Volume')]
[Alias('Vol')]
[String]$Volume,
[Parameter(Position=1, HelpMessage = 'Directory Name')]
[Alias('Dir')]
[String]$DirectoryName
)
Try {
$Vol = ($Volume -replace (":|\\",''))
$CheckVolume = Get-PSDrive -Name $Vol -ErrorAction Stop
}
Catch {
Write-Warning -Message "No drive found for: `"$Vol`", Please specify a correct volume"
Exit
}
Write-Verbose "You selected: $($CheckVolume.Root)"
Write-Verbose "Creating new directory..."
$Destination = New-Item -Name $DirectoryName -Path $(($Vol)+":") -ItemType Directory -Force
# Variables
$SizeOfSCVHD = 50GB
# Get Space on volume
$SpaceRemaining = ((Get-Volume $CheckVolume.Root.Split(":")[0]).SizeRemaining)
if($SpaceRemaining -gt $SizeOfSCVHD){
# System Center Virtual Machine Manager 1801
((Invoke-WebRequest -Uri "https://www.microsoft.com/en-us/download/confirmation.aspx?id=56566").links | ? href -match "exe$|docx$|bin$").href | %{Start-BitsTransfer -Source $_ -Destination $Destination}
# System Center Operations Manager 1801
((Invoke-WebRequest -Uri "https://www.microsoft.com/en-us/download/confirmation.aspx?id=56562").links | ? href -match "exe$|docx$|bin$").href | %{Start-BitsTransfer -Source $_ -Destination $Destination}
# System Center Orchestrator 1801
((Invoke-WebRequest -Uri "https://www.microsoft.com/en-us/download/confirmation.aspx?id=56565").links | ? href -match "exe$|docx$|bin$").href | %{Start-BitsTransfer -Source $_ -Destination $Destination}
# System Center Data Protection Manager 1801
((Invoke-WebRequest -Uri "https://www.microsoft.com/en-us/download/confirmation.aspx?id=56564").links | ? href -match "exe$|docx$|bin$").href | %{Start-BitsTransfer -Source $_ -Destination $Destination}
# System Center Service Manager 1801
((Invoke-WebRequest -Uri "https://www.microsoft.com/en-us/download/confirmation.aspx?id=56563").links | ? href -match "exe$|docx$|bin$").href | %{Start-BitsTransfer -Source $_ -Destination $Destination}
} else {
$SpaceRemaining = [math]::Round($SpaceRemaining/1GB)
Write-Output "The remaining size on $Destination is $SpaceRemaining GB, please free up at least $($SizeOfSCVHD/1GB) GB and try again!"
}
Please make sure you have enough bandwidth and space before you kick off the script!
Supported Operating System: Windows Server 2016 or later.
Windows Server 2012 R2 with Hyper-V or later is required to use those VHDs and create virtual machines.
Summary
As a System Center customer, you can stay on the Long-Term Servicing Channel (LTSC) or move to the new Semi-Annual Channel. Choose a release channel that works best for your business. If your requirements change, switch to a different release channel.
System Center customers have their choice of two release options: the Long-Term Servicing Channel (LTSC) or the new Semi-Annual Channel(SAC). The new Semi-Annual Channel is only offered for customers with Software Assurance.
As always – submit and/or vote for feature requests, fixes, enhancements at the UserVoice channels here:
https://systemcentervmm.uservoice.com/
https://systemcenterom.uservoice.com/
https://feedback.azure.com/forums/258995-azure-backup-and-scdpm/
Happy Evaluating!
Cheers,
-Ch@rbel