Open SQL MS and switch this flip to True and keep default values for your database.
Now you can resume the process.
2020 release wave 2 Installed product version : 10.0.14 (10.0.605.20015) Installed platform version : Update38 (7.0.5778.41504)
Open SQL MS and switch this flip to True and keep default values for your database.
Grant above permissions.
3) On the VM for the environment, open PowerShell
4) Run the following commands:
a) Install-Module D365fo.tools, and accept all the prompts
b) New-D365EntraIntegration -ClientId <client-id> (client-id is the app registration id that was created)
5) The above command will save a certificate, which then needs to be uploaded to the app registration that was created
If you refresh your devbox database from another environment and need to set up its admin account to your user, you can do it by executing the following SQL command.
update USERINFO set NAME = 'Admin', NETWORKDOMAIN ='https://sts.windows.net/', NETWORKALIAS = 'a.voytsekhovskiy@mydomain.net', ENABLE = 1, SID = 'S-1-19-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX', IDENTITYPROVIDER ='https://sts.windows.net/' where ID = 'ADMIN'
NB: use your own email address and SID.