PowerShell에서 일반 매개변수 전달

1969 단어 powershell
function foo
{
Write
-Host $args[0] $args[1]
}
foo
"This is parameter 1" "This is parameter 2"
function foo
{
Param($param1,$param2)
Write
-Host $param1 $param2
}
foo
-param2 "This is parameter 2" -param1 "This is parameter 1"

좋은 웹페이지 즐겨찾기