PowerShell 스크립트에서 특정 기능을 "비공개"로 만들 수 있는 방법이 있습니까? 셸이 시작되면 테스트할 때 사용하는 몇 가지 기능이 있는 외부 스크립트를 로드합니다.다음과 같은 경우: # Include Service Test Tools $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition . $scriptPath\SvcTest.ps1 인SvcTest.ps1, 저에게는 두 가지 기능이 있습니다. function isURI ([string] $address) { ($address -as [System.URI]).AbsoluteURI -ne $null } 뿐만 아니라: function Test-Service ([string] $url..