How to Upload Dynamics NAV/D365 Business Central License with Azure SQL database? Step-1: Open Windows Powershell ISE as administrator. Step-2 : Create *.ps1 script file save with below content $Credentials = (New-Object PSCredential -ArgumentList <azure_sql_username> ,(ConvertTo-SecureString -AsPlainText -Force <azure_sql_Password> )) $License = "C:\AzureScript\BusinessCentral.flf" Import-module "C:\Program Files\Microsoft Dynamics 365 Business Central\130\Service\NavAdminTool.ps1" Install-WindowsFeature -Name NET-HTTP-Activation New-NAVEncryptionKey -KeyPath "C:\AzureScript\D365BC.key" -Password (ConvertTo-SecureString -AsPlainText -Force <azure_sql_username> ) -Force Import-NAVEncryptionKey -ServerInstance DynamicsNAV130 ` -ApplicationDatabaseServer ' xxxxx.database.windows.net ' ` -ApplicationDatabaseCredentials $Credentials ` -ApplicationDatabaseName 'D365BC_DEV' ` -KeyPath C:\AzureScript\D365BC.ke...
Posts
Showing posts from November, 2018
- Get link
- X
- Other Apps
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixQglM4jzrDxnnr87v0FrHx1S4E4SQU5N81YLQRyzL1bjiZCjUVKV5qerBOIljJ7WPLQvpj2q_62r7J_6aH1NXqozNLhMSHmAmSNIfLGkG1-fogeP3RceiZKa43yi6OaIqI0fA2udq6oo/s320/mounttenant.png)
How to Deploy Multi-tenant for D365 Business Central On-Premise using Azure SQL? To deploy Multi-tenant environment for D365 Business Central On-Premise using Azure SQL. See below steps: Step-1: Restore your database say "Demo Database (13.0)" in local SQL server Instance <database server>\<database instance> e.g. SQLSERVER\NAVDEMO Step-2: Run Windows Powershell ISE as administrator and Create ".ps1" file and run below command: Import-Module 'C:\Program Files\Microsoft Dynamics 365 Business Central\130\Service\NavAdminTool.ps1' Export-NavApplication -DatabaseServer SQLSERVER -DatabaseInstance NAVDEMO -DatabaseName ‘Demo Database (13.0)’ -DestinationDatabaseName ‘Demo Database (13.0)_APP’ Remove-NavApplication -DatabaseServer SQLSERVER -DatabaseInstance NAVDEMO -DatabaseName ‘Demo Database (13.0)’ Please note: - ‘Demo Database (13.0)_APP’ is Application database and you have to use this database for all your custo...