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 page demonstrates a Windows bias by providing detailed PowerShell examples for moving Recovery Services vaults, mentioning PowerShell before CLI, and referencing Windows-specific update instructions before Linux equivalents. There are no Linux shell or Bash examples, and Linux guidance is limited to generic statements (e.g., 'refer to distributor guidance').
Recommendations:
  • Provide equivalent Bash or shell script examples for moving Recovery Services vaults using the Azure CLI, especially for common Linux environments.
  • Present CLI examples before or alongside PowerShell examples to avoid the impression that Windows tooling is primary.
  • Expand Linux-specific operational guidance (e.g., how to update certificates and CRLs on popular distributions) rather than deferring to distributor documentation.
  • Ensure that all instructions and screenshots are platform-agnostic or include both Windows and Linux perspectives where relevant.
  • Where tools/scripts are referenced, clarify their cross-platform compatibility or provide alternatives 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

$destinationRG = "<destinationResourceGroupName>" $vault = Get-AzureRmRecoveryServicesVault -Name <vaultname> -ResourceGroupName <vaultRGname> Move-AzureRmResource -DestinationResourceGroupName $destinationRG -ResourceId $vault.ID
Move-AzureRmResource -DestinationSubscriptionId "<destinationSubscriptionID>" -DestinationResourceGroupName $destinationRG -ResourceId $vault.ID