Friday, December 16, 2022

Setup Dynamics 365 Commerce development environment

 


  1. Install WebView2 dev tools at https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section (install for all windows users as admininstrator)
  2. Download Store Commerce SDK installer in LCS > Shared Library
  3. Run Windows PowerShell as admin, then install CommerSDK with the command .\StoreCommerce.Installer.exe install --enablewebviewdevtools

  4. Click Start button > Store Commerce 

  5. Copy retail server URL from D365 HQ at Retail and Commerce > Channel Setup > Channel profiles  and paste it to the Store Commerce app
  6. Validate if the Retail Server is alive: go to IIS and browse the Retail Server or copy the Retail Server URL in step 5 and paste it in the browser.
  7. Check if Full text index has been install in SQL Server by running the command below  SELECT 
        CASE 
             WHEN 
                 FULLTEXTSERVICEPROPERTY('IsFullTextInstalled') = 1 
             THEN 
                  'INSTALLED' 
             ELSE 
                  'NOT INSTALLED' 
        END IsFullTextInstalled
  8. Check Prerequisites for setting up the enviornment https://learn.microsoft.com/en-us/dynamics365/commerce/dev-itpro/setup-local-dev-env

Set up Onebox VM for D365 FO with non-organization microsoft account

With the release of the new VHD 10.0.37, I have tried to create a Onebox VM in my laptop instead of using the cloud hosted environment and f...