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:
⚠️
windows_first
⚠️
powershell_heavy
Summary:
The documentation demonstrates a mild Windows bias by consistently presenting Windows/PowerShell instructions and examples before their Linux/Azure CLI counterparts. PowerShell is given prominence in command examples, and the structure often leads with Windows tools/scripts, even when Linux equivalents are provided.
Recommendations:
- Alternate the order of Windows/PowerShell and Linux/CLI examples to avoid always presenting Windows first.
- Where possible, present Azure CLI (cross-platform) examples before or alongside PowerShell to emphasize platform neutrality.
- Ensure parity in detail and clarity between Windows and Linux sections, including parameter explanations and example usage.
- Consider a unified tabbed interface for scripts and commands, so users can easily select their preferred platform without implicit prioritization.
Create pull request
Flagged Code Snippets
./disconnect.ps1 $ResourceGroupName $ElasticSanName $VolumeGroupName $VolumeName
Remove-AzElasticSanVolumeGroup -ResourceGroupName $resourceGroupName -ElasticSanName $sanName -Name $volumeGroupName
Remove-AzElasticSanVolume -ResourceGroupName $resourceGroupName -ElasticSanName $sanName -VolumeGroupName $volumeGroupName -Name $volumeName -ForceDelete false -DeleteSnapshot false
Remove-AzElasticSan -ResourceGroupName $resourceGroupName -Name $sanName