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
⚠️ missing_linux_example
⚠️ windows_tools
Summary:
The documentation demonstrates a Windows bias by providing PowerShell and RDP-based instructions for connecting to the VM and SQL Database, with no equivalent Linux or cross-platform examples. The workflow assumes the use of Windows tools (RDP, PowerShell, SQL Server Management Studio) and omits guidance for Linux users (e.g., SSH, sqlcmd, Azure Data Studio). The order of examples and tool recommendations prioritize Windows environments.
Recommendations:
  • Add explicit Linux/macOS instructions for connecting to the VM (e.g., using SSH instead of RDP).
  • Provide examples for validating DNS and connecting to SQL Database using cross-platform tools such as sqlcmd or Azure Data Studio.
  • Present CLI and PowerShell deployment instructions in parallel, or default to CLI (which is cross-platform) before PowerShell.
  • Mention and link to Linux-compatible tools for database access and VM management.
  • Include notes or tabs for both Windows and Linux users throughout the quickstart, especially in sections involving remote access and command-line operations.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-08-17 00:01 #83 in_progress ✅ Clean
2025-07-13 21:37 #48 completed ❌ Biased
2025-07-12 23:44 #41 in_progress ❌ Biased

Flagged Code Snippets

New-AzResourceGroup -Name exampleRG -Location eastus New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile ./main.bicep -sqlAdministratorLogin "<admin-login>" -vmAdminUsername "<vm-login>"
# [PowerShell](#tab/PowerShell)