certificate install
Hi
We have a couple of security certificates that need adding to a lot of
clients and we are contemplating many ways to do this. They are to be
imported into the:
Trusted Root Certification Authorities\Local Computer
and I'm wondering is there a silent batch file that can be tun to accomplish
what i want? i.e. something that could be put into the startup of some
clients?
Thank you for your time
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
SMal.tmcc
12 years ago
check these links
http://msdn.microsoft.com/en-us/library/e78byta0(v=vs.80).aspx
Comments:
-
thanks smal.tmcc problem with certmgr.exe i cant find it on windows 7 amd this certificate has to be install on the machine - brighstarcuit 12 years ago
-
i was able to create a batch file using certutil
@echo off
certutil -f -addstore “TrustedPublisher†C:\CRIFTEST.cer
exit
now if i remove the location of the cert file from the bach file zip the batch file with the cert file will i be able to run this batch through kace - brighstarcuit 12 years ago -
use certutil.exe then, certmgr.msc is used in windows 7 or you can download the exe with the win7 sdk
http://technet.microsoft.com/en-us/library/cc732443(v=ws.10).aspx - SMal.tmcc 12 years ago -
run a kscript and upload it as a dependancy and call it like this
certutil -f -addstore "TrustedPublisher" $(KACE_DEPENDENCY_DIR)\criftest.cer - SMal.tmcc 12 years ago-
this didn't work for me, followed exact. What am I doing wrong. Only thing I changed was "trustedPublisher" to "Root". Tried it locally and it worked...im lost - mazostyle 9 years ago