Hi All, Finally i have some time to do a Project i've always wanted to do. In a Series of Blog Article i will create a SQL Server / SQL Database in Azure and compare diffrent Deployment Methods. Let's start with the PowerShell AZ Module Install-Module AZ
The Script can also be found on my GitHub Repo
https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/Azure/Demo01-SQLDB-Az.ps1
###############################################################################
# Demo01-SQLDB-Az.ps1
# Create SQL Server / Firewall Rule / SQL Database with AZ.
Hi All, Just a few Hours ago the new Microsoft Azure PowerShell Module AZ 7.4.0 has been released.
Microsoft Azure PowerShell Module Az 7.4.0
https://www.powershellgallery.com/packages/az/7.4.0
To check your installed Module and what Version is available in the PowerShell Gallery you can use the following commands
Get-InstalledModule AZ Find-Module AZ
AZ is just a Wrapper - the Modules have names Az.* Get-InstalledModule AZ.*
I've checked my installed Modules. It's a mess - multiple Versions of the Modules.
Hi All, A few Days ago Microsoft has anounced some changes in the MoveRequest cmdlets. Some Properties will be removed and two will be renamed and one will be added (see Table below). These Changes will pe appearing on 30 April 2022.
Changing the behavior of MoveRequest cmdlets
https://techcommunity.microsoft.com/t5/exchange-team-blog/changing-the-behavior-of-moverequest-cmdlets/ba-p/3267026
I've created a Screenshot: Red: These Properties will be removed Blue: These Properties will be renamed
The Blog Article does not mention any changes in the MoveRequestStatistics.
Hi All, By default Microsoft Bookings is enabled in Exchange Online. If you have disabled it like me, you need to enable it first in the Exchange Online OrganizationConfig. Turn Microsoft Bookings on or off
https://docs.microsoft.com/en-us/microsoft-365/bookings/turn-bookings-on-or-off?view=o365-worldwide
Get-Organizationconfig | fl *booking* Set-Organizationconfig -BookingsEnabled $true
In the Default OwaMailboxPolicy all users can create Booking Mailboxes. Get-OwaMailboxPolicy -Identity OwaMailboxPolicy-Default | fl *booking*
If you want to enable the Bookings creation only for one Mailbox you have to create a new OWAMailboxPolicy Set-OwaMailboxPolicy "
Hi All, I've checked today if there where any updates from the Microsoft Store. As you can see the Microsoft Whiteboard App was updated.
I've checked the App and was able to Open the Diagrams again
So i was curious and created a new Whiteboard and named it "Brainstrom". I had applied for the Microsoft Whiteboard OneDrive Opt-In
Microsoft Whiteboard OneDrive Opt-In
https://blog.icewolf.ch/archive/2021/12/15/microsoft-whiteboard-onedrive-opt-in.aspx
As you can see the new Whiteboard is saved in OneDrive.
Hi All, I was looking at a way to convert HTML to Markdown
https://cloudconvert.com/pricing
So i signed up and created the API Key https://cloudconvert.com/dashboard/api/v2/keys
There is a Node.js Library
https://github.com/cloudconvert/cloudconvert-cli
npm install -g cloudconvert-cli
npm list -g
Set the API Key as a Variable (in Windows) and run the HTML File with output MD
SET CLOUDCONVERT_API_KEY=<YourAPIKey> Cloudconvert convert -f md C:\GIT_WorkingDir\exchange-2016-cu15-security-update-kb4536987.html
This is the converted MD File
If you look at the Preview
Hi All, I recently had a customer where the OWA Redirect in Exchange Online (Exchange Hybrid configuration) did not work. The reason was, that the TargetOWAURL was not set
Get-OrganizationRelationship
Get-OrganizationRelationship -Identity "O365 to On-Prem*" | fl
I have a SharedMailbox OnPrem where my User has FullAccess
In Exchange Online i go to Outlook on the Web https://outlook.office.com/mail/ and select "Open another Mailbox" I search for the Mailbox and hit "
Hi All, A few days ago a new Version of the Microsoft Defender for Office 365 Recommended Configuration Analyzer (ORCA) Module has been released. ORCA 2.0
https://www.powershellgallery.com/packages/ORCA/2.0
Use the following commands to Install the Module
Find-Module Orca Install-Module Orca Get-InstalledModule Orca
You can already connect to Exchange Online (Or the Script will do it also for you) Connect-ExchangeOnline
There is just one simple Command to run the Report
Get-OrcaReport
It's recommended to run the report from Time to Time.
Hi All, Be aware that the Teams Policies have the Shared Channels enabled by default. So disable them or create a separate Policy for your tests.
My Teams Client is in Preview Mode
But i am still not able to create Shared Channels
According to the Article below - it will look like below
Microsoft Teams Connect shared channels is rolling out to public preview
https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-teams-connect-shared-channels-is-rolling-out-to-public/ba-p/3252901
Regards Andres Bohren
Hi All, Yesterday the PowerShell Module for MicrosoftTeams 4.1.0 has been released as GA.
MicrosoftTeams 4.1.0
https://www.powershellgallery.com/packages/MicrosoftTeams/4.1.0
Find-Module MicrosoftTeams Install-Module MicrosoftTeams -Force
Usually i test some of the Commands
Connect-MicrosoftTeams Get-Team
Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *um*
Be aware, that for new M365 Tenants you can only use MicrosoftTeams PowerShell Module 4.x.x. Older Tenants have to switch to 4.x.x until June 2022.
Teams PowerShell Module - Supported Versions
https://docs.microsoft.com/en-us/microsoftteams/teams-powershell-supported-versions Regards Andres Bohren