Hi All The September Version of Microsoft Power BI Desktop is out
Power BI September 2022 Feature Summary
https://powerbi.microsoft.com/en-us/blog/power-bi-september-2022-feature-summary/ Power BI Desktop
https://powerbi.microsoft.com/en-au/desktop/?WT.mc_id=Blog_Desktop_Update The "Download free" Button opens up Microsoft Store. That does not work on Servers - but you are still able to download and install the Update by the following Link
Microsoft Power BI Desktop
https://www.microsoft.com/en-us/download/details.aspx?id=58494 As i said - the "Download free" Link opens up Microsoft Store. You can update the Software here
Hi All, A few days ago, Microsoft has released a new Version of the Microsoft Azure Information Protection labeling client.
Microsoft Azure Information Protection 2.14.90.0
https://www.microsoft.com/en-us/download/details.aspx?id=53018
After the Restart of Outlook i had to sign in to Microsoft Azure Information Protection (AIP)
A new version of Azure Information Protection Viewer is also installed
Regards Andres Bohren
Hi All,
On beginning of August, Microsoft had released AAD Connect 2.1.16.0.
I was exited, because that is the first 2.x version that did support “auto-upgrade”
Azure AD Connect: Version release history
Microsoft Azure Active Directory Connect Download
I’ve checked the Version of AAD Connect on the Server with Powershell
Import-Module ADSync (Get-Item "C:\Program Files\Microsoft Azure AD Sync\Bin\miiserver.exe").VersionInfo Set-ADSyncAutoUpgrade -AutoUpgradeState Enabled Get-ADSyncAutoUpgrade After a while i’ve realized that the AutoUpgrade was reseted to suspended.
Hi All,
I’ve tried out M365 Apps health
Microsoft 365 Apps health You have to go to the M365 Apps Admin Center
I’ve gone through the “Get started” Wizard
Selected a Group with my Office Devices
I’ve had to change the Office Channel to “MontlyEnterprise” to get some data
cd C:\Program Files\Common Files\microsoft shared\ClickToRun OfficeC2RClient.exe /changesetting Channel=MonthlyEnterprise OfficeC2RClient.exe /update user After the Change i had to wait for several Hours
Hi All, I've seen that there are some new SelfServicePurchase Services are published. In the following Blog Article i show you how to disable them.
Import-Module -Name MSCommerce
Connect-MSCommerce
Get-MSCommerceProductPolicies -PolicyId AllowSelfServicePurchase Let's disable the two SelfServicePurchases Update-MSCommerceProductPolicy -PolicyId AllowSelfServicePurchase -ProductId CFQ7TTC0LHVK -Enabled $False
Update-MSCommerceProductPolicy -PolicyId AllowSelfServicePurchase -ProductId CFQ7TTC0LHWM -Enabled $False
When we check now, all the SelfServicePurchases are disabled
Get-MSCommerceProductPolicies -PolicyId AllowSelfServicePurchase
Regards Andres Bohren
Hi All, Just a few Hours ago, Microsoft has released a new Version of Azure Active Directory Connect with a lot of Butfixes and some Functional changes.
Azure AD Connect: Version release history
https://docs.microsoft.com/en-us/azure/active-directory/hybrid/reference-connect-version-history
Microsoft Azure Active Directory Connect Download
https://www.microsoft.com/en-us/download/details.aspx?id=47594
On the M365 Admin Center in the Health > Directory Sync Status you can find the new Version Number
https://admin.microsoft.com/#/dirsyncmanagement Regards Andres Bohren
Hi All, A few hours ago, Microsoft has released the V1.11.0 of the PnP.PowerShell Module to PowerShell Gallery PnP.PowerShell 1.11.0
https://www.powershellgallery.com/packages/PnP.PowerShell/1.11.0
PnP.PowerShell Changelog
https://github.com/pnp/powershell/blob/dev/CHANGELOG.md
Check the installed Version and the Version in PowerShell Gallery
Get-InstalledModule PnP.PowerShell Find-InstalledModule PnP.PowerShell Uninstall the old Module and install the new Version of the Module
Uininstall-Module PnP.PowerShell Install-Module PnP.PowerShell Now you can use the PowerShell Module. Some example code below. Connect-PnPOnline -Url "https://icewolfch.sharepoint.com/sites/DemoTemplate/" -Interactive
Get-PnPContext
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
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