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_tools
⚠️
windows_first
⚠️
missing_linux_example
Summary:
The documentation demonstrates a Windows bias through the frequent use of PowerShell interfaces and commands, references to Windows-specific tools (e.g., robocopy, Explorer), and examples that use Windows paths or commands before (or instead of) Linux equivalents. There are missing Linux command examples in several workarounds, and in some cases, only Windows-centric instructions are provided.
Recommendations:
- For every PowerShell command or interface reference, provide equivalent Bash/shell commands for Linux clients.
- When suggesting tools like 'robocopy' or 'Explorer', also mention and provide examples for Linux tools such as 'rsync', 'cp', or file managers.
- In NFS mount examples, include both Windows (e.g., 'mount -o anon ...') and Linux (e.g., 'mount -t nfs -o nolock ...') command lines.
- For SQL connectivity, show both Windows (cmd/PowerShell) and Linux (bash) usage of 'sqlcmd'.
- Ensure that all device management and troubleshooting steps are documented for both Windows and Linux environments, or explicitly state if a feature is Windows-only.
- Review all code snippets and paths to ensure parity (e.g., avoid only showing 'C:\Users\...' and include '/home/user/...').
Create pull request