gitextract_ur7j2o7_/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── Release-Management.yml │ ├── build-manual.yml │ ├── build.yml │ ├── dependencies.yml │ ├── update-generated-text.yml │ └── update-wiki.yml ├── .gitignore ├── LICENSE ├── README.md ├── build/ │ ├── buildtools.ps1 │ ├── filesAfter.txt │ ├── filesBefore.txt │ ├── format-commentbasedhelp.ps1 │ ├── generate-findcommandindex.ps1 │ ├── generate-parameterunittests.ps1 │ ├── update-docs.ps1 │ ├── vsts-build.ps1 │ ├── vsts-prerequisites.ps1 │ ├── vsts-validate-psscriptanalyzer.ps1 │ └── vsts-validate.ps1 ├── contributing.md ├── d365fo.tools/ │ ├── bin/ │ │ ├── d365fo.tools-index.json │ │ └── readme.md │ ├── d365fo.tools.psd1 │ ├── d365fo.tools.psm1 │ ├── en-us/ │ │ ├── about_Deployable_Packages.help.txt │ │ └── about_d365fo.tools.help.txt │ ├── functions/ │ │ ├── add-d365azurestorageconfig.ps1 │ │ ├── add-d365broadcastmessageconfig.ps1 │ │ ├── add-d365moduletoremove.ps1 │ │ ├── add-d365rsatwifconfigauthoritythumbprint.ps1 │ │ ├── add-d365windowsdefenderrules.ps1 │ │ ├── backup-d365devconfig.ps1 │ │ ├── backup-d365metadatadir.ps1 │ │ ├── backup-d365runbook.ps1 │ │ ├── backup-d365webconfig.ps1 │ │ ├── backup-d365wifconfig.ps1 │ │ ├── clear-d365activebroadcastmessageconfig.ps1 │ │ ├── clear-d365bacpacobject.ps1 │ │ ├── clear-d365bacpactabledata.ps1 │ │ ├── clear-d365monitordata.ps1 │ │ ├── clear-d365tempdbtables.ps1 │ │ ├── convertto-d365dacpac.ps1 │ │ ├── disable-d365exception.ps1 │ │ ├── disable-d365flight.ps1 │ │ ├── disable-d365iispreload.ps1 │ │ ├── disable-d365maintenancemode.ps1 │ │ ├── disable-d365sqlchangetracking.ps1 │ │ ├── disable-d365user.ps1 │ │ ├── enable-d365exception.ps1 │ │ ├── enable-d365flight.ps1 │ │ ├── enable-d365iispreload.ps1 │ │ ├── enable-d365maintenancemode.ps1 │ │ ├── enable-d365sqlchangetracking.ps1 │ │ ├── enable-d365user.ps1 │ │ ├── export-d365bacpacmodelfile.ps1 │ │ ├── export-d365model.ps1 │ │ ├── export-d365securitydetails.ps1 │ │ ├── find-d365command.ps1 │ │ ├── get-d365activeazurestorageconfig.ps1 │ │ ├── get-d365activebroadcastmessageconfig.ps1 │ │ ├── get-d365aotobject.ps1 │ │ ├── get-d365azuredevopsnuget.ps1 │ │ ├── get-d365azurestorageconfig.ps1 │ │ ├── get-d365azurestoragefile.ps1 │ │ ├── get-d365azurestorageurl.ps1 │ │ ├── get-d365bacpacsqloptions.ps1 │ │ ├── get-d365bacpactable.ps1 │ │ ├── get-d365broadcastmessage.ps1 │ │ ├── get-d365broadcastmessageconfig.ps1 │ │ ├── get-d365clickoncetrustprompt.ps1 │ │ ├── get-d365compilerresult.ps1 │ │ ├── get-d365database.ps1 │ │ ├── get-d365databaseaccess.ps1 │ │ ├── get-d365decryptedwebconfig.ps1 │ │ ├── get-d365defaultmodelfornewprojects.ps1 │ │ ├── get-d365dotnetclass.ps1 │ │ ├── get-d365dotnetmethod.ps1 │ │ ├── get-d365environment.ps1 │ │ ├── get-d365environmentsettings.ps1 │ │ ├── get-d365eventtraceprovider.ps1 │ │ ├── get-d365externalip.ps1 │ │ ├── get-d365flight.ps1 │ │ ├── get-d365iispreload.ps1 │ │ ├── get-d365installedhotfix.ps1 │ │ ├── get-d365installedpackage.ps1 │ │ ├── get-d365installedservice.ps1 │ │ ├── get-d365instancename.ps1 │ │ ├── get-d365jsonservice.ps1 │ │ ├── get-d365label.ps1 │ │ ├── get-d365labelfile.ps1 │ │ ├── get-d365language.ps1 │ │ ├── get-d365lcsapiconfig.ps1 │ │ ├── get-d365lcsapitoken.ps1 │ │ ├── get-d365lcsassetfile.ps1 │ │ ├── get-d365lcsassetvalidationstatus.ps1 │ │ ├── get-d365lcsdatabasebackups.ps1 │ │ ├── get-d365lcsdatabaseoperationstatus.ps1 │ │ ├── get-d365lcsdeploymentstatus.ps1 │ │ ├── get-d365lcsenvironmenthistory.ps1 │ │ ├── get-d365lcsenvironmentmetadata.ps1 │ │ ├── get-d365lcsenvironmentrsatcertificate.ps1 │ │ ├── get-d365lcssharedassetfile.ps1 │ │ ├── get-d365maintenancemode.ps1 │ │ ├── get-d365model.ps1 │ │ ├── get-d365module.ps1 │ │ ├── get-d365offlineauthenticationadminemail.ps1 │ │ ├── get-d365packagebundledetail.ps1 │ │ ├── get-d365packagelabelresourcefile.ps1 │ │ ├── get-d365packagelabelresources.ps1 │ │ ├── get-d365productinformation.ps1 │ │ ├── get-d365rsatcertificatethumbprint.ps1 │ │ ├── get-d365rsatplaybackfile.ps1 │ │ ├── get-d365rsatsoaphostname.ps1 │ │ ├── get-d365runbook.ps1 │ │ ├── get-d365runbookid.ps1 │ │ ├── get-d365runbooklogfile.ps1 │ │ ├── get-d365sdpcleanup.ps1 │ │ ├── get-d365sdpdetails.ps1 │ │ ├── get-d365table.ps1 │ │ ├── get-d365tablefield.ps1 │ │ ├── get-d365tablesequence.ps1 │ │ ├── get-d365tablesinchangedtracking.ps1 │ │ ├── get-d365tfsuri.ps1 │ │ ├── get-d365tfsworkspace.ps1 │ │ ├── get-d365url.ps1 │ │ ├── get-d365user.ps1 │ │ ├── get-d365userauthenticationdetail.ps1 │ │ ├── get-d365visualstudiocompilerresult.ps1 │ │ ├── get-d365webservertype.ps1 │ │ ├── get-d365windowsactivationstatus.ps1 │ │ ├── import-d365aadapplication.ps1 │ │ ├── import-d365aaduser.ps1 │ │ ├── import-d365bacpac.ps1 │ │ ├── import-d365dacpac.ps1 │ │ ├── import-d365externaluser.ps1 │ │ ├── import-d365model.ps1 │ │ ├── import-d365rsatselfservicecertificates.ps1 │ │ ├── initialize-d365rsatcertificate.ps1 │ │ ├── install-d365supportingsoftware.ps1 │ │ ├── invoke-d365azcopytransfer.ps1 │ │ ├── invoke-d365azuredevopsnugetpush.ps1 │ │ ├── invoke-d365azurestoragedownload.ps1 │ │ ├── invoke-d365azurestorageupload.ps1 │ │ ├── invoke-d365bestpractice.ps1 │ │ ├── invoke-d365compilerresultanalyzer.ps1 │ │ ├── invoke-d365dataflush.ps1 │ │ ├── invoke-d365dbsync.ps1 │ │ ├── invoke-d365dbsyncmodule.ps1 │ │ ├── invoke-d365dbsyncpartial.ps1 │ │ ├── invoke-d365generatereportaggregatedataentity.ps1 │ │ ├── invoke-d365generatereportaggregatemeasure.ps1 │ │ ├── invoke-d365generatereportconfigkey.ps1 │ │ ├── invoke-d365generatereportconfigkeygroup.ps1 │ │ ├── invoke-d365generatereportdataentity.ps1 │ │ ├── invoke-d365generatereportdataentityfield.ps1 │ │ ├── invoke-d365generatereportkpi.ps1 │ │ ├── invoke-d365generatereportlicensecode.ps1 │ │ ├── invoke-d365generatereportmenuitem.ps1 │ │ ├── invoke-d365generatereports.ps1 │ │ ├── invoke-d365generatereportssrs.ps1 │ │ ├── invoke-d365generatereporttable.ps1 │ │ ├── invoke-d365generatereportworkflowtype.ps1 │ │ ├── invoke-d365installazcopy.ps1 │ │ ├── invoke-d365installlicense.ps1 │ │ ├── invoke-d365installnuget.ps1 │ │ ├── invoke-d365installsqlpackage.ps1 │ │ ├── invoke-d365lcsapirefreshtoken.ps1 │ │ ├── invoke-d365lcsdatabaseexport.ps1 │ │ ├── invoke-d365lcsdatabaserefresh.ps1 │ │ ├── invoke-d365lcsdeployment.ps1 │ │ ├── invoke-d365lcsenvironmentstart.ps1 │ │ ├── invoke-d365lcsenvironmentstop.ps1 │ │ ├── invoke-d365lcsupload.ps1 │ │ ├── invoke-d365modulecompile.ps1 │ │ ├── invoke-d365modulefullcompile.ps1 │ │ ├── invoke-d365modulelabelgeneration.ps1 │ │ ├── invoke-d365modulereportscompile.ps1 │ │ ├── invoke-d365processmodule.ps1 │ │ ├── invoke-d365rearmwindows.ps1 │ │ ├── invoke-d365runbookanalyzer.ps1 │ │ ├── invoke-d365scdpbundleinstall.ps1 │ │ ├── invoke-d365sdpinstall.ps1 │ │ ├── invoke-d365sdpinstallude.ps1 │ │ ├── invoke-d365seleniumdownload.ps1 │ │ ├── invoke-d365sqlscript.ps1 │ │ ├── invoke-d365sysflushaodcache.ps1 │ │ ├── invoke-d365sysrunnerclass.ps1 │ │ ├── invoke-d365tablebrowser.ps1 │ │ ├── invoke-d365visualstudiocompilerresultanalyzer.ps1 │ │ ├── invoke-d365winrmcertificaterotation.ps1 │ │ ├── new-d365bacpac.ps1 │ │ ├── new-d365careport.ps1 │ │ ├── new-d365entraintegration.ps1 │ │ ├── new-d365isvlicense.ps1 │ │ ├── new-d365moduletoremove.ps1 │ │ ├── new-d365topologyfile.ps1 │ │ ├── publish-d365ssrsreport.ps1 │ │ ├── publish-d365webresources.ps1 │ │ ├── register-d365azurestorageconfig.ps1 │ │ ├── remove-d365broadcastmessageconfig.ps1 │ │ ├── remove-d365database.ps1 │ │ ├── remove-d365lcsassetfile.ps1 │ │ ├── remove-d365model.ps1 │ │ ├── remove-d365user.ps1 │ │ ├── rename-d365computername.ps1 │ │ ├── rename-d365instance.ps1 │ │ ├── repair-d365bacpacmodelfile.ps1 │ │ ├── restart-d365environment.ps1 │ │ ├── restore-d365devconfig.ps1 │ │ ├── restore-d365webconfig.ps1 │ │ ├── send-d365broadcastmessage.ps1 │ │ ├── set-d365activeazurestorageconfig.ps1 │ │ ├── set-d365activebroadcastmessageconfig.ps1 │ │ ├── set-d365admin.ps1 │ │ ├── set-d365azcopypath.ps1 │ │ ├── set-d365clickoncetrustprompt.ps1 │ │ ├── set-d365defaultmodelfornewprojects.ps1 │ │ ├── set-d365favoritebookmark.ps1 │ │ ├── set-d365flightservicecatalogid.ps1 │ │ ├── set-d365lcsapiconfig.ps1 │ │ ├── set-d365nugetpath.ps1 │ │ ├── set-d365offlineauthenticationadminemail.ps1 │ │ ├── set-d365rsatconfiguration.ps1 │ │ ├── set-d365rsattier2crypto.ps1 │ │ ├── set-d365sdpcleanup.ps1 │ │ ├── set-d365sqlpackagepath.ps1 │ │ ├── set-d365startpage.ps1 │ │ ├── set-d365sysadmin.ps1 │ │ ├── set-d365traceparserfilesize.ps1 │ │ ├── set-d365webconfigdatabase.ps1 │ │ ├── set-d365webservertype.ps1 │ │ ├── set-d365workstationmode.ps1 │ │ ├── start-d365environment.ps1 │ │ ├── start-d365environmentv2.ps1 │ │ ├── start-d365eventtrace.ps1 │ │ ├── stop-d365environment.ps1 │ │ ├── stop-d365eventtrace.ps1 │ │ ├── switch-d365activedatabase.ps1 │ │ ├── test-d365command.ps1 │ │ ├── test-d365dataverseconnection.ps1 │ │ ├── test-d365entraintegration.ps1 │ │ ├── test-d365flightservicecatalogid.ps1 │ │ ├── test-d365labelidisvalid.ps1 │ │ ├── update-d365bacpacmodelfilesingletable.ps1 │ │ └── update-d365user.ps1 │ ├── internal/ │ │ ├── configurations/ │ │ │ ├── configuration.ps1 │ │ │ └── readme.md │ │ ├── functions/ │ │ │ ├── add-aadusersecurity.ps1 │ │ │ ├── add-filetopackage.ps1 │ │ │ ├── backup-file.ps1 │ │ │ ├── complete-lcsuploadv2.ps1 │ │ │ ├── convert-hashtoargstringswitch.ps1 │ │ │ ├── convertto-booleanordefault.ps1 │ │ │ ├── convertto-hashtable.ps1 │ │ │ ├── convertto-pscustomobject.ps1 │ │ │ ├── copy-filetolcsblob.ps1 │ │ │ ├── get-applicationenvironment.ps1 │ │ │ ├── get-asyncresult.ps1 │ │ │ ├── get-axaggregatedimensions.ps1 │ │ │ ├── get-axaggregatemeasures.ps1 │ │ │ ├── get-axdataentities.ps1 │ │ │ ├── get-axforms.ps1 │ │ │ ├── get-axviews.ps1 │ │ │ ├── get-azureserviceobjective.ps1 │ │ │ ├── get-backupname.ps1 │ │ │ ├── get-canonicalidentityprovider.ps1 │ │ │ ├── get-compilerresult.ps1 │ │ │ ├── get-deepclone.ps1 │ │ │ ├── get-fileversion.ps1 │ │ │ ├── get-identityprovider.ps1 │ │ │ ├── get-instanceidentityprovider.ps1 │ │ │ ├── get-instancevalues.ps1 │ │ │ ├── get-lcsassetfilev2.ps1 │ │ │ ├── get-lcsassetvalidationstatusv2.ps1 │ │ │ ├── get-lcsdatabasebackupsv2.ps1 │ │ │ ├── get-lcsdatabaseoperationstatusv2.ps1 │ │ │ ├── get-lcsdeploymentstatusv2.ps1 │ │ │ ├── get-lcsenvironmenthistory.ps1 │ │ │ ├── get-lcsenvironmentmetadata.ps1 │ │ │ ├── get-lcsenvironmentrsatcertificate.ps1 │ │ │ ├── get-lcsfileasset.ps1 │ │ │ ├── get-lcssharedassetfile.ps1 │ │ │ ├── get-loginfromemail.ps1 │ │ │ ├── get-networkdomain.ps1 │ │ │ ├── get-productinfoprovider.ps1 │ │ │ ├── get-servicelist.ps1 │ │ │ ├── get-sqlcommand.ps1 │ │ │ ├── get-sqlparametersize.ps1 │ │ │ ├── get-sqlparametervalue.ps1 │ │ │ ├── get-sqlstring.ps1 │ │ │ ├── get-syncelements.ps1 │ │ │ ├── get-tenantfromemail.ps1 │ │ │ ├── get-timezone.ps1 │ │ │ ├── get-usersidfromaad.ps1 │ │ │ ├── get-windowsdefenderstatus.ps1 │ │ │ ├── import-aadapplicationIntod365fo.ps1 │ │ │ ├── import-aaduserIntod365fo.ps1 │ │ │ ├── import-assemblyfileintomemory.ps1 │ │ │ ├── import-generatereportassemblies.ps1 │ │ │ ├── invoke-azurebackuprestore.ps1 │ │ │ ├── invoke-clearazurespecificobjects.ps1 │ │ │ ├── invoke-clearsqlspecificobjects.ps1 │ │ │ ├── invoke-compilerresultanalyzer.ps1 │ │ │ ├── invoke-modelutil.ps1 │ │ │ ├── invoke-process.ps1 │ │ │ ├── invoke-requesthandler.ps1 │ │ │ ├── invoke-sqlbackuprestore.ps1 │ │ │ ├── invoke-sqlpackage.ps1 │ │ │ ├── invoke-timesignal.ps1 │ │ │ ├── new-d365foaadapplication.ps1 │ │ │ ├── new-d365fouser.ps1 │ │ │ ├── new-d365selfsignedcertificate.ps1 │ │ │ ├── new-decryptedfile.ps1 │ │ │ ├── new-webrequest.ps1 │ │ │ ├── publish-d365foresources.ps1 │ │ │ ├── readme.md │ │ │ ├── remove-lcsassetfile.ps1 │ │ │ ├── rename-configvalue.ps1 │ │ │ ├── repair-bacpacmodelqualifier.ps1 │ │ │ ├── repair-bacpacmodelsimpleandreplace.ps1 │ │ │ ├── select-defaultview.ps1 │ │ │ ├── set-adminuser.ps1 │ │ │ ├── set-azurebacpacvalues.ps1 │ │ │ ├── set-browserbookmark.ps1 │ │ │ ├── set-sqlbacpacvalues.ps1 │ │ │ ├── start-lcsdatabaseexportv2.ps1 │ │ │ ├── start-lcsdatabaserefreshv2.ps1 │ │ │ ├── start-lcsdeploymentv2.ps1 │ │ │ ├── start-lcsenvironmentstartstopv2.ps1 │ │ │ ├── start-lcsuploadv2.ps1 │ │ │ ├── test-aaduseridind365fo.ps1 │ │ │ ├── test-aaduserind365fo.ps1 │ │ │ ├── test-assembliesloaded.ps1 │ │ │ ├── test-configstoreagelocation.ps1 │ │ │ ├── test-pathexists.ps1 │ │ │ ├── test-registryvalue.ps1 │ │ │ ├── test-trustedconnection.ps1 │ │ │ ├── update-azurestoragevariables.ps1 │ │ │ ├── update-broadcastvariables.ps1 │ │ │ ├── update-lcsapivariables.ps1 │ │ │ ├── update-modulevariables.ps1 │ │ │ ├── update-psfconfigvariables.ps1 │ │ │ └── update-topologyfile.ps1 │ │ ├── misc/ │ │ │ ├── AzureDevOps.url │ │ │ ├── Bookmarks │ │ │ ├── D365FO.url │ │ │ ├── RepairBacpac.Qualifier.json │ │ │ ├── RepairBacpac.Replace.json │ │ │ └── RepairBacpac.Simple.json │ │ ├── scripts/ │ │ │ ├── enums.ps1 │ │ │ ├── license.ps1 │ │ │ ├── load-dotnet-assemblies.ps1 │ │ │ ├── postimport.ps1 │ │ │ ├── preimport.ps1 │ │ │ └── variables.ps1 │ │ ├── sql/ │ │ │ ├── add-aadapplicationintod365fo.sql │ │ │ ├── add-aaduserintod365fo.sql │ │ │ ├── add-bacpacdatabase.sql │ │ │ ├── backuprestoredb.sql │ │ │ ├── checkfornewazuredb.sql │ │ │ ├── clear-azurebacpacdatabase.sql │ │ │ ├── clear-d365tempdbtables.sql │ │ │ ├── clear-sqlbacpacdatabase.sql │ │ │ ├── disable-changetracking.sql │ │ │ ├── disable-flight.sql │ │ │ ├── disable-maintenancemode.sql │ │ │ ├── disable-user.sql │ │ │ ├── enable-changetracking.sql │ │ │ ├── enable-flight.sql │ │ │ ├── enable-maintenancemode.sql │ │ │ ├── enable-user.sql │ │ │ ├── get-alltablefields.sql │ │ │ ├── get-azureserviceobjective.sql │ │ │ ├── get-broadcastmessage.sql │ │ │ ├── get-broadcastmessageactive.sql │ │ │ ├── get-database.sql │ │ │ ├── get-flight.sql │ │ │ ├── get-instancevalues.sql │ │ │ ├── get-maintenancemode.sql │ │ │ ├── get-tablefields.sql │ │ │ ├── get-tables.sql │ │ │ ├── get-tablesequence.sql │ │ │ ├── get-tablesinchangedtracking.sql │ │ │ ├── get-user.sql │ │ │ ├── invoke-sphelp.sql │ │ │ ├── newazuredbfromcopy.sql │ │ │ ├── remove-database.sql │ │ │ ├── remove-user.sql │ │ │ ├── rename-computer.sql │ │ │ ├── set-aadusersecurityind365fo.sql │ │ │ ├── set-bacpacvaluesazure.sql │ │ │ ├── set-bacpacvaluessql.sql │ │ │ ├── set-sysadmin.sql │ │ │ ├── switch-database-tier1.sql │ │ │ ├── switch-database-tier2.sql │ │ │ ├── test-aaduseridind365fo.sql │ │ │ ├── test-aaduserind365fo.sql │ │ │ └── update-user.sql │ │ └── tepp/ │ │ ├── assignment.ps1 │ │ ├── eventtrace.tepp.ps1 │ │ ├── example.tepp.ps1 │ │ ├── lcs.tepp.ps1 │ │ ├── readme.md │ │ └── send-d365message.tepp.ps1 │ ├── readme.md │ ├── tests/ │ │ ├── examples/ │ │ │ ├── Get-DeepClone.Tests.ps1 │ │ │ ├── Import-D365Bacpac.Tests.ps1 │ │ │ └── Test-TrustedConnection.Tests.ps1 │ │ ├── functions/ │ │ │ ├── Add-D365AzureStorageConfig.Tests.ps1 │ │ │ ├── Add-D365BroadcastMessageConfig.Tests.ps1 │ │ │ ├── Add-D365ModuleToRemove.Tests.ps1 │ │ │ ├── Add-D365RsatWifConfigAuthorityThumbprint.Tests.ps1 │ │ │ ├── Add-D365WindowsDefenderRules.Tests.ps1 │ │ │ ├── Backup-D365DevConfig.Tests.ps1 │ │ │ ├── Backup-D365MetaDataDir.Tests.ps1 │ │ │ ├── Backup-D365Runbook.Tests.ps1 │ │ │ ├── Backup-D365WebConfig.Tests.ps1 │ │ │ ├── Backup-D365WifConfig.Tests.ps1 │ │ │ ├── Clear-D365ActiveBroadcastMessageConfig.Tests.ps1 │ │ │ ├── Clear-D365BacpacObject.Tests.ps1 │ │ │ ├── Clear-D365BacpacTableData.Tests.ps1 │ │ │ ├── Clear-D365MonitorData.Tests.ps1 │ │ │ ├── Clear-D365TempDbTables.Tests.ps1 │ │ │ ├── ConvertTo-D365Dacpac.Tests.ps1 │ │ │ ├── Disable-D365Exception.Tests.ps1 │ │ │ ├── Disable-D365Flight.Tests.ps1 │ │ │ ├── Disable-D365IISPreload.Tests.ps1 │ │ │ ├── Disable-D365MaintenanceMode.Tests.ps1 │ │ │ ├── Disable-D365SqlChangeTracking.Tests.ps1 │ │ │ ├── Disable-D365User.Tests.ps1 │ │ │ ├── Enable-D365Exception.Tests.ps1 │ │ │ ├── Enable-D365Flight.Tests.ps1 │ │ │ ├── Enable-D365IISPreload.Tests.ps1 │ │ │ ├── Enable-D365MaintenanceMode.Tests.ps1 │ │ │ ├── Enable-D365SqlChangeTracking.Tests.ps1 │ │ │ ├── Enable-D365User.Tests.ps1 │ │ │ ├── Export-D365BacpacModelFile.Tests.ps1 │ │ │ ├── Export-D365Model.Tests.ps1 │ │ │ ├── Export-D365SecurityDetails.Tests.ps1 │ │ │ ├── Find-D365Command.Tests.ps1 │ │ │ ├── Get-D365AOTObject.Tests.ps1 │ │ │ ├── Get-D365ActiveAzureStorageConfig.Tests.ps1 │ │ │ ├── Get-D365ActiveBroadcastMessageConfig.Tests.ps1 │ │ │ ├── Get-D365AzureDevOpsNuget.Tests.ps1 │ │ │ ├── Get-D365AzureStorageConfig.Tests.ps1 │ │ │ ├── Get-D365AzureStorageFile.Tests.ps1 │ │ │ ├── Get-D365AzureStorageUrl.Tests.ps1 │ │ │ ├── Get-D365BacpacSqlOptions.Tests.ps1 │ │ │ ├── Get-D365BacpacTable.Tests.ps1 │ │ │ ├── Get-D365BroadcastMessage.Tests.ps1 │ │ │ ├── Get-D365BroadcastMessageConfig.Tests.ps1 │ │ │ ├── Get-D365ClickOnceTrustPrompt.Tests.ps1 │ │ │ ├── Get-D365CompilerResult.Tests.ps1 │ │ │ ├── Get-D365Database.Tests.ps1 │ │ │ ├── Get-D365DatabaseAccess.Tests.ps1 │ │ │ ├── Get-D365DecryptedWebConfig.Tests.ps1 │ │ │ ├── Get-D365DefaultModelForNewProjects.Tests.ps1 │ │ │ ├── Get-D365DotNetClass.Tests.ps1 │ │ │ ├── Get-D365DotNetMethod.Tests.ps1 │ │ │ ├── Get-D365Environment.Tests.ps1 │ │ │ ├── Get-D365EnvironmentSettings.Tests.ps1 │ │ │ ├── Get-D365EventTraceProvider.Tests.ps1 │ │ │ ├── Get-D365ExternalIP.Tests.ps1 │ │ │ ├── Get-D365Flight.Tests.ps1 │ │ │ ├── Get-D365IISPreload.Tests.ps1 │ │ │ ├── Get-D365InstalledHotfix.Tests.ps1 │ │ │ ├── Get-D365InstalledPackage.Tests.ps1 │ │ │ ├── Get-D365InstalledService.Tests.ps1 │ │ │ ├── Get-D365InstanceName.Tests.ps1 │ │ │ ├── Get-D365JsonService.Tests.ps1 │ │ │ ├── Get-D365Label.Tests.ps1 │ │ │ ├── Get-D365LabelFile.Tests.ps1 │ │ │ ├── Get-D365Language.Tests.ps1 │ │ │ ├── Get-D365LcsApiConfig.Tests.ps1 │ │ │ ├── Get-D365LcsApiToken.Tests.ps1 │ │ │ ├── Get-D365LcsAssetFile.Tests.ps1 │ │ │ ├── Get-D365LcsAssetValidationStatus.Tests.ps1 │ │ │ ├── Get-D365LcsDatabaseBackups.Tests.ps1 │ │ │ ├── Get-D365LcsDatabaseOperationStatus.Tests.ps1 │ │ │ ├── Get-D365LcsDeploymentStatus.Tests.ps1 │ │ │ ├── Get-D365LcsEnvironmentHistory.Tests.ps1 │ │ │ ├── Get-D365LcsEnvironmentMetadata.Tests.ps1 │ │ │ ├── Get-D365LcsEnvironmentRsatCertificate.Tests.ps1 │ │ │ ├── Get-D365LcsSharedAssetFile.Tests.ps1 │ │ │ ├── Get-D365MaintenanceMode.Tests.ps1 │ │ │ ├── Get-D365Model.Tests.ps1 │ │ │ ├── Get-D365Module.Tests.ps1 │ │ │ ├── Get-D365OfflineAuthenticationAdminEmail.Tests.ps1 │ │ │ ├── Get-D365PackageBundleDetail.Tests.ps1 │ │ │ ├── Get-D365PackageLabelResourceFile.Tests.ps1 │ │ │ ├── Get-D365PackageLabelResources.Tests.ps1 │ │ │ ├── Get-D365ProductInformation.Tests.ps1 │ │ │ ├── Get-D365RsatCertificateThumbprint.Tests.ps1 │ │ │ ├── Get-D365RsatPlaybackFile.Tests.ps1 │ │ │ ├── Get-D365RsatSoapHostname.Tests.ps1 │ │ │ ├── Get-D365Runbook.Tests.ps1 │ │ │ ├── Get-D365RunbookId.Tests.ps1 │ │ │ ├── Get-D365RunbookLogFile.Tests.ps1 │ │ │ ├── Get-D365SDPCleanUp.Tests.ps1 │ │ │ ├── Get-D365SDPDetails.Tests.ps1 │ │ │ ├── Get-D365Table.Tests.ps1 │ │ │ ├── Get-D365TableField.Tests.ps1 │ │ │ ├── Get-D365TableSequence.Tests.ps1 │ │ │ ├── Get-D365TablesInChangedTracking.Tests.ps1 │ │ │ ├── Get-D365TfsUri.Tests.ps1 │ │ │ ├── Get-D365TfsWorkspace.Tests.ps1 │ │ │ ├── Get-D365Url.Tests.ps1 │ │ │ ├── Get-D365User.Tests.ps1 │ │ │ ├── Get-D365UserAuthenticationDetail.Tests.ps1 │ │ │ ├── Get-D365VisualStudioCompilerResult.Tests.ps1 │ │ │ ├── Get-D365WebServerType.Tests.ps1 │ │ │ ├── Get-D365WindowsActivationStatus.Tests.ps1 │ │ │ ├── Import-D365AadApplication.Tests.ps1 │ │ │ ├── Import-D365AadUser.Tests.ps1 │ │ │ ├── Import-D365Bacpac.Tests.ps1 │ │ │ ├── Import-D365Dacpac.Tests.ps1 │ │ │ ├── Import-D365ExternalUser.Tests.ps1 │ │ │ ├── Import-D365Model.Tests.ps1 │ │ │ ├── Import-D365RsatSelfServiceCertificates.Tests.ps1 │ │ │ ├── Initialize-D365RsatCertificate.Tests.ps1 │ │ │ ├── Install-D365SupportingSoftware.Tests.ps1 │ │ │ ├── Invoke-D365AzCopyTransfer.Tests.ps1 │ │ │ ├── Invoke-D365AzureDevOpsNugetPush.Tests.ps1 │ │ │ ├── Invoke-D365AzureStorageDownload.Tests.ps1 │ │ │ ├── Invoke-D365AzureStorageUpload.Tests.ps1 │ │ │ ├── Invoke-D365BestPractice.Tests.ps1 │ │ │ ├── Invoke-D365CompilerResultAnalyzer.Tests.ps1 │ │ │ ├── Invoke-D365DBSync.Tests.ps1 │ │ │ ├── Invoke-D365DBSyncPartial.Tests.ps1 │ │ │ ├── Invoke-D365DataFlush.Tests.ps1 │ │ │ ├── Invoke-D365DbSyncModule.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportAggregateDataEntity.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportAggregateMeasure.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportConfigKey.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportConfigKeyGroup.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportDataEntity.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportDataEntityField.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportKpi.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportLicenseCode.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportMenuItem.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportSsrs.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportTable.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReportWorkflowType.Tests.ps1 │ │ │ ├── Invoke-D365GenerateReports.Tests.ps1 │ │ │ ├── Invoke-D365InstallAzCopy.Tests.ps1 │ │ │ ├── Invoke-D365InstallLicense.Tests.ps1 │ │ │ ├── Invoke-D365InstallNuget.Tests.ps1 │ │ │ ├── Invoke-D365InstallSqlPackage.Tests.ps1 │ │ │ ├── Invoke-D365LcsApiRefreshToken.Tests.ps1 │ │ │ ├── Invoke-D365LcsDatabaseExport.Tests.ps1 │ │ │ ├── Invoke-D365LcsDatabaseRefresh.Tests.ps1 │ │ │ ├── Invoke-D365LcsDeployment.Tests.ps1 │ │ │ ├── Invoke-D365LcsEnvironmentStart.Tests.ps1 │ │ │ ├── Invoke-D365LcsEnvironmentStop.Tests.ps1 │ │ │ ├── Invoke-D365LcsUpload.Tests.ps1 │ │ │ ├── Invoke-D365ModuleCompile.Tests.ps1 │ │ │ ├── Invoke-D365ModuleFullCompile.Tests.ps1 │ │ │ ├── Invoke-D365ModuleLabelGeneration.Tests.ps1 │ │ │ ├── Invoke-D365ModuleReportsCompile.Tests.ps1 │ │ │ ├── Invoke-D365ProcessModule.Tests.ps1 │ │ │ ├── Invoke-D365ReArmWindows.Tests.ps1 │ │ │ ├── Invoke-D365RunbookAnalyzer.Tests.ps1 │ │ │ ├── Invoke-D365SCDPBundleInstall.Tests.ps1 │ │ │ ├── Invoke-D365SDPInstall.Tests.ps1 │ │ │ ├── Invoke-D365SDPInstallUDE.Tests.ps1 │ │ │ ├── Invoke-D365SeleniumDownload.Tests.ps1 │ │ │ ├── Invoke-D365SqlScript.Tests.ps1 │ │ │ ├── Invoke-D365SysFlushAodCache.Tests.ps1 │ │ │ ├── Invoke-D365SysRunnerClass.Tests.ps1 │ │ │ ├── Invoke-D365TableBrowser.Tests.ps1 │ │ │ ├── Invoke-D365VisualStudioCompilerResultAnalyzer.Tests.ps1 │ │ │ ├── Invoke-D365WinRmCertificateRotation.Tests.ps1 │ │ │ ├── New-D365Bacpac.Tests.ps1 │ │ │ ├── New-D365CAReport.Tests.ps1 │ │ │ ├── New-D365EntraIntegration.Tests.ps1 │ │ │ ├── New-D365ISVLicense.Tests.ps1 │ │ │ ├── New-D365ModuleToRemove.Tests.ps1 │ │ │ ├── New-D365TopologyFile.Tests.ps1 │ │ │ ├── Publish-D365SsrsReport.Tests.ps1 │ │ │ ├── Publish-D365WebResources.Tests.ps1 │ │ │ ├── Register-D365AzureStorageConfig.Tests.ps1 │ │ │ ├── Remove-D365BroadcastMessageConfig.Tests.ps1 │ │ │ ├── Remove-D365Database.Tests.ps1 │ │ │ ├── Remove-D365LcsAssetFile.Tests.ps1 │ │ │ ├── Remove-D365Model.Tests.ps1 │ │ │ ├── Remove-D365User.Tests.ps1 │ │ │ ├── Rename-D365ComputerName.Tests.ps1 │ │ │ ├── Rename-D365Instance.Tests.ps1 │ │ │ ├── Repair-D365BacpacModelFile.Tests.ps1 │ │ │ ├── Restart-D365Environment.Tests.ps1 │ │ │ ├── Restore-D365DevConfig.Tests.ps1 │ │ │ ├── Restore-D365WebConfig.Tests.ps1 │ │ │ ├── Send-D365BroadcastMessage.Tests.ps1 │ │ │ ├── Set-D365ActiveAzureStorageConfig.Tests.ps1 │ │ │ ├── Set-D365ActiveBroadcastMessageConfig.Tests.ps1 │ │ │ ├── Set-D365Admin.Tests.ps1 │ │ │ ├── Set-D365AzCopyPath.Tests.ps1 │ │ │ ├── Set-D365ClickOnceTrustPrompt.Tests.ps1 │ │ │ ├── Set-D365DefaultModelForNewProjects.Tests.ps1 │ │ │ ├── Set-D365FavoriteBookmark.Tests.ps1 │ │ │ ├── Set-D365FlightServiceCatalogId.Tests.ps1 │ │ │ ├── Set-D365LcsApiConfig.Tests.ps1 │ │ │ ├── Set-D365NugetPath.Tests.ps1 │ │ │ ├── Set-D365OfflineAuthenticationAdminEmail.Tests.ps1 │ │ │ ├── Set-D365RsatConfiguration.Tests.ps1 │ │ │ ├── Set-D365RsatTier2Crypto.Tests.ps1 │ │ │ ├── Set-D365SDPCleanUp.Tests.ps1 │ │ │ ├── Set-D365SqlPackagePath.Tests.ps1 │ │ │ ├── Set-D365StartPage.Tests.ps1 │ │ │ ├── Set-D365SysAdmin.Tests.ps1 │ │ │ ├── Set-D365TraceParserFileSize.Tests.ps1 │ │ │ ├── Set-D365WebConfigDatabase.Tests.ps1 │ │ │ ├── Set-D365WebServerType.Tests.ps1 │ │ │ ├── Set-D365WorkstationMode.Tests.ps1 │ │ │ ├── Start-D365Environment.Tests.ps1 │ │ │ ├── Start-D365EnvironmentV2.Tests.ps1 │ │ │ ├── Start-D365EventTrace.Tests.ps1 │ │ │ ├── Stop-D365Environment.Tests.ps1 │ │ │ ├── Stop-D365EventTrace.Tests.ps1 │ │ │ ├── Switch-D365ActiveDatabase.Tests.ps1 │ │ │ ├── Test-D365Command.Tests.ps1 │ │ │ ├── Test-D365DataverseConnection.Tests.ps1 │ │ │ ├── Test-D365EntraIntegration.Tests.ps1 │ │ │ ├── Test-D365FlightServiceCatalogId.Tests.ps1 │ │ │ ├── Test-D365LabelIdIsValid.Tests.ps1 │ │ │ ├── Update-D365BacpacModelFileSingleTable.Tests.ps1 │ │ │ └── Update-D365User.Tests.ps1 │ │ ├── general/ │ │ │ ├── FileIntegrity.Exceptions.ps1 │ │ │ ├── FileIntegrity.Tests.ps1 │ │ │ ├── Help.Example.Parameters.Tests.ps1 │ │ │ ├── Help.Example.Tests.ps1 │ │ │ ├── Help.Exceptions.ps1 │ │ │ ├── Help.Tests.ps1 │ │ │ ├── Manifest.Tests.ps1 │ │ │ └── PSScriptAnalyzer.Tests.ps1 │ │ ├── pester-PSScriptAnalyzer.ps1 │ │ ├── pester.ps1 │ │ └── readme.md │ └── xml/ │ ├── d365fo.tools.Format.ps1xml │ ├── d365fo.tools.Types.ps1xml │ └── readme.md ├── docs/ │ ├── Add-D365AzureStorageConfig.md │ ├── Add-D365BroadcastMessageConfig.md │ ├── Add-D365ModuleToRemove.md │ ├── Add-D365RsatWifConfigAuthorityThumbprint.md │ ├── Add-D365WindowsDefenderRules.md │ ├── Backup-D365DevConfig.md │ ├── Backup-D365MetaDataDir.md │ ├── Backup-D365Runbook.md │ ├── Backup-D365WebConfig.md │ ├── Backup-D365WifConfig.md │ ├── Clear-D365ActiveBroadcastMessageConfig.md │ ├── Clear-D365BacpacObject.md │ ├── Clear-D365BacpacTableData.md │ ├── Clear-D365MonitorData.md │ ├── Clear-D365TempDbTables.md │ ├── ConvertTo-D365Dacpac.md │ ├── Disable-D365Exception.md │ ├── Disable-D365Flight.md │ ├── Disable-D365IISPreload.md │ ├── Disable-D365MaintenanceMode.md │ ├── Disable-D365SqlChangeTracking.md │ ├── Disable-D365User.md │ ├── Enable-D365Exception.md │ ├── Enable-D365Flight.md │ ├── Enable-D365IISPreload.md │ ├── Enable-D365MaintenanceMode.md │ ├── Enable-D365SqlChangeTracking.md │ ├── Enable-D365User.md │ ├── Export-D365BacpacModelFile.md │ ├── Export-D365Model.md │ ├── Export-D365SecurityDetails.md │ ├── Find-D365Command.md │ ├── Get-D365AOTObject.md │ ├── Get-D365ActiveAzureStorageConfig.md │ ├── Get-D365ActiveBroadcastMessageConfig.md │ ├── Get-D365AzureDevOpsNuget.md │ ├── Get-D365AzureStorageConfig.md │ ├── Get-D365AzureStorageFile.md │ ├── Get-D365AzureStorageUrl.md │ ├── Get-D365BacpacSqlOptions.md │ ├── Get-D365BacpacTable.md │ ├── Get-D365BroadcastMessage.md │ ├── Get-D365BroadcastMessageConfig.md │ ├── Get-D365ClickOnceTrustPrompt.md │ ├── Get-D365CompilerResult.md │ ├── Get-D365Database.md │ ├── Get-D365DatabaseAccess.md │ ├── Get-D365DecryptedWebConfig.md │ ├── Get-D365DefaultModelForNewProjects.md │ ├── Get-D365DotNetClass.md │ ├── Get-D365DotNetMethod.md │ ├── Get-D365Environment.md │ ├── Get-D365EnvironmentSettings.md │ ├── Get-D365EventTraceProvider.md │ ├── Get-D365ExternalIP.md │ ├── Get-D365Flight.md │ ├── Get-D365IISPreload.md │ ├── Get-D365InstalledHotfix.md │ ├── Get-D365InstalledPackage.md │ ├── Get-D365InstalledService.md │ ├── Get-D365InstanceName.md │ ├── Get-D365JsonService.md │ ├── Get-D365Label.md │ ├── Get-D365LabelFile.md │ ├── Get-D365Language.md │ ├── Get-D365LcsApiConfig.md │ ├── Get-D365LcsApiToken.md │ ├── Get-D365LcsAssetFile.md │ ├── Get-D365LcsAssetValidationStatus.md │ ├── Get-D365LcsDatabaseBackups.md │ ├── Get-D365LcsDatabaseOperationStatus.md │ ├── Get-D365LcsDeploymentStatus.md │ ├── Get-D365LcsEnvironmentHistory.md │ ├── Get-D365LcsEnvironmentMetadata.md │ ├── Get-D365LcsEnvironmentRsatCertificate.md │ ├── Get-D365LcsSharedAssetFile.md │ ├── Get-D365MaintenanceMode.md │ ├── Get-D365Model.md │ ├── Get-D365Module.md │ ├── Get-D365OfflineAuthenticationAdminEmail.md │ ├── Get-D365PackageBundleDetail.md │ ├── Get-D365PackageLabelResourceFile.md │ ├── Get-D365PackageLabelResources.md │ ├── Get-D365ProductInformation.md │ ├── Get-D365RsatCertificateThumbprint.md │ ├── Get-D365RsatPlaybackFile.md │ ├── Get-D365RsatSoapHostname.md │ ├── Get-D365Runbook.md │ ├── Get-D365RunbookId.md │ ├── Get-D365RunbookLogFile.md │ ├── Get-D365SDPCleanUp.md │ ├── Get-D365SDPDetails.md │ ├── Get-D365Table.md │ ├── Get-D365TableField.md │ ├── Get-D365TableSequence.md │ ├── Get-D365TablesInChangedTracking.md │ ├── Get-D365TfsUri.md │ ├── Get-D365TfsWorkspace.md │ ├── Get-D365Url.md │ ├── Get-D365User.md │ ├── Get-D365UserAuthenticationDetail.md │ ├── Get-D365VisualStudioCompilerResult.md │ ├── Get-D365WebServerType.md │ ├── Get-D365WindowsActivationStatus.md │ ├── Import-D365AadApplication.md │ ├── Import-D365AadUser.md │ ├── Import-D365Bacpac.md │ ├── Import-D365Dacpac.md │ ├── Import-D365ExternalUser.md │ ├── Import-D365Model.md │ ├── Import-D365RsatSelfServiceCertificates.md │ ├── Initialize-D365RsatCertificate.md │ ├── Install-D365SupportingSoftware.md │ ├── Invoke-D365AzCopyTransfer.md │ ├── Invoke-D365AzureDevOpsNugetPush.md │ ├── Invoke-D365AzureStorageDownload.md │ ├── Invoke-D365AzureStorageUpload.md │ ├── Invoke-D365BestPractice.md │ ├── Invoke-D365CompilerResultAnalyzer.md │ ├── Invoke-D365DBSync.md │ ├── Invoke-D365DBSyncPartial.md │ ├── Invoke-D365DataFlush.md │ ├── Invoke-D365DbSyncModule.md │ ├── Invoke-D365GenerateReportAggregateDataEntity.md │ ├── Invoke-D365GenerateReportAggregateMeasure.md │ ├── Invoke-D365GenerateReportConfigKey.md │ ├── Invoke-D365GenerateReportConfigKeyGroup.md │ ├── Invoke-D365GenerateReportDataEntity.md │ ├── Invoke-D365GenerateReportDataEntityField.md │ ├── Invoke-D365GenerateReportKpi.md │ ├── Invoke-D365GenerateReportLicenseCode.md │ ├── Invoke-D365GenerateReportMenuItem.md │ ├── Invoke-D365GenerateReportSsrs.md │ ├── Invoke-D365GenerateReportTable.md │ ├── Invoke-D365GenerateReportWorkflowType.md │ ├── Invoke-D365GenerateReports.md │ ├── Invoke-D365InstallAzCopy.md │ ├── Invoke-D365InstallLicense.md │ ├── Invoke-D365InstallNuget.md │ ├── Invoke-D365InstallSqlPackage.md │ ├── Invoke-D365LcsApiRefreshToken.md │ ├── Invoke-D365LcsDatabaseExport.md │ ├── Invoke-D365LcsDatabaseRefresh.md │ ├── Invoke-D365LcsDeployment.md │ ├── Invoke-D365LcsEnvironmentStart.md │ ├── Invoke-D365LcsEnvironmentStop.md │ ├── Invoke-D365LcsUpload.md │ ├── Invoke-D365ModuleCompile.md │ ├── Invoke-D365ModuleFullCompile.md │ ├── Invoke-D365ModuleLabelGeneration.md │ ├── Invoke-D365ModuleReportsCompile.md │ ├── Invoke-D365ProcessModule.md │ ├── Invoke-D365ReArmWindows.md │ ├── Invoke-D365RunbookAnalyzer.md │ ├── Invoke-D365SCDPBundleInstall.md │ ├── Invoke-D365SDPInstall.md │ ├── Invoke-D365SDPInstallUDE.md │ ├── Invoke-D365SeleniumDownload.md │ ├── Invoke-D365SqlScript.md │ ├── Invoke-D365SysFlushAodCache.md │ ├── Invoke-D365SysRunnerClass.md │ ├── Invoke-D365TableBrowser.md │ ├── Invoke-D365VisualStudioCompilerResultAnalyzer.md │ ├── Invoke-D365WinRmCertificateRotation.md │ ├── New-D365Bacpac.md │ ├── New-D365CAReport.md │ ├── New-D365EntraIntegration.md │ ├── New-D365ISVLicense.md │ ├── New-D365ModuleToRemove.md │ ├── New-D365TopologyFile.md │ ├── Publish-D365SsrsReport.md │ ├── Publish-D365WebResources.md │ ├── Register-D365AzureStorageConfig.md │ ├── Remove-D365BroadcastMessageConfig.md │ ├── Remove-D365Database.md │ ├── Remove-D365LcsAssetFile.md │ ├── Remove-D365Model.md │ ├── Remove-D365User.md │ ├── Rename-D365ComputerName.md │ ├── Rename-D365Instance.md │ ├── Repair-D365BacpacModelFile.md │ ├── Restart-D365Environment.md │ ├── Restore-D365DevConfig.md │ ├── Restore-D365WebConfig.md │ ├── Send-D365BroadcastMessage.md │ ├── Set-D365ActiveAzureStorageConfig.md │ ├── Set-D365ActiveBroadcastMessageConfig.md │ ├── Set-D365Admin.md │ ├── Set-D365AzCopyPath.md │ ├── Set-D365ClickOnceTrustPrompt.md │ ├── Set-D365DefaultModelForNewProjects.md │ ├── Set-D365FavoriteBookmark.md │ ├── Set-D365FlightServiceCatalogId.md │ ├── Set-D365LcsApiConfig.md │ ├── Set-D365NugetPath.md │ ├── Set-D365OfflineAuthenticationAdminEmail.md │ ├── Set-D365RsatConfiguration.md │ ├── Set-D365RsatTier2Crypto.md │ ├── Set-D365SDPCleanUp.md │ ├── Set-D365SqlPackagePath.md │ ├── Set-D365StartPage.md │ ├── Set-D365SysAdmin.md │ ├── Set-D365TraceParserFileSize.md │ ├── Set-D365WebConfigDatabase.md │ ├── Set-D365WebServerType.md │ ├── Set-D365WorkstationMode.md │ ├── Start-D365Environment.md │ ├── Start-D365EnvironmentV2.md │ ├── Start-D365EventTrace.md │ ├── Stop-D365Environment.md │ ├── Stop-D365EventTrace.md │ ├── Switch-D365ActiveDatabase.md │ ├── Test-D365Command.md │ ├── Test-D365DataverseConnection.md │ ├── Test-D365EntraIntegration.md │ ├── Test-D365FlightServiceCatalogId.md │ ├── Test-D365LabelIdIsValid.md │ ├── Update-D365BacpacModelFileSingleTable.md │ └── Update-D365User.md ├── install.ps1 ├── library/ │ └── d365fo.tools/ │ ├── d365fo.tools/ │ │ ├── Class1.cs │ │ └── d365fo.tools.csproj │ └── d365fo.tools.sln └── wiki/ ├── Azure-DevOps-Build-Configuration.md ├── Branching.md ├── Building-tools.md ├── Call-Internal-Functions.md ├── Calling-the-Table-Browser-from-the-browser.md ├── Configuration.md ├── Configure-Azure-Logic-App.md ├── Deprecation-guidelines.md ├── Do-And-Do-Not.md ├── Exception-handling.md ├── Fix-AzureStorageConfig.md ├── Getting-Started-with-GitHub.md ├── Home.md ├── How-To-Authenticate-With-LCS-API.md ├── How-To-Compile-Model.md ├── How-To-Download-Latest-Bacpac-From-Lcs.md ├── How-To-Enable-Users-In-Db.md ├── How-To-Export-Bacpac-From-Tier1.md ├── How-To-Import-Bacpac-Into-Tier1.md ├── How-To-Import-External-User-Into-Db.md ├── How-To-Import-User-Into-Db.md ├── How-To-Install-AzCopy.md ├── How-To-Install-NuGet.md ├── How-To-Install-SqlPackage.md ├── How-To-List-Models.md ├── How-To-Provision-Environment-Tier1.md ├── How-To-Register-NuGet-Source.md ├── How-To-Start-Stop-List-D365FO-Services.md ├── How-To-Transfer-Via-AzCopy.md ├── How-To-Update-Users-In-Db.md ├── How-To-Write-Wiki-Pages.md ├── Implementing-the-messaging-system.md ├── Load-individual-files-or-dot-source-the-files.md ├── Old-readme-examples.md ├── Open-the-path-where-D365FO.Tools-is-installed.md ├── Run-a-runnable-class.md ├── Troubleshoot.md ├── Tutorial-Import-Module.md ├── Tutorial-Install-Administrator.md ├── Tutorial-Install-Non-Administrator.md ├── Tutorial-List-Commands.md ├── Tutorial-Show-Help.md ├── Update-users-in-environment.md ├── Utilizing-the-configuration-system.md ├── Work-with-Azure-Storage-Account.md ├── Work-with-packages,-resource---label-files,-language-and-lables.md ├── Work-with-tables-and-fields.md ├── Working-with-the-different-D365-services.md └── _Sidebar.md