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
⚠️ 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 ID Status Bias Status
2025-08-19 00:01 #85 completed ✅ Clean
2025-07-13 21:37 #48 completed ✅ Clean
2025-07-12 23:44 #41 in_progress ❌ 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