nickeeex / dotnet-certificate-tool

Command line tool to install and remove certificates from the current user's store.

Home Page:https://www.gsoft.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dotnet-certificate-tool

Command line tool to install and remove pfx certificates from the current user's store.

Mainly used to workaround the limitation of certificates installed in the current user's store in Unix hosts.

See following github issue for more information.

Usage

Available arguments:

  • --base64 (-b): base 64 encoded certificate value
  • --file (-f): path to the *.pfx certificate file
  • --password (-p): password for the *.pfx certificate (required)
  • --thumbprint (-t): certificate thumbprint (required)
  • --store-name (-s): certificate store name (defaults to My). See possible values here

With a base 64 string

Assuming you have the following environment variables setup:

  • $base64: base 64 encoded certificate value
  • $password: pfx certificate password
  • $thumbprint: certificate's thumbprint

dotnet ShareGate.CertificateTool.dll add --base64 $base64 --password $password --thumbprint $thumbprint --store-name My

dotnet ShareGate.CertificateTool.dll remove --base64 $base64 --password $password --thumbprint $thumbprint --store-name My

With a pfx file

Assuming you have the following environment variables setup:

  • $password: pfx certificate password
  • $thumbprint: certificate's thumbprint

dotnet ShareGate.CertificateTool.dll add -f ./cert.pfx --password $password --thumbprint $thumbprint --store-name Root

dotnet ShareGate.CertificateTool.dll remove -f ./cert.pfx --password $password --thumbprint $thumbprint --store-name Root

License

Copyright © 2019, GSoft inc. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.

About

Command line tool to install and remove certificates from the current user's store.

https://www.gsoft.com/

License:Apache License 2.0


Languages

Language:C# 100.0%