PL-900 Manage the Microsoft Power Platform environment • Complete Question Bank
Complete PL-900 Manage the Microsoft Power Platform environment question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit.
JSON policy snippet:
{
"policy": {
"name": "Block Social Media",
"description": "Blocks Twitter and Facebook connectors",
"environment": "Production",
"action": "Block",
"connectors": [
{
"id": "/providers/Microsoft.PowerApps/apis/shared_twitter"
},
{
"id": "/providers/Microsoft.PowerApps/apis/shared_facebook"
}
]
}
}Refer to the exhibit. PowerShell output: Get-AdminPowerAppEnvironment -EnvironmentName 'Default-12345678-1234-1234-1234-123456789abc' Name : Default-12345678-1234-1234-1234-123456789abc DisplayName : Contoso Production Location : eastus ProvisioningState : Succeeded CreatedBy : admin@contoso.com CreatedTime : 2023-01-15T10:00:00Z LastModifiedTime : 2023-06-20T14:30:00Z EnvironmentType : Production EnvironmentSku : Production LinkedEnvironmentType : None RetentionPeriodInDays : 30 IsDefault : False
Refer to the exhibit.
{
"policy": {
"environment": {
"id": "Environment1",
"name": "Production Environment",
"provisioningState": "Succeeded",
"properties": {
"dataverse": {
"url": "https://org123.crm.dynamics.com",
"adminEmail": "admin@contoso.com",
"organizationName": "Contoso",
"storageCapacityUsedGB": 15.5,
"apiRateLimits": {
"maxRequestsPerMinute": 60000,
"currentUsagePercentage": 85
}
}
}
}
}
}Refer to the exhibit.
$policy = Get-AzPolicyAssignment -Name "PowerPlatformDLP"
$policy.Properties.Parameters
{
"allowedConnectors": {
"value": [
"Microsoft.SharePointOnline",
"Microsoft.Teams",
"Microsoft.Outlook"
]
},
"blockedConnectors": {
"value": [
"Microsoft.OneDrive",
"Google.Drive",
"Dropbox"
]
}
}Refer to the exhibit.
{
"resources": [
{
"type": "Microsoft.PowerPlatform/environments",
"apiVersion": "2023-06-01",
"name": "ContosoDev",
"location": "eastus",
"properties": {
"displayName": "Development Environment",
"description": "For development only",
"environmentSku": "Developer"
}
}
]
}Refer to the exhibit.
```json
{
"Properties": {
"EnvironmentName": "ContosoProduction",
"Capacity": 1024,
"UsedStorage": 512,
"BlockedConnectors": ["Twitter", "Facebook"]
}
}
```Refer to the exhibit.
```json
{
"DLPPolicy": {
"Name": "Production DLP",
"Scope": "Environment",
"EnvironmentId": "12345",
"ConnectorClassification": {
"Twitter": "Blocked",
"Facebook": "Blocked",
"SharePoint": "Business",
"Outlook": "Business"
}
}
}
```Refer to the exhibit. ``` Get-AdminPowerAppEnvironment -EnvironmentName "DevEnv" | Select-Object DisplayName, CreatedTime, EnvironmentState ``` Output: ``` DisplayName : Dev Environment CreatedTime : 2026-01-15T10:30:00Z EnvironmentState : Enabled ```
Refer to the exhibit.
{
"environmentName": "SalesProd",
"environmentType": "Production",
"region": "eastus",
"properties": {
"databaseType": "Dataverse",
"language": 1033,
"currency": "USD"
},
"securityGroups": [
{
"id": "sg-sales-admins",
"role": "System Administrator"
},
{
"id": "sg-sales-users",
"role": "Basic User"
}
]
}Refer to the exhibit. PS C:\> Get-AdminPowerAppEnvironment -EnvironmentName 'Env1' | Select-Object EnvironmentName, EnvironmentType, State, CreatedTime, LastModifiedTime EnvironmentName EnvironmentType State CreatedTime LastModifiedTime --------------- --------------- ----- ----------- ---------------- Env1 Production Enabled 2025-11-15 10:00 AM 2026-02-20 02:30 PM
Refer to the exhibit.
{
"policyName": "Block Social Connectors",
"scope": "TenantLevel",
"environmentType": "All",
"connectors": [
{
"id": "/providers/Microsoft.PowerApps/apis/shared_facebook",
"action": "Block"
},
{
"id": "/providers/Microsoft.PowerApps/apis/shared_twitter",
"action": "Block"
},
{
"id": "/providers/Microsoft.PowerApps/apis/shared_linkedin",
"action": "Block"
}
]
}Exhibit (JSON policy):
{
"policy": {
"name": "Default",
"type": "DataLossPrevention",
"properties": {
"blockedConnectors": ["Microsoft Teams", "Twitter"],
"blockedConnectorGroups": [],
"environment": {
"id": "/providers/Microsoft.PowerApps/environments/Default-87a8b3c4-1234-5678-abcd-1234567890ab"
}
}
}
}Exhibit (PowerShell output):
PS C:\> Get-AdminPowerAppEnvironment -EnvironmentName 'Default-87a8b3c4-1234-5678-abcd-1234567890ab' | Select-Object EnvironmentName, Properties
EnvironmentName : Default-87a8b3c4-1234-5678-abcd-1234567890ab
Properties : @{createdTime=01/01/2025 10:00:00; linkedEnvironmentMetadata=; displayName=Contoso Default; provisioningState=Succeeded; environmentSecurityGroupName=ContosoUsers; isDefault=True; notificationUrl=; ...}Exhibit (ARM/Bicep template snippet):
resource environment 'Microsoft.PowerApps/environments@2023-06-01' = {
name: 'ContosoDev'
location: 'unitedstates'
properties: {
displayName: 'Contoso Development'
description: 'Development environment'
environmentSku: 'Sandbox'
}
}Refer to the exhibit. {
"policy": {
"actions": [
{
"actionType": "Block",
"connectorId": "/providers/Microsoft.PowerApps/apis/shared_googlesheets"
},
{
"actionType": "Block",
"connectorId": "/providers/Microsoft.PowerApps/apis/shared_dropbox"
}
]
}
}Refer to the exhibit. {
"tenantSettings": {
"disableCapacityAllocation": false,
"capacityAllocationMode": "UserAllocation",
"maxCapacityPerEnvironment": 10,
"defaultEnvironmentCapacity": 5
}
}Refer to the exhibit. {
"properties": {
"environmentType": "Production",
"linkedEnvironmentMetadata": {
"resourceId": "/providers/Microsoft.PowerApps/environments/...",
"friendlyName": "Development Sandbox",
"type": "Sandbox"
},
"sdkUrls": {
"environmentUrl": "https://org123.crm.dynamics.com"
}
}
}Refer to the exhibit.
{
"policy": {
"connectors": {
"blocked": ["Microsoft SharePoint"]
},
"environment": {
"type": "Production"
}
}
}Refer to the exhibit. PowerShell output: Get-AdminPowerAppEnvironment | Format-Table DisplayName, EnvironmentType, Location DisplayName EnvironmentType Location --------------- --------------- -------- Contoso Sales Production eastus Contoso Dev Sandbox westus Contoso Test Trial northcentralus
Refer to the exhibit.
{
"capacity": {
"database": "5.00 GB",
"file": "20.00 GB",
"log": "2.00 GB"
},
"environmentType": "Sandbox"
}Refer to the exhibit.
{
"name": "Environment Usage Report",
"type": "Power BI report",
"dataset": {
"name": "Power Platform Admin View",
"tables": [
{
"name": "Environments",
"columns": [
{ "name": "EnvironmentName", "dataType": "string" },
{ "name": "TotalActiveUsers", "dataType": "int" },
{ "name": "TotalAppUsage", "dataType": "int" },
{ "name": "TotalFlowRuns", "dataType": "int" }
]
}
]
}
}An admin runs a report to see total active users per environment. The report shows zero active users for a production environment that is actively used. What is the most likely reason?
Refer to the exhibit.
Get-MgDirectoryRole | Where-Object {$_.DisplayName -eq "Power Platform Administrator"} | Select-Object Id
An admin runs this Microsoft Graph PowerShell command and gets no output. What does this indicate?
Refer to the exhibit.
{"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.PowerPlatform/enterprisePolicies",
"apiVersion": "2021-01-01",
"name": "myDlpPolicy",
"location": "eastus",
"properties": {
"definition": {"$schema": "https://schema.management.azure.com/providers/Microsoft.PowerPlatform/policyDefinitions/2021-01-01/schema.json#",
"rules": [
{
"name": "Block SharePoint",
"action": "Block",
"connectors": ["shared_sharepointonline"
]
}
]
}
}
}
]
}An admin deploys this ARM template to create a DLP policy. After deployment, users report they can still use the SharePoint connector in Power Automate. What is the most likely reason?
Refer to the exhibit.
{
"environmentName": "ContosoSales",
"location": "eastus",
"properties": {
"dataverse": {
"language": 1033,
"currency": "USD",
"securityGroupId": "00000000-0000-0000-0000-000000000000"
}
}
}{
"policyName": "Block Social Connectors",
"description": "Prevent use of social media connectors in all environments",
"environments": ["All"],
"connectorClassification": ["Blocked"],
"connectors": ["Twitter", "Facebook", "LinkedIn"],
"action": "Block"
}