Blog Post - Uninstall and install certificate using the batch file (certutill.exe)
This will extract the msi in %temp% folder.
Silent key will work for this key , but we need do manual touch in the exe installation. so better go with Msi with Mst.
Extract the certificates from the Certificate location in IE
Certmgr.exe doesn`t work for Uninstall the certificate, go with Certutil.exe
We have created the batch file for Install and uninstall the app.
Install
REM Install Certificate
"%~dp0certutil.exe" -addstore "Root" "%~dp0CERT1.cer"
"%~dp0certutil.exe" -addstore "Root" "%~dp0CERT2.cer"
Uninstall
REM Uninstall Certificate
"%~dp0certutil.exe" -delstore "Root" "PG.cert"
"%~dp0certutil.exe" -delstore "Root" "PG.cert"
1 Comment
[ + ] Show comment
-
Errr...this is the 'Questions' forum. You should've posted this as an article/blog. - anonymous_9363 9 years ago
Answers (0)
Please log in to answer
Be the first to answer this question