Importing certificate to Trusted Certificates
Hello Forums, My problem is that I need to go to 100 computers and make it so the JAVA -- "The application's digital signature has been verified. Do you want to run this application? - click run" -- does not show up. So certificates right?
I exported the certificate from the site using windows 7 computer and plan to deploy it out to others. I exported out of the Java Console and saved it as nameofcer.cer (e.g.)
Here is my batch
Code:
cd C:\Program Files (x86)\Java\jre6\bin\
keytool -importcert -alias %COMPUTERNAME% -trustcacerts -file "\\server\location\nameofcer.cer" -keystore "C:\Program Files (x86)\Java\jre6\lib\security\cert" -storepass "changeit"
pause
However when i go to that specific site it still pops up.
Also it doesn't show up under Trusted Certificates, however it shows up in system, Secure Site CA and Signer SA.
Help would be greatly appreciated.