Disable self-service purchase for Microsoft ClipChamp (A new addition)

Copper Contributor

Microsoft recently added ClipChamp, a video editor, to its self-service purchase capability. If your organization blocked existing products, consider blocking ClipChamp as well.

PowerShell script to disable self-service purchase for Microsoft Clipchamp:

Install-Module -Name MSCommerce -Scope CurrentUser
Import-Module -Name MSCommerce
Connect-MSCommerce
# Check the Self-Service Capability Status for ClipChamp:
Get-MSCommerceProductPolicy -PolicyId AllowSelfServicePurchase -ProductId CFQ7TTC0N8SS
# Disable the Self-Service Capability Status for ClipChamp:
Update-MSCommerceProductPolicy -PolicyId AllowSelfServicePurchase -ProductId CFQ7TTC0N8SS -Enabled $False

 

0 Replies