POWERSHELL

Disable Viva Insights Outlook Add-In

Disable Viva Insights Outlook Add-In

Hi All,

I’ve had a customer that wanted to disable the Viva Insights Outlook Add-In

I did check the M365 Admin Center > Settings > Org Settings > Microsoft Viva Insights > Everything was disabled

I’ve checked the M365 Admin Center > Settings > Integrated Apps

I’ve checked with PowerShell

Connect-ExchangeOnline -ShowBanner:$false
Get-VivaInsightsSettings -Identity a.bohren@icewolf.ch
Get-MyAnalyticsFeatureConfig -Identity a.bohren@icewolf.ch | fl

DefaultTenantMyAnalyiticsFeatureConfig

Get-DefaultTenantMyAnalyiticsFeatureConfig

Found the OrganizationApp with the Help of Microsoft

Microsoft.PowerShell.PSResourceGet 1.2.0-rc3 released

Microsoft.PowerShell.PSResourceGet 1.2.0-rc3 released

Hi All,

A few hours ago, Microsoft has released the rc3 of the Microsoft.PowerShell.PSResourceGet PowerShell Module.

You can check the Release Notes

PowerShell 5

Check the Module Path

$Env:PSModulePath.Split(";")

I’ve simply deleted the Microsoft.PowerShell.PSResourceGet Folder in Windows Explorer - because there is no “Scope” Parameter in the Uninstall-Module command

Installing the PSResourceGet with Install-Module

Install-Module -Name Microsoft.PowerShell.PSResourceGet -Scope CurrentUser -AllowPrerelease -Force
Get-InstalledPSResource -Name Microsoft.PowerShell.PSResourceGet -Scope CurrentUser

Microsoft.Graph PowerShell Modules 2.35.1 released

Microsoft.Graph PowerShell Modules 2.35.1 released

Hi All,

A a day ago, Microsoft has released the Version 2.35.0 of Microsoft.Graph and Microsoft.Graph.Beta Modules.

No Release Notes have been published but you can review the Commit History

I am using the new PSResourceGet here instead of the PowerShellGet commands.

Show installed Versions and what’s available in PowerShell Gallery

Get-InstalledPSResource -Name Microsoft.Graph -Scope CurrentUser
Get-InstalledPSResource -Name Microsoft.Graph.Beta -Scope CurrentUser
Find-PSResource -Name Microsoft.Graph
Find-PSResource -Name Microsoft.Graph.Beta

Microsoft.PowerShell.PSResourceGet 1.2.0-rc2 released

Microsoft.PowerShell.PSResourceGet 1.2.0-rc2 released

Hi All,

A few hours ago, Microsoft has released the rc2 of the Microsoft.PowerShell.PSResourceGet PowerShell Module.

You can check the Release Notes

PowerShell 5

Check the Module Path

$Env:PSModulePath.Split(";")

I’ve simply deleted the Microsoft.PowerShell.PSResourceGet Folder in Windows Explorer - because there is no “Scope” Parameter in the Uninstall-Module command

Installing the PSResourceGet with Install-Module

Install-Module -Name Microsoft.PowerShell.PSResourceGet -Scope CurrentUser -AllowPrerelease -Force
Get-InstalledPSResource -Name Microsoft.PowerShell.PSResourceGet -Scope CurrentUser

Azure PowerShell Module AZ 15.3.0 released

Azure PowerShell Module AZ 15.3.0 released

Hi All,

A day ago, a new Version of the AZ (Azure) PowerShell Module has been released to PowerShell Gallery.

Note: There seems to be issues installing the AZ Modules using Install-PSResource see the GitHubIssue

I am using the new PSResourceGet here instead of the PowerShellGet commands.

Show installed Versions and what’s available in PowerShell Gallery

Get-InstalledPSResource -Name AZ -Scope CurrentUser
Find-PSResource -Name AZ

WhiteboardAdmin 1.13.9 PowerShell Module released

WhiteboardAdmin 1.13.9 PowerShell Module released

Hi All,

Yesterday, Microsoft has released a new Version of the WhiteboardAdmin PowerShell Module to the PowerShell Gallery.

The Release Notes does not give a lot of insights

I am using the new PSResourceGet here instead of the PowerShellGet commands.

Show installed Versions and what’s available in PowerShell Gallery

Get-InstalledPSResource WhiteboardAdmin -Scope CurrentUser
Find-PSResource WhiteboardAdmin

Uninstalling the Modules with Uninstall-PSResource failed again.

Uninstall-PSResource WhiteboardAdmin -Scope CurrentUser

Microsoft.Graph PowerShell Modules 2.35.0 released

Microsoft.Graph PowerShell Modules 2.35.0 released

Hi All,

A a day ago, Microsoft has released the Version 2.35.0 of Microsoft.Graph and Microsoft.Graph.Beta Modules.

No Release Notes have been published but you can review the Commit History

I am using the new PSResourceGet here instead of the PowerShellGet commands.

Show installed Versions and what’s available in PowerShell Gallery

Get-InstalledPSResource -Name Microsoft.Graph -Scope CurrentUser
Get-InstalledPSResource -Name Microsoft.Graph.Beta -Scope CurrentUser
Find-PSResource -Name Microsoft.Graph
Find-PSResource -Name Microsoft.Graph.Beta

PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.26914.12004 released

PowerShell Module Microsoft.Online.SharePoint.PowerShell 16.0.26914.12004 released

Hi All,

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

I am using the new PSResourceGet here instead of the PowerShellGet commands.

Show installed Versions and what’s available in PowerShell Gallery

Get-InstalledPSResource -Name Microsoft.Online.SharePoint.PowerShell -Scope CurrentUser
Find-PSResource -Name Microsoft.Online.SharePoint.PowerShell

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

Uninstall-PSResource -Name Microsoft.Online.SharePoint.PowerShell -Scope CurrentUser

In the last few weeks i’ve noticed that uninstalling some Modules seems to have Problems. Might be it’s related to the CurrentUser Scope that is redirected to OneDrive. Anyone else seeing this?

Exchange Online Message Trace Support Using Graph API Preview

Exchange Online Message Trace Support Using Graph API Preview

Hi All,

A few days ago Microsoft has released Information about Graph API Support for Message Trace. The Article is not very detailed so i had to invest some time to make it work.

It’s more or less the Graph API equivalent of Exchange Online Message Trace V2

Graph Explorer

I started first with the Graph Explorer and the URL below

Basic M365 Monitoring with PowerShell

Basic M365 Monitoring with PowerShell

Hi All,

I’ve written a simple Script for Monitoring the M365 Services via the Health und Communications API.

I think it’s a good start if you don’t have any other Monitoring Solution available. The cool thing is you can select the Services you’re interested in - usually not all Services are deployed at a customer. And you only get an Email for NEW or COSED Issues.

If you are familiar with PowerShell you will find it easy to adopt and maybe extend the Script to create a Incident in your Ticketing Plattform or create a Teams Message. Whatever fit’s your Company…