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
Summary:
The documentation is heavily biased towards Windows by exclusively using PowerShell cmdlets for all configuration, management, and viewing tasks. There are no examples or instructions for Linux users, such as Azure CLI or Bash equivalents. The only tooling mentioned is PowerShell, which is traditionally a Windows-centric tool, though it is now cross-platform. No Linux-native patterns or commands are provided.
Recommendations:
- Add equivalent Azure CLI (az) command examples for each PowerShell cmdlet shown, as Azure CLI is cross-platform and commonly used on Linux.
- Include a section or callout for Linux/macOS users, clarifying how to perform these tasks without PowerShell.
- Where possible, provide Bash script examples or references to REST API usage for advanced users.
- Reorganize the documentation to present both PowerShell and Azure CLI options side-by-side, or allow users to select their preferred platform at the top of the article.
- Explicitly state that PowerShell Core is available on Linux/macOS, if PowerShell must be used, and provide installation instructions for those platforms.
Create pull request
Flagged Code Snippets
Get-AzureDedicatedCircuit -ServiceKey "*********************************"
Set-AzureBGPPeering -AccessType Private -ServiceKey "*********************************" -PrimaryPeerSubnet "10.0.0.0/30" -SecondaryPeerSubnet "10.0.0.4/30" -PeerAsn 1234 -VlanId 500 -SharedKey "A1B2C3D4"
Remove-AzureBGPPeering -AccessType Private -ServiceKey "*********************************"
Set-AzureBGPPeering -AccessType Microsoft -ServiceKey "*********************************" -PrimaryPeerSubnet "131.107.0.0/30" -SecondaryPeerSubnet "131.107.0.4/30" -VlanId 300 -PeerAsn 1234 -CustomerAsn 2245 -AdvertisedPublicPrefixes "123.0.0.0/30" -RoutingRegistryName "ARIN" -SharedKey "A1B2C3D4"