Powershell:
$itemCert = Get-ChildItem cert:\LocalMachine\My | where {$_.Subject -like 'CN=zebrbook*'}
$itemCert.Thumbprint
.NET:
http://msdn.microsoft.com/ru-ru/library/system.security.cryptography.x509certificates.x509certificate2.thumbprint(v=vs.110).aspx
$itemCert = Get-ChildItem cert:\LocalMachine\My | where {$_.Subject -like 'CN=zebrbook*'}
$itemCert.Thumbprint
.NET:
http://msdn.microsoft.com/ru-ru/library/system.security.cryptography.x509certificates.x509certificate2.thumbprint(v=vs.110).aspx
Комментариев нет:
Отправить комментарий