IT이야기/OS
인증서를 가져오기 명령 (certutil)
주현ㅇHㅂI
2016. 7. 12. 13:42
728x90
인증서를 신뢰할 수 있는 루트 인증 기관에 추가
certutil -addstore "Root" "인증서 경로"
사용 예) certutil -addstore "Root" "D:\TestCertificate.cer"
인증서를 개인용에 추가
certutil -addstore "My" "인증서 경로"
사용 예) certutil -addstore "My" "D:\TestCertificate.cer"
인증서를 중간 인증 기관에 저장
certutil -addstore "CA" "인증서 경로"
사용 예) certutil -addstore "CA" "D:\TestCertificate.cer"
참고 URL
Certutil - https://technet.microsoft.com/en-us/library/cc732443(v=ws.11).aspx
Import Certificate to Trusted Root but not to Personal [Command Line] -http://stackoverflow.com/questions/23869177/import-certificate-to-trusted-root-but-not-to-personal-command-line
Fyi...
컴퓨터 인증서 MMC 실행 명령
Certificate Local Machine
-> certlm.msc
사용자 인증서 MMC 실행 명령
Certificate Manager
-> certmgr.msc
728x90