Microsoft Loop Mobile Apps are released

Andres Bohren
Hi All, In a previous Blot Article i have explained how to Enable the Loop App https://blog.icewolf.ch/archive/2023/04/12/microsoft-loop-and-loop-components.aspx Today i've learned, that the Loop App for iOS and Android are here. Sure i made some Screenshots from the Installation and First Login. Search for Microsoft Loop in Apple App Store or Google Play Store and install the App After you start you get some Welcome screens Login is simple as every M365 Service

Azure PowerShell Module Az 9.7.0 released

Andres Bohren
Hi All, Just a few Hours ago, a new Version of the AZ PowerShell Module has been released to PowerShell Gallery. Az 9.7.0 https://www.powershellgallery.com/packages/AZ/9.7.0 AZ Release Notes https://github.com/Azure/azure-powershell/releases/tag/v9.7.0-May2023 Show Installed AZ Module and what's available in the PowerShell Gallery Get-InstalledModule AZ Find-Module AZ #Run Script directly from GitHub $ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/main/Azure/Cleanup-AZModules.ps1" Invoke-Expression $($ScriptFromGitHub.Content) The AZ Module is just a Wrapper Module for all AZ.* Modules Get-InstalledModule AZ.* Regards Andres Bohren

Git for Windows 2.40.0

Andres Bohren
Hi All, Today i have checked my Git version and realized that there is a new version since mid of March 2023. Highlights from Git 2.40 git --version Download from Git SCM Installation Release Notes Regards Andres Bohren vscode Logo

Microsoft 365 Defender Advanced Hunting with PowerShell

Andres Bohren
Hi All, You might already know, that i am a big Fan of Defender for Office 365 Advanced Hunting. It's easy and fast to analyze the last 30 Days of your Messaging Logs. Defender for Office 365 Advanced Hunting https://blog.icewolf.ch/archive/2021/08/23/defender-for-office-365-advanced-hunting.aspx I've published some of the KQL Querys in my GitHub Rpo https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/ExchangeOnline/EOPAdvancedHunting/AdvancedHunting.kql You can find Advanced Hunting it in de Microsoft 365 Defender Portal https://security.microsoft.com/v2/advanced-hunting To Access these Querys with PowerShell we need to have an Azure Active Directory Application

Microsoft To Do Smart due date and reminder recocnicion

Andres Bohren
Hi All, Microsoft's To Do Smart due date and reminder recocnicion was anounced over a year ago. I did try from time to time but it did not work until this week when i tried again. Don't know when exactly this became active in my Tenant but it's good that it works now. Smart due date and reminder recognition in Microsoft To Do https://techcommunity.microsoft.com/t5/microsoft-to-do-blog/smart-due-date-and-reminder-recognition-in-microsoft-to-do/ba-p/3273521 How it works: use expressions like "

Microsoft.Graph PowerShell Module 1.26.0 released

Andres Bohren
Hi All, Yesterday Microsoft has released a new Version of Microsoft.Graph PowerShell Modules to the PowerShell Gallery. Microsoft.Graph 1.26.0 https://www.powershellgallery.com/packages/Microsoft.Graph/1.26.0 Microsoft Graph PowerShell Release Notes https://github.com/microsoftgraph/msgraph-sdk-powershell/releases Let's check the installed Version and what's available on the PowerShell Gallery Get-InstalledModule Microsoft.Graph Find-Module Microsoft.Graph To install the newest Version of the PowerShell Modules and also uninstalling the old Versions, you can use my GitHub Script. It takes a while until all Modules are installed.

Microsoft Teams Busy-on-busy

Andres Bohren
Hi All, In this Article i have tested the Microsoft Teams Busy-on-busy enduser setting In this Case "busy-on-busy" means the User is already in a Call. What should happen to another Call? Present the Busy Signal to the Caller or inform the User so he can see and choose if it's a more important call than the current call? That's all controlled by the Calling Policies in Microsoft Teams Admin Center (TAC).

Azure Storage Explorer 1.28.1

Andres Bohren
Hi All, Apparently i don't use Azure Storage Explorer a lot. As i did use it this Week i noticed that there is an Update available. Release Notes https://github.com/microsoft/AzureStorageExplorer/releases How to use the Azure Storage Explorer https://learn.microsoft.com/en-us/azure/vs-azure-tools-storage-manage-with-storage-explorer?tabs=windows Regards Andres Bohren

How to Rename the master branch to main in Git

Andres Bohren
Hi All, To be honest, i am a System Engineering guy and not a developer. Even i like to write PowerShell Scripts and use VSCode almost on a daily basis. I am still a Git Noob 😂 I've had an old GitHub Repo where the only branch is still "master". I wanted to change that and found this Guide. To rename the branch locally i used the following command git branch -m master main Then i pushed that branch to GitHub

MicrosoftTeams PowerShell Module 5.1.1 released as Preview

Andres Bohren
Hi All, Today Microsoft has released the Version 5.1.1-Preview of the MicrosoftTeams PowerShell Module to PowerShell Gallery. MicrosoftTeams 5.1.1-preview https://www.powershellgallery.com/packages/MicrosoftTeams/5.1.1-preview The official Link for the Release Notes is not yet up to date https://learn.microsoft.com/en-us/MicrosoftTeams/teams-powershell-release-notes Check installed Module and what's available in the PowerShell Gallery Get-InstalledModule MicrosoftTeams Find-Module MicrosoftTeams -AllowPrerelease I'll install the Prerelease Module Side by Side with the current Module therefore i need to use the -Force Parameter Install-Module MicrosoftTeams -AllowPrerelease -Force Get-InstalledModule MicrosoftTeams -AllVersions