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
powershell_heavy
missing_linux_example
windows_tools
windows_first
Summary
The documentation page exhibits a strong bias toward Windows and PowerShell usage. All command-line examples are provided exclusively using PowerShell, with no Azure CLI, Bash, or Linux-native instructions. The PowerShell approach is described in detail, including installation steps and module management, while Linux or cross-platform alternatives are not mentioned. The structure consistently presents the Azure Portal and PowerShell as the only options, omitting Azure CLI or Bash scripting, which are more common on Linux and macOS. This can hinder Linux users or those preferring cross-platform tools.
Recommendations
  • Add equivalent Azure CLI examples for all PowerShell commands, including listing, deleting, and migrating storage accounts.
  • Provide Bash shell snippets where appropriate, especially for users on Linux or macOS.
  • Mention Azure CLI as an equal alternative to PowerShell in all relevant sections, not just as a post-migration management tool.
  • Include installation and usage instructions for Azure CLI alongside PowerShell module instructions.
  • Reorder sections or provide tabs so that Azure CLI and PowerShell are presented with equal prominence.
  • Explicitly state that all steps can be performed on Linux, macOS, and Windows, and clarify any OS-specific requirements.
GitHub Create Pull Request

Scan History

Date Scan Status Result
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-08-19 00:01 #85 completed Clean Clean
2025-07-13 21:37 #48 completed Clean Clean
2025-07-12 23:44 #41 cancelled Biased Biased

Flagged Code Snippets

Get-AzResource -ResourceType Microsoft.ClassicStorage/storageAccounts
Install-Module -Name Azure -AllowClobber
Import-Module -Name Azure
Add-AzureAccount
Select-AzureSubscription -SubscriptionName <subscription-name>
$accountName = "<storage-account>"
Move-AzureStorageAccount -Validate -StorageAccountName $accountName
Move-AzureStorageAccount -Prepare -StorageAccountName $accountName
Move-AzureStorageAccount -Abort -StorageAccountName $accountName
Move-AzureStorageAccount -Commit -StorageAccountName $accountName