About This Page
This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.
Bias Analysis
Bias Types:
⚠️
windows_tools
⚠️
windows_first
Summary:
The documentation page demonstrates a Windows bias primarily by referencing Windows-specific tooling (Dynamics XRM tooling for Windows client applications) and omitting any mention of Linux or cross-platform alternatives. There are no PowerShell or CMD examples, but the only referenced SDK/tooling is Windows-centric. No Linux-specific instructions, tools, or parity notes are provided, and the documentation does not clarify cross-platform support or limitations.
Recommendations:
- Explicitly state whether the Dynamics XRM tooling and connector are supported on Linux or cross-platform environments, or provide alternatives if available.
- If there are Linux-compatible SDKs, CLIs, or APIs for interacting with Dynamics 365/Dataverse, include references and examples.
- Add a section or note clarifying any platform dependencies or limitations, especially for users deploying self-hosted integration runtimes or custom connectors on Linux.
- If only Windows is supported for certain features, clearly document this and suggest workarounds or roadmap for Linux support.
- Where possible, provide parity in examples and tooling references for both Windows and Linux environments.
Create pull request
Flagged Code Snippets
{
"name": "DynamicsLinkedService",
"properties": {
"type": "Dynamics",
"description": "Dynamics on-premises with IFD linked service using IFD authentication",
"typeProperties": {
"deploymentType": "OnPremisesWithIFD",
"hostName": "contosodynamicsserver.contoso.com",
"port": 443,
"organizationName": "admsDynamicsTest",
"authenticationType": "ActiveDirectoryAuthentication",
"domain": "< Active Directory domain >",
"username": "test@contoso.onmicrosoft.com",
"password": {
"type": "SecureString",
"value": "<password>"
}
},
"connectVia": {
"referenceName": "<name of Integration Runtime>",
"type": "IntegrationRuntimeReference"
}
}
}