https://github.com/tg123/certtools
the missing cert management tools for windows nano
https://github.com/tg123/certtools
certificate windows-nano
Last synced: 6 months ago
JSON representation
the missing cert management tools for windows nano
- Host: GitHub
- URL: https://github.com/tg123/certtools
- Owner: tg123
- License: mit
- Created: 2021-02-24T23:33:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-23T10:10:06.000Z (over 3 years ago)
- Last Synced: 2025-02-01T13:25:23.891Z (8 months ago)
- Topics: certificate, windows-nano
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# certtools
`certtools` is created to manage certificates store in Windows Nano Containers. Where `certutil.exe` and `powershell Import-PfxCertificate` are not available.
# Commands
## Import
```
certtools.exe import [command options]
--file value, -f value path to pfx
--password value, -p value password to pfx
```the first arg and -f are identical
Example:
```
C:\>certtools.exe import test.pfx
```## List
Example:
```
C:\>certtools.exe ls
a17aa4e9afc16f8cc15864703aa8186e58daddbe test
```## Remove
```
certtools.exe rm [command options]
--thumbprint value, -t value thumbprint of the certificate to be deleted
```the first arg and -t are identical
Example:
```
C:\>certtools.exe rm a17aa4e9afc16f8cc15864703aa8186e58daddbe
```