Reputation: 11
I need to install D365 apps to my powerapps environment with PowerShell. But, I don’t see any supported cmdlet available now. Anyone please confirm, if any cmdlet is available to achieve the same in below use cases
Upvotes: 1
Views: 371
Reputation: 22846
I’m sharing this snippet from a community forum thread:
1 Install-Module -Name Microsoft.PowerApps.Administration.PowerShell
2 New-AdminPowerAppEnvironment -DisplayName "MyTestEnvironment" -EnvironmentSku Production -LocationName europe -CurrencyName EUR -LanguageName 1033 -Templates @("D365_SalesPro") -ProvisionDatabase
Upvotes: 1