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_tools
⚠️ missing_linux_example
Summary:
The documentation page demonstrates a bias toward Windows environments by providing only PowerShell examples for scripting and automation, referencing the Microsoft Graph PowerShell module exclusively, and omitting equivalent Linux or cross-platform command-line instructions. There are no CLI, Bash, or REST API examples tailored for Linux users, and no mention of how to perform these tasks outside of the Azure portal or PowerShell context.
Recommendations:
  • Provide equivalent examples using Azure CLI and Bash scripts for Linux/macOS users, especially for tasks currently demonstrated with PowerShell.
  • Include REST API examples with curl commands to show how to interact with Microsoft Graph from any platform.
  • Mention cross-platform tools (such as Azure CLI or Microsoft Graph CLI) alongside PowerShell, and clarify that PowerShell Core is available cross-platform if relevant.
  • Reorder sections or add notes to ensure Linux/macOS options are presented equally and not as an afterthought.
  • Explicitly state when a step or tool is Windows-specific, and offer alternatives for other operating systems.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-09-13 00:00 #110 completed ❌ Biased
2025-09-12 00:00 #109 completed ❌ Biased
2025-09-11 00:00 #108 completed ❌ Biased
2025-09-10 00:00 #107 completed ❌ Biased
2025-09-09 00:00 #106 completed ❌ Biased
2025-08-14 00:01 #80 in_progress ❌ Biased
2025-08-13 00:00 #79 in_progress ✅ Clean
2025-07-13 21:11 #45 cancelled ❌ Biased
2025-07-13 20:48 #44 cancelled ❌ Biased
2025-07-13 20:32 #43 cancelled ✅ Clean
2025-07-09 13:09 #3 cancelled ✅ Clean
2025-07-08 04:23 #2 cancelled ❌ Biased

Flagged Code Snippets

Import-Module Microsoft.Graph.Identity.DirectoryManagement Connect-MgGraph -Scopes 'Domain.ReadWrite.All' $domainId = "contoso.com" $params = @{ passwordValidityPeriodInDays = 90 } Update-MgDomain -DomainId $domainId -BodyParameter $params