certutil -backupkey -config -p p@$$w0rd1 C:\
Error:
402.203.0: 0x80070057 (WIN32: 87): ..CertCli Version
Expected no more than 1 args, received 2
CertUtil: Too many arguments
Does anyone know how to do this?
certutil -p p@$$w0rd1 -backupkey c:\cabackup?
Martin
if you want to do this on a remote ca (-config option) you can use something
like this:
certutil -p p@$$w0rd1 -config CAMACHINENAME\CANAME -backupkey c:\cabackup e.g.
certutil -p p@$$w0rd1 -config "casrv01\Test Root CA" -backupkey c:\cabackup
HTH
Martin Rublik
Martin -
Thanks for the tips. I'm not doing it on a remote CA server.
I tried the tip in your first post and I got this error:
C:\> certutil -p password -backupkey C:\Backup
402.203.0: 0x80070057 (WIN32: 87): ..CertCli Version
417.329.0: 0x80070103 (WIN32: 259)
417.596.0: 0x80070103 (WIN32: 259)
410.2618.0: 0x80070002 (WIN32: 2)
410.2633.0: 0x80070103 (WIN32: 259)
CertUtil: No local Certification Authority; use -config option
301.2585.0: 0x80070103 (WIN32: 259)
301.2824.0: 0x80070103 (WIN32: 259)
CertUtil: No more data is available.
301.3128.0: 0x80070103 (WIN32: 259)
Just in case anyone has this same problem in the future, here is the
resolution:
certutil -f -p password1 -user -exportPFX 123456789010a0d0e0a0123 c:
\backup\encryptionCert.pfx
Martin