매개 변수가 있는 PowerShell 별칭
Sheeraz Gul
2023년6월20일
이 자습서는 PowerShell에서 매개 변수를 사용하여 Alias
를 만드는 방법을 보여줍니다.
매개 변수가 있는 PowerShell 별칭
PowerShell Alias
는 Alias()
메서드를 사용하여 Alias
를 매개 변수와 함께 사용하는 매개 변수
에 대한 바로 가기 이름을 제공합니다.
예를 들어 매개변수 인증을 위해 Alias
를 원하는 경우 Auth
별칭을 사용할 수 있습니다. 마찬가지로 애플리케이션 ID 등에 AppID
를 사용할 수 있습니다.
매개변수와 함께 Alias
를 사용하여 예제를 만들어 봅시다.
function AliasDemo{
param(
[parameter(Mandatory=$true)]
[Alias("SN")]
[string]$ServerName
)
Write-Output "Our Server name is $ServerName"
}
위의 코드는 ServerName
매개 변수에 대한 별칭을 만듭니다. AliasDemo
함수를 호출하면 아래 출력이 표시됩니다.
cmdlet AliasDemo at command pipeline position 1
Supply values for the following parameters:
ServerName: DelftstackServer
Our Server name is DelftstackServer
작가: Sheeraz Gul
Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.
LinkedIn Facebook