This page contains Windows bias

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:
⚠️ powershell_heavy
⚠️ windows_first
⚠️ windows_tools
⚠️ missing_linux_example
Summary:
The documentation demonstrates a strong Windows bias throughout. All setup and configuration instructions assume a Windows environment, referencing Windows-specific tools (PowerShell, Local Security Policy, service accounts like NT SERVICE\DIAHostService), file paths (C:\ProgramData\SSISTelemetry), and drivers/installers that are only available for Windows. There are no examples or guidance for Linux environments, nor any mention of cross-platform alternatives or limitations. PowerShell is the only scripting example provided, and all troubleshooting/logging instructions use Windows paths and tools.
Recommendations:
  • Explicitly state if the self-hosted IR and SSIS proxy feature is only supported on Windows, or clarify any Linux support.
  • If Linux is supported, provide equivalent setup, configuration, and troubleshooting instructions for Linux environments, including command-line examples (e.g., Bash scripts), file paths, and service management.
  • If only Windows is supported, add a clear note at the top of the documentation to prevent confusion for Linux users.
  • Where possible, mention cross-platform alternatives or limitations (e.g., 'This feature is not available on Linux').
  • Include references to Linux-compatible tools or drivers if available, or provide guidance on running in a Linux environment (such as via containers or compatibility layers).
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-07-12 23:44 #41 in_progress ❌ Biased
2025-07-12 00:58 #8 cancelled ✅ Clean
2025-07-10 05:06 #7 processing ✅ Clean

Flagged Code Snippets

$ResourceGroupName = "[your Azure resource group name]" $DataFactoryName = "[your data factory name]" $AzureSSISName = "[your Azure-SSIS IR name]" # Self-hosted integration runtime info - This can be configured as a proxy for on-premises data access $DataProxyIntegrationRuntimeName = "" # OPTIONAL to configure a proxy for on-premises data access $DataProxyStagingLinkedServiceName = "" # OPTIONAL to configure a proxy for on-premises data access $DataProxyStagingPath = "" # OPTIONAL to configure a proxy for on-premises data access # Add self-hosted integration runtime parameters if you configure a proxy for on-premises data access if(![string]::IsNullOrEmpty($DataProxyIntegrationRuntimeName) -and ![string]::IsNullOrEmpty($DataProxyStagingLinkedServiceName)) { Set-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $ResourceGroupName ` -DataFactoryName $DataFactoryName ` -Name $AzureSSISName ` -DataProxyIntegrationRuntimeName $DataProxyIntegrationRuntimeName ` -DataProxyStagingLinkedServiceName $DataProxyStagingLinkedServiceName if(![string]::IsNullOrEmpty($DataProxyStagingPath)) { Set-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $ResourceGroupName ` -DataFactoryName $DataFactoryName ` -Name $AzureSSISName ` -DataProxyStagingPath $DataProxyStagingPath } } Start-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $ResourceGroupName ` -DataFactoryName $DataFactoryName ` -Name $AzureSSISName ` -Force