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
Summary:
The documentation page demonstrates a Windows bias in its code samples and tooling recommendations. The PowerShell section is presented first and references Windows-specific paths (e.g., C:\ADFv2QuickStartPSH\), and the installation instructions for Azure PowerShell explicitly reference 'Install Azure PowerShell on Windows with PowerShellGet'. There is no mention of Linux or macOS compatibility for PowerShell, nor are there any Bash or shell script examples. The CLI section is more cross-platform, but the overall emphasis and ordering favor Windows environments.
Recommendations:
- Explicitly state that Azure PowerShell is available on Linux and macOS, and provide installation instructions for those platforms.
- Use cross-platform file paths in examples (e.g., use relative paths or note both Windows and Linux/macOS path formats).
- Add Bash or shell script equivalents for the PowerShell examples, especially for common tasks like creating and managing JSON files.
- Consider presenting Azure CLI examples before PowerShell, as CLI is natively cross-platform.
- Wherever possible, clarify that both PowerShell and CLI commands can be run on any OS, and provide links to relevant cross-platform documentation.
Create pull request
Flagged Code Snippets
Get-AzDataFactoryV2Trigger -ResourceGroupName $ResourceGroupName -DataFactoryName $DataFactoryName -Name "MyTrigger"
Get-AzDataFactoryV2Trigger -ResourceGroupName $ResourceGroupName -DataFactoryName $DataFactoryName -Name "MyTrigger"
Set-AzDataFactoryV2Trigger -ResourceGroupName $ResourceGroupName -DataFactoryName $DataFactoryName -Name "MyTrigger" -DefinitionFile "C:\ADFv2QuickStartPSH\MyTrigger.json"
Start-AzDataFactoryV2Trigger -ResourceGroupName $ResourceGroupName -DataFactoryName $DataFactoryName -Name "MyTrigger"
Get-AzDataFactoryV2TriggerRun -ResourceGroupName $ResourceGroupName -DataFactoryName $DataFactoryName -TriggerName "MyTrigger" -TriggerRunStartedAfter "2017-12-08T00:00:00" -TriggerRunStartedBefore "2017-12-08T01:00:00"