파일에서 Authenticode 서명 정보를 가져옵니다.

구문

Get-AuthenticodeSignature [-FilePath] <string[]> [<CommonParameters>]

설명

Get-AuthenticodeSignature cmdlet은 파일에서 Authenticode 서명 정보를 가져옵니다. 파일이 서명되지 않은 경우 정보는 검색되지만 필드가 비어 있게 됩니다.

매개 변수

-FilePath <string[]>

검사할 파일 경로를 지정합니다. 와일드카드를 사용할 수 있지만 단일 파일로 연결되어야 합니다. 매개 변수 이름("FilePath")은 선택 사항입니다.

필수 여부

true

위치

1

기본값

파이프라인 입력 적용 여부

true (ByValue, ByPropertyName)

와일드카드 문자 적용 여부

false

<CommonParameters>

이 cmdlet은 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, -OutVariable 등의 일반 매개 변수를 지원합니다. 자세한 내용은 about_Commonparameters.

입력 및 출력

입력 유형은 cmdlet으로 파이프할 수 있는 개체의 유형입니다. 반환 유형은 cmdlet에서 반환되는 개체의 유형입니다.

입력

System.String

파일 경로가 포함된 문자열을 Get-AuthenticodeSignature로 파이프할 수 있습니다.

출력

System.Management.Automation.Signature

Get-AuthenticodeSignature는 가져오는 각 서명에 대한 서명 개체를 반환합니다.

참고

Windows PowerShell의 Authenticode 서명에 대한 자세한 내용은 about_Signing을 참조하십시오.

예 1

C:\PS>get-AuthenticodeSignature -filepath C:\Test\NewScript.ps1

설명
-----------
이 명령은 NewScript.ps1 파일에서 Authenticode 서명 정보를 가져옵니다. FilePath 매개 변수를 사용하여 파일을 지정합니다.






예 2

C:\PS>get-authenticodesignature test.ps1, test1.ps1, sign-file.ps1, makexml.ps1

설명
-----------
이 명령은 명령줄에 나열된 네 개의 파일에서 Authenticode 서명 정보를 가져옵니다. 이 명령에는 선택 사항인 FilePath 매개 변수의 이름이 생략되어 있습니다.






예 3

C:\PS>get-childitem $pshome\*.* | foreach-object {Get-AuthenticodeSignature $_} | where {$_.status -eq "Valid"}

설명
-----------
이 명령은 $pshome 디렉터리에서 유효한 Authenticode 서명을 포함하는 모든 파일을 나열합니다. $pshome 자동 변수는 Windows PowerShell 설치 디렉터리의 경로를 포함합니다.

이 명령은 Get-ChildItem cmdlet을 사용하여 $pshome 디렉터리의 파일을 가져옵니다. 디렉터리를 제외할 때는 *.* 패턴이 사용됩니다. 파일 이름에 점이 없는 파일도 제외됩니다.

이 명령은 파이프라인 연산자(|)를 사용하여 $pshome의 파일을 Foreach-Object cmdlet으로 보냅니다. 이 cmdlet에서 각 파일에 대해 Get-AuthenticodeSignature가 호출됩니다. 

Get-AuthenticodeSignature 명령을 실행한 결과는 상태가 "Valid"인 서명 개체만 선택하는 Where-Object 명령으로 전송됩니다.






참고 항목




목차