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
⚠️
missing_linux_example
⚠️
windows_tools
Summary:
The documentation page demonstrates a Windows-first bias in several areas: Windows/Azure portal instructions and examples are consistently presented before Linux equivalents, and in some cases, Linux instructions are only available for certain plans or are less detailed. Some language stacks (e.g., Python) are explicitly unsupported on Windows, but the documentation still defaults to Windows tabs. There is also a lack of parity in example commands and guidance for Linux users, especially regarding portal-based updates and plan limitations.
Recommendations:
- Present Windows and Linux instructions side-by-side or in parallel tabs, rather than always leading with Windows.
- Ensure that all examples and step-by-step instructions are available for both Windows and Linux, including portal-based and CLI-based workflows.
- Clearly indicate plan limitations for both OSes at the start of relevant sections, not only in Linux-specific notes.
- Where a feature is unsupported on one OS (e.g., Python on Windows), default the documentation tab to the supported OS, or provide a clear redirect.
- Provide equivalent depth and detail for Linux workflows, including screenshots and portal navigation, where possible.
- Avoid assuming Windows as the default environment in language or structure; use neutral phrasing such as 'On Windows' and 'On Linux' equally.
Create pull request
Flagged Code Snippets
az functionapp list-runtimes --os "windows" --query "[?runtime == 'java'].{Version:version}" --output table
az functionapp config set --java-version "<VERSION>" --name "<APP_NAME>" --resource-group "<RESOURCE_GROUP>" --slot "staging"
az functionapp list-runtimes --os "windows" --query "[?runtime == 'dotnet-isolated'].{Version:version}" --output table
az functionapp list-runtimes --os "windows" --query "[?runtime == 'node'].{Version:version}" --output table
az functionapp config appsettings set --name "<APP_NAME>" --resource-group "<RESOURCE_GROUP>" --settings "WEBSITE_NODE_DEFAULT_VERSION=~<VERSION>" --slot "staging"
az functionapp list-runtimes --os "windows" --query "[?runtime == 'powershell'].{Version:version}" --output table
az functionapp config set --powershell-version "<VERSION>" --name "<APP_NAME>" --resource-group "<RESOURCE_GROUP>" --slot "staging"