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
Summary:
The documentation provides command-line examples for retrieving the Azure Maps Client ID using PowerShell and Azure CLI, but the PowerShell example is presented first and in more detail. There is no explicit Linux/bash example for retrieving the Client ID, nor is there mention of Linux-specific tools or workflows. The use of PowerShell as the primary scripting example and the ordering of examples may suggest a Windows-centric bias.
Recommendations:
  • Provide bash or shell script examples for Linux/macOS users alongside PowerShell and Azure CLI examples.
  • Present Azure CLI examples before or alongside PowerShell examples, as Azure CLI is cross-platform and more commonly used in Linux environments.
  • Explicitly state that Azure CLI commands work on Windows, Linux, and macOS, and provide example outputs for each where relevant.
  • Where PowerShell is used, clarify that it is available cross-platform, or provide equivalent bash commands if functionality differs.
  • Review the documentation for other subtle Windows-first language or assumptions, and ensure parity in instructions and examples for Linux users.
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

> $ClientId = az maps account show --name {Azure-Maps_Account-Name} --resource-group {Resource-Group-Name} --subscription {SubscriptionId} --query properties.uniqueId >
> $maps = Get-AzMapsAccount -Name {Azure-Maps_Account-Name} -ResourceGroupName {Resource-Group-Name} -SubscriptionId {SubscriptionId} > $ClientId = $maps.UniqueId >