■ New-SelfSignedCertificate 명령을 사용해 UWP 패키지 서명용 인증서를 만드는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 |
$subject = "CN=icodebroker" # 게시자명 $store = "Cert:\CurrentUser\My" # 인증서 저장 경로 New-SelfSignedCertificate ` -Type Custom ` -Subject $subject ` -KeyUsage DigitalSignature ` -FriendlyName "ICODEBROKER" ` # 인증서 표시명 -CertStoreLocation $store ` -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.3", "2.5.29.19={text}") |