Sad Tux - Windows bias detected
This page contains Windows bias

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

Detected Bias Types
windows_first
missing_linux_example
windows_tools
Summary
The documentation page demonstrates a Windows bias by providing only Windows-specific instructions and examples. The execution command uses a Windows-style executable (mgCreate.exe) and PowerShell-style line continuations (`), with no mention of Linux or cross-platform alternatives. There are no Linux/macOS-specific instructions for running the .NET Core application, and the use of .exe implies a Windows environment. Additionally, the cleanup instructions reference deleting folders in a way that assumes Windows conventions.
Recommendations
  • Include Linux/macOS-specific instructions for running the .NET Core application (e.g., using 'dotnet mgCreate.dll' or './mgCreate' for self-contained deployments).
  • Provide examples using both Windows and Linux/macOS command-line syntax, including appropriate line continuations (e.g., '\' for bash).
  • Clarify that .NET Core is cross-platform and that the steps apply to all supported OSes, with any OS-specific differences clearly called out.
  • Update cleanup instructions to mention Linux/macOS folder deletion commands (e.g., 'rm -rf mgCreate').
  • Avoid using only .exe in examples; mention .dll or platform-appropriate executables for .NET Core apps.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2025-07-12 23:44 #41 cancelled Biased Biased
2025-07-12 00:58 #8 cancelled Clean Clean
2025-07-10 05:06 #7 processing Clean Clean

Flagged Code Snippets

   mgCreate.exe `
      "{tenantId}" `
      "{clientId}" `
      "{clientSecret}" `
      "{groupID}" `
      "{displayName}"