Handle any existing Teams Premium trials and establish ongoing monitoring to ensure compliance with your organization's subscription policies.
To view existing trials and subscriptions, navigate to the Microsoft 365 admin center and go to Billing > Your products. Look for any active Teams Premium trials or subscriptions.
For each existing trial you want to cancel:
- Click on the subscription name
- Select Cancel subscription
- Follow the cancellation wizard
- Confirm the cancellation
Set up monitoring by creating a recurring calendar reminder to check for new self-service purchases. You can also enable email notifications in the admin center under Settings > Org settings > Organization profile > Release preferences.
Create a PowerShell script for regular auditing:
# Save this as Check-SelfServiceStatus.ps1
Connect-MSCommerce
$disabledProducts = Get-MSCommerceProductCatalog | Where-Object {$_.SelfServiceMode -eq "Disable"}
Write-Host "Currently disabled products: $($disabledProducts.Count)"
$disabledProducts | Select-Object ProductName | Format-Table
Warning: Even with self-service disabled, the "Unlock Premium" UI prompts may still appear in Teams clients. This is by design for product discovery, but users cannot complete the trial activation process.
Verification: Run your monitoring script monthly and confirm no unexpected Teams Premium subscriptions appear in your billing dashboard.