Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

open certmgr.msc from commanf line on localMachine

I need to start "certmgr.msc" from "cmd.exe" on "localMachine" repository so that I can import\export certificates. I have tried the following commands but the "certmgr.msc" keeps opening on "currentUser".

certmgr.msc -s -r localMachine root
mmc.exe certmgr.msc -s -r localMachine root
certmgr.msc -v -s -r localMachine my
like image 287
user4464366 Avatar asked Feb 16 '15 14:02

user4464366


People also ask

Where is Certmgr EXE located?

A 32-bit version of the CertMgr tool is located in the bin\i386 folder of the WDK. A 64-bit version of the tool is located in the bin\amd64 and bin\ia64 folders of the WDK.

How do I open a Certlm file in Windows 7?

Click on the Start menu and click Run. Type in "C:\WINDOWS\SYSTEM32\MMC. EXE" "C:\WINDOWS\SYSTEM32\CERTLM. MSC"and click OK.

How do I download certificate from Certmgr?

Using the Windows Certificate Manager (certmgr. To export a certificate without a private key, click on the certificate in the MMC, click on the All Tasks menu and then on Export.


1 Answers

This should do it

"C:\WINDOWS\SYSTEM32\MMC.EXE" "C:\WINDOWS\SYSTEM32\CERTLM.MSC" 
like image 92
pepo Avatar answered Oct 27 '22 04:10

pepo