Alias Attribute Declaration
The Alias attribute allows the user to specify different names for a cmdlet or a cmdlet parameter. Aliases can be used to provide shortcuts for a parameter name, or they can provide different names that are appropriate for different scenarios.
Syntax
[Alias(aliasNames)]
Parameters
aliasNames
(String[])
Required. Specifies a set of comma-separated alias names for the cmdlet parameter.
Remarks
The Alias attribute is defined by the System.Management.Automation.Aliasattribute class.
Cmdlet aliases
- The Alias attribute is used with the cmdlet declaration. For more information about how to declare these attributes, see Cmdlet Aliases.
- Each parameter alias name must be unique. Windows PowerShell does not check for duplicate alias names.
Parameter aliases
- The Alias attribute is used with the Parameter attribute when you specify a cmdlet parameter. For more information about how to declare these attributes, see How to Declare Cmdlet Parameters.
- Each parameter alias name must be unique within a cmdlet. Windows PowerShell does not check for duplicate alias names.
- The Alias attribute is used once for each parameter in a cmdlet.
See Also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
PowerShell