Self Service Purchaseさせたくない
ユーザーが勝手にライセンス買っちゃう 365のライセンスは通常組織が購入したものを管理者が各ユーザーに割り当てますが、一部ユーザーが自分で購入できるもの(Self Service Purchase対象ライセンス)があり、不定期に増えています。 今回2021/4/19から”PowerAutomate RPA”と”PowerBI (Premium)”が追加となるとのことなので、ユーザーに許可したくない場合は前もって禁止に設定しておきましょう。 Use AllowSelfServicePurchase for the MSCommerce PowerShell module | Microsoft Docs Cmdlet まず繋ぐ。 Connect-MSCommerce SelfServicePurchaseが有効になっているプロダクトをこれで確認。 Get-MSCommerceProductPolicies -PolicyId AllowSelfServicePurchase Enableになってるやつを無効化。 Get-MSCommerceProductPolicies -PolicyId AllowSelfServicePurchase |?{$_.PolicyValue -eq 'Enabled'}|%{Update-MSCommerceProductPolicy -ProductId $_.ProductId -PolicyId $_.PolicyId -Value "Disabled"}