Sad Tux - Windows bias detected
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

Detected Bias Types
windows_first
windows_tools
missing_linux_example
powershell_heavy
Summary
The documentation demonstrates a Windows bias by exclusively referencing Windows authentication, Windows-style usernames (domain\username), and Windows-specific tools and configuration steps (such as SQL Server Management Studio, SQL Server Configuration Manager, and Windows Firewall). Troubleshooting and setup instructions are written only for Windows environments, with no mention of Linux equivalents or cross-platform alternatives. There are no examples or guidance for Linux users, nor any references to Linux-compatible tools or authentication methods.
Recommendations
  • Include instructions and examples for connecting from Linux environments, such as using sqlcmd, Azure Data Studio, or other cross-platform tools.
  • Provide Linux-compatible authentication guidance (e.g., Kerberos, SQL authentication) and clarify any limitations or differences.
  • Add troubleshooting steps for Linux, such as configuring firewalls with iptables/firewalld, and enabling TCP/IP via configuration files or command-line tools.
  • Avoid assuming the use of Windows-only tools (like SQL Server Management Studio or Configuration Manager); mention cross-platform or browser-based alternatives where possible.
  • When showing username formats, clarify that domain\username is a Windows convention and provide Linux/Unix equivalents if applicable.
  • Explicitly state OS requirements or limitations for features that are only available on Windows, and suggest workarounds or alternatives for Linux users.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2026-01-21 00:00 #278 completed Biased Biased
2026-01-14 00:00 #250 in_progress Biased Biased
2026-01-13 00:00 #246 completed Biased Biased
2026-01-11 00:00 #240 completed Biased Biased
2026-01-10 00:00 #237 completed Biased Biased
2026-01-09 00:34 #234 completed Biased Biased
2026-01-08 00:53 #231 completed Biased Biased
2026-01-06 18:15 #225 cancelled Clean Clean
2025-09-08 00:00 #105 completed Clean Clean
2025-08-17 00:01 #83 cancelled Clean Clean
2025-07-13 21:37 #48 completed Biased Biased
2025-07-09 13:09 #3 cancelled Clean Clean
2025-07-08 04:23 #2 cancelled Biased Biased

Flagged Code Snippets

{
    "name": "AmazonSqlLinkedService",
    "properties": {
        "type": "AmazonRdsForSqlServer",
        "typeProperties": {
            "server": "<name or network address of the SQL server instance>",
            "database": "<database name>",
            "encrypt": "<encrypt>",
            "trustServerCertificate": false,
            "authenticationType": "Windows",
            "userName": "<domain\\username>",
            "password": {
                "type": "SecureString",
                "value": "<password>"
            }
        },
        "connectVia": {
            "referenceName": "<name of Integration Runtime>",
            "type": "IntegrationRuntimeReference"
        }
    }
}