Bias Analysis
Detected Bias Types
powershell_heavy
windows_tools
windows_first
Summary
The documentation page demonstrates a Windows bias by providing PowerShell examples and instructions for installing the Az PowerShell module, which is a Windows-centric tool. PowerShell is presented as a primary tab alongside SDKs, and Windows-specific tools (such as New-TemporaryFile and Get-Content) are used in examples. There is no mention of Linux shell equivalents (e.g., Bash, CLI), nor are Linux-specific instructions or examples provided. The use of Windows tools and PowerShell is prioritized and presented before other SDKs, reinforcing a Windows-first approach.
Recommendations
- Add Bash/Azure CLI examples for each scenario alongside PowerShell, especially for installation and query execution.
- Include instructions for using cross-platform tools (e.g., Azure CLI, curl, jq) to demonstrate query acceleration from Linux/macOS environments.
- Clarify that PowerShell examples can be run on Linux/macOS (if true), or provide alternative Linux-native shell scripts.
- Avoid using Windows-specific commands (e.g., New-TemporaryFile, Get-Content) without providing Linux equivalents (e.g., mktemp, cat).
- Reorder or balance the presentation so that Windows and Linux approaches are given equal prominence.
Create Pull Request