MicrosoftTeams PowerShell Module 4.5.0 released as GA

Hi All,

Yesterday Microsoft hast release the MicrosoftTeams PowerShell Module 4.5.0 as GA (Generally Available) in the PowerShell Gallery.

Find the PowerShell Module in the PowerShell Gallery and install it (force is only needed as i have multiple Modules in paralell installed)

Find-Module MicrosoftTeams
Install-Module MicrosoftTeams -Force

When you import the Module you can see the Version

Import-Module MicrosoftTeams
Get-Module

Testing

Connect-MicrosoftTeams
Get-Team
Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *line*

MSIdentityTools PowerShell Module v2.0.14 released

Hi All,

A few hours ago, Microsoft has released a new Version of the MSIdentity Tools PowerShell Module.

Search the PowerShell Gallery and install the PowerShell Module

Find-Module MSIdentityTools
Install-Module MSIdentityTools

To view the Commands of the Module use the command below

Get-Command -Module MSIdentityTools

You need to connect with Microsoft Graph first.

For instance you can check if an emailadress has a MicrosoftAccount

Connect-MgGraph
Get-MsIdHasMicrosoftAccount -Mail a.bohren@outlook.com

PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.22615.12000 released

Hi All,

A few hours ago, Microsoft has released the Microsoft.Online.SharePoint.PowerShell 16.0.22615.12000 PowerShell Module

Check the installed Version and what is available from the PowerShell Gallery

Get-InstalledModule Microsoft.Online.SharePoint.PowerShell
Find-Module Microsoft.Online.SharePoint.PowerShell

Uninstall the old Version and install the new Version of the Module

Uninstall-Module Microsoft.Online.SharePoint.PowerShell
Install-Module Microsoft.Online.SharePoint.PowerShell
Get-InstalledModule Microsoft.Online.SharePoint.PowerShell

Connect to Sharepoint Online

Connect-SPOService -Url https://icewolfch-admin.sharepoint.com

Get some Settings

Get-SPOTenant | fl

Regards
Andres Bohren

Microsoft Teams Chat with self

Hi All,

In the Microsoft Teams Preview the Feature “Chat with Self” is now rolling out.

It’s possible to send Messages, Notes, Files, Images and Videos to yourself to capture something and most likely to remind you to do something. As you previously did with send an Email to yourself.

Soon that will be possible for everybody.

Regards
Andres Bohren

Microsoft Teams Voicemail Settings for Users and Admins

Hi All,

There are some News in Microsoft Teams regarding Voicemail.

In Teams Admin Center you can set the Call answering Rules

That’s also possible with the get/set-CsUserCallingSettings

Get-CsUserCallingSettings -Identity a.bohren@icewolf.ch

The User can control these Settings in the Teams Client under Settings > Calls

If the user clicks on “Voicemail” another Screen appears with some settings

There is a new Website, where the user can control these Settings.

Exchange Cumulative Update Error Expired Certificate

Good Morning,

I’ve had a customer that encountered the Error below during Exchange 2016 CU23 installation.

Error:

The following error was generated when "$error.Clear();

Install-ExchangeCertificate -services IIS -DomainController $RoleDomainController
if ($RoleIsDatacenter -ne $true -And $RoleIsPartnerHosted -ne $true)
{
Install-AuthCertificate -DomainController $RoleDomainController
}
" was run: "System.Security.Cryptography.CryptographicException: The certificate is expired.
at Microsoft.Exchange.Configuration.Tasks.Task.ThrowError(Exception exception, ErrorCategory errorCategory, Object target, String helpUrl)
at Microsoft.Exchange.Management.SystemConfigurationTasks.InstallExchangeCertificate.InternalProcessRecord()
at Microsoft.Exchange.Configuration.Tasks.Task.<ProcessRecord>b\_\_91\_1()
at Microsoft.Exchange.Configuration.Tasks.Task.InvokeRetryableFunc(String funcName, Action func, Boolean terminatePipelineIfFailed)".

Microsoft.Graph PowerShell Module 1.10.0 released

Hi All,

A few hours ago, Microsoft has released a new Version of the Microsoft.Graph PowerShell Modules.

Check the installed Version and what’s on the PowerShell Gallery

Get-InstalledModule Microsoft.Graph
Find-Module Microsoft.Graph

But remember, it’s not one Module, it is a collection of Modules

Get-InstalledModule Microsoft.Graph*

I’ve published a PowerShell Script on my GitHub Account that uninstalls the old Modules and installs the newest one