Pattern: Use of global alias
Issue: -
Globally scoped aliases override existing aliases within the sessions with matching names. This name collision can cause difficult to debug issues for consumers of modules and scripts.
To understand more about scoping, see Get-Help about_Scopes
.
Use other scope modifiers for new aliases.
Example of incorrect code:
New-Alias -Name Name -Value Value -Scope "Global"
Example of correct code:
New-Alias -Name Name1 -Value Value