Microsoft365
Microsoft 365
Hi All,
A few hours ago, Microsoft has released a new Version of the Microsoft.Graph PowerShell Modules.
Microsoft.Graph 1.10.0
https://www.powershellgallery.com/packages/Microsoft.Graph/1.10.0
1.10.0 Release Notes
https://github.com/microsoftgraph/msgraph-sdk-powershell/releases
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
CleanupGraphModules
https://github.com/BohrenAn/GitHub_PowerShellScripts/blob/main/ExchangeOnline/GraphAPI/CleanupGraphModules.ps1
You can run that directly in PowerShell with the Code below
#Run Script directly from GitHub
$ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/main/ExchangeOnline/GraphAPI/CleanupGraphModules.ps1"
Invoke-Expression $($ScriptFromGitHub.Content)
Check if everything worked
Get-InstalledModule Microsoft.Graph*
Regards
Andres Bohren
Hi all,
A few Hours ago the PowerShell Module for the M365 Whiteboard has been released.
I guess it fixes some errors, as WhiteboardAdmin 1.8.0 was released only two weeks ago.
But i could not find any Release notes or so.
WhiteboardAdmin 1.9.0
https://www.powershellgallery.com/packages/WhiteboardAdmin/1.9.0
Get-InstalledModule WhiteboardAdmin
Find-Module WhiteboardAdmin
Uninstall-Module WhiteboardAdmin
Install-Module WhiteboardAdmin
Get-Command -Module WhiteboardAdmin
Regards
Andres Bohren
Hi All,
A few days ago the MSCommerce 1.8 PowerShell Module in the PowerShell Gallery has been released.
PowerShell Gallery MSCommerce
https://www.powershellgallery.com/packages/mscommerce/1.8
Use AllowSelfServicePurchase for the MSCommerce PowerShell module
https://docs.microsoft.com/en-us/microsoft-365/commerce/subscriptions/allowselfservicepurchase-powershell?view=o365-worldwide
Check for installed version of the Module
Get-InstalledModule MSCommerce
Check what's available in PowerShell Gallery
Find-Module MSCommerce
Uninstall old Version and install new Version of the Module
Uninstall-Module MSCommerce
Install-Module MSCommerce
Connect to M365 and view the Details
Import-Module -Name MSCommerce
Connect-MSCommerce
Get-MSCommercePolicy -PolicyId AllowSelfServicePurchase
Get-MSCommerceProductPolicies -PolicyId AllowSelfServicePurchase
Disable Self Service Purchase
Update-MSCommerceProductPolicy -PolicyId AllowSelfServicePurchase -ProductId CFQ7TTC0HVZG -Enabled $False
Update-MSCommerceProductPolicy -PolicyId AllowSelfServicePurchase -ProductId CFQ7TTC0LH3N -Enabled $False
Update-MSCommerceProductPolicy -PolicyId AllowSelfServicePurchase -ProductId CFQ7TTC0LHWP -Enabled $False
Update-MSCommerceProductPolicy -PolicyId AllowSelfServicePurchase -ProductId CFQ7TTC0LH05 -Enabled $False
Now it looks the way i want
Get-MSCommerceProductPolicies -PolicyId AllowSelfServicePurchase
Regards
Andres Bohren
Hi All,
Yesterday the PowerShell Module WhiteboardAdmin has been released in Version 1.8.0.
To install use the commandlets below. Remember the PowerShell has to be startet "As Administrator" to uninstall/install PowerShell Modules.
Get-InstalledModule WhiteboardAdmin
Find-Module WhiteboardAdmin
Uninstall-Module WhiteboardAdmin
Install-Module WhiteboardAdmin
To get the Whiteboards of a user you must use TenantAdmin Credentials
Get-Whiteboard -UserId <ObjectIDofUser>
Get-Whiteboard -UserId 6db8cdd5-8e93-462d-9907-994406c07f60
That's what the Result looks like
Regards
Andres Bohren
Hi All,
I've only worked a few Times with Loop Components in Teams so far.
Just a few things that are good to know:
Loop Components are saved on OneDrive (with all the Hassle of one User leaving the Company)
Loop Components can only used be on Chat (Channels not supportet so far)
There are some Limitations to Loop Components with Compliance Search (no viewer so far)
Overview of Loop components in Teams
https://docs.microsoft.com/en-us/microsoftteams/loop-components-in-teams
Manage Loop components in SharePoint
https://docs.microsoft.com/en-us/sharepoint/manage-loop-components
First things to know about Loop components
https://support.microsoft.com/en-us/office/first-things-to-know-about-loop-components-ee2a584b-5785-4dd6-8a2d-956131a29c81
Transforming creation and collaboration with Microsoft Loop components...
Hi All,
Finally Microsoft Lists is also available for Android.
Microsoft Lists - Google Play Store
https://play.google.com/store/apps/details?id=com.microsoft.lists.public
Regards
Andres Bohren
Hi All,
There are many ways to send Emails from PowerAutomate (aka Flow).
In this Blog Article i will show you three ways to send an Email.
I reccomend to use Variant 2 and use your M365 Mailbox to send Emails.
Variant 1 - Sendmail
Create a new Cloud Flow
Manual Trigger and Flowname is "Demo01"
Add a Step
Search for: "Mail"
And select "E-Mail-Benachrichtigung versenden (V3)"
Apparently this is done by Sendgrid Infrastructure so i have to accept
Then i can add the Recipient, Subject and Messagebody.
Save the Flow and go back to "My Flows"
Let's run that Flow
If you look at the Details - it didn't work
There is an...
Hi All,
Since a few Days you can enable Tenant-level Analytics in Power Plattfom as a Preview Feature.
Tenant-level analytics (Preview)
https://docs.microsoft.com/en-us/power-platform/admin/tenant-level-analytics
Power Plattform admin center
https://admin.powerplatform.microsoft.com/
Now you have to wait 24 Hours. After that you can switch between "Tenant level analytics" and "Environement level analytics"
Yo can see better Screenshots (with data) from the Article below
Tenant-level Analytics for Power Apps (preview)
https://docs.microsoft.com/en-us/power-platform/admin/powerapps-analytics-reports
Regards
Andres Bohren
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 "OwaMailboxPolicy-Default" -BookingsMailboxCreationEnabled:$false
New-OwaMailboxPolicy -Name "BookingsCreators"
Set-CASMailbox -Identity <someCreator@emailaddress> -OwaMailboxPolicy "BookingsCreators"
Create a Bookings Mailbox
Open Microsoft Bookings in the App Launcher in Office 365 https://outlook.office.com/bookings
Choose "Add new Booking Calendar"
The Name will be the Mailbox of...
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.
Regards
Andres Bohren
Full Microsoft365 Archive