salt.modules.win_certutil module

This module allows you to install certificates into the windows certificate manager.

salt '*' certutil.add_store salt://cert.cer "TrustedPublisher"
salt.modules.win_certutil.add_store(source, store, saltenv='base')

Add the given cert into the given Certificate Store

source
The source certificate file this can be in the form salt://path/to/file
store
The certificate store to add the certificate to
saltenv
The salt environment to use this is ignored if the path is local

CLI Example:

salt '*' certutil.add_store salt://cert.cer TrustedPublisher
salt.modules.win_certutil.del_store(source, store, saltenv='base')

Delete the given cert into the given Certificate Store

source
The source certificate file this can be in the form salt://path/to/file
store
The certificate store to delete the certificate from
saltenv
The salt environment to use this is ignored if the path is local

CLI Example:

salt '*' certutil.del_store salt://cert.cer TrustedPublisher
salt.modules.win_certutil.get_cert_serial(cert_file)

Get the serial number of a certificate file

cert_file
The certificate file to find the serial for
salt.modules.win_certutil.get_stored_cert_serials(store)

Get all of the certificate serials in the specified store

store
The store to get all the certificate serials from

Docs for previous releases are available on readthedocs.org.

Latest Salt release: 2016.3.3

Previous topic

salt.modules.win_autoruns

Next topic

salt.modules.win_dacl