The Data Quality Studio components have been developed as extensions and can be installed as such.
The process starts with completing an installation of the set as obtained from Microsoft (if you have any questions on this, contact us). Once the installation is completed and you have access through a modern client to the CRONUS demo company follow these steps (you can copy and paste the code to ISE):
The next step assumes that you have downloaded and unzipped the STAEDEAN release package for Data Quality Studio. The PowerShell script below lists the necessary steps. You can copy and paste this script to PowerShell, update the correct path and version numbers and run the script, preferrably section by section:
Run PowerShell as administrator
Install the management modules
Publish the apps to the database
Sync the apps with the database
Install the apps in the database
When complete continue the process in the modern client by importing the RapidStart package and sample Lifecycles and Workflows
Publish, Sync and Install Data Quality Studio apps
# Install the management modules in PowerShell, optionally use the Get-NAVAppinfo to list the apps currently installed.
Import-Module "C:\Program Files\Microsoft Dynamics 365 Business Central\280\Service\Microsoft.Dynamics.Nav.Apps.Management.psd1"
Import-Module "C:\Program Files\Microsoft Dynamics 365 Business Central\280\Service\Microsoft.Dynamics.Nav.Management.psd1"
Get-NAVAppInfo -ServerInstance BC280
# Publish the apps to the database, make sure to copy the correct path \ ... \ from where you unzipped the release package.
Publish-NAVApp -Path "C:\ ... \DQS 28.0.124141.0\DQS 28.0.124141.0\OnPremise\Data Quality Studio for Dynamics 365 Business Central\Artifact 28.0.124141.0\TIC25.0.123957.0\apps\STAEDEAN_STAEDEAN-Common_25.0.123957.0.app" -ServerInstance BC280
Publish-NAVApp -Path "C:\ ... \DQS 28.0.124141.0\DQS 28.0.124141.0\OnPremise\Data Quality Studio for Dynamics 365 Business Central\Artifact 28.0.124141.0\DQS\apps\DQS\app\STAEDEAN_STAEDEAN-Data Quality Studio_27.0.124141.0.app"
# Sync the published apps, make sure to use the correct name and version number .-----.
Sync-NAVApp -Name "Staedean-Common" -ServerInstance BC280 -Version 25.0.-----.0
Sync-NAVApp -Name "Staedean-Data Quality Studio" -ServerInstance BC280 -Version 27.0..-----..0
# Install the published apps, make sure to use the correct name and version number .-----.
Install-NAVApp -Name "Staedean-Common" -ServerInstance BC280 -Version 25.0.-----.0
Install-NAVApp -Name "Staedean-Data Quality Studio" -ServerInstance BC280 -Version 27.0.-----.0