Quantcast
Channel: Thomas.Poett@TEAMS (MVP Teams and Cross-Tenant Migration Specialist)
Viewing all articles
Browse latest Browse all 292

Cloud Connector Edition set automatic update

$
0
0

A very important task after installing a CCE (Cloud Connector Edition)

You must set a proper Update Time for your CCE Windows Updates und CCE Patching.

WARNING:
If you don't do this, at any point of time the CCE might start installation updates and will set you offline for the installation for up to 3hrs+.

First login in to your Office 365 Tenant

Import-Module skypeonlineconnector
$cred = Get-Credential
$Session = New-CsOnlineSession -Credential $cred -Verbose
Import-PSSession $session

Enable (Updates Windows)

You have to identify (name) and define a update windows

New-CsTenantUpdateTimeWindow -Identity AlwaysOn -Daily -StartTime 0:00 -Duration 24:00

You have to identify your CCE site and assign the update windows
The Update windows should be setup for both WindowsUpdates and CCE BitsUpdate

Set-CsHybridPSTNSite -Identity <SiteName> -OsUpdateTimeWindow @{add="AlwaysOn"} -BitsUpdateTimeWindow @{add="AlwaysOn"}

Disable (Update Windows)

Create a time window in which the update will not be applied:

New-CsTenantUpdateTimeWindow -Identity NeverOn -Monthly -WeeksOfMonth First -DaysOfWeek Sunday -StartTime 3:00 -Duration 0:0

Apply the new time window to your site:

Set-CsHybridPSTNSite -Identity <SiteName> -OsUpdateTimeWindow @{add="NeverOn"} -BitsUpdateTimeWindow @{add="NeverOn"}

Viewing all articles
Browse latest Browse all 292

Trending Articles