Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
The new and improved Power Platform admin center is now generally available. We're currently updating the documentation to reflect these changes, so check back to ensure that you're getting the latest updates.
With the new provisioning model, users with the correct licenses can create an environment as long as 1 GB of capacity is available. When you complete the steps in this article to restrict who can create environments, only users who have the following admin security roles can create new environments in the Power Platform admin center:
- Global admins
- Dynamics 365 admins
- Power Platform admins
Control environment creation in the Power Platform admin center
To restrict environment creation and management to admins from the Power Platform admin center, follow these steps:
- Sign in to the Power Platform admin center.
- In the navigation pane, select Manage.
- In the Manage pane, select Tenant settings to open the Tenant settings page.
In the Tenant settings page, select one of these environment-type creation settings:
- Developer environment assignments
- Production environment assignments
- Trial environment assignments
- Select Only specific admins.
- Select Save.
- Repeat the steps for each environment type that you want to restrict.
Note
Environments created before the restriction remain manageable by their creators even after the restriction is applied. Restriction prevents any new environments being created and managed.
Developer environments
Developer environments are special environments intended only for use by the owner. You can restrict users from creating developer type environments from Power Platform admin center. To restrict users from creating developer type environments, admins can use following PowerShell command:
$requestBody = [pscustomobject]@{
powerPlatform = [pscustomobject]@{
governance = [pscustomobject]@{
disableDeveloperEnvironmentCreationByNonAdminUsers = $True
}
}
}
Set-TenantSettings -RequestBody $requestBody
More information: Block trial licenses commands.
Control environment creation through PowerShell
Download and install the admin PowerShell cmdlets as described here. For more information about our cmdlets, see PowerShell support for Power Apps.
Use the following commands to restrict environment creation to Global admins, Dynamics 365 admins, and Power Platform admins.
$settings = @{ DisableEnvironmentCreationByNonAdminUsers = $true }
Set-TenantSettings $settings
FAQ
Can I disable trial environment creation for users in the tenant?
Yes. You can follow the steps in this article to control environment creation in the Power Platform admin center or use the following PowerShell commands to restrict trial environment creation.
$settings = @{ DisableTrialEnvironmentCreationByNonAdminUsers = $true }
Set-TenantSettings $settings
Download and install the admin PowerShell cmdlets as described here. For more information about our cmdlets, see PowerShell support for Power Apps.