rem certimportall.btm import root certs in E:\env\rootcerts dir in various JVMs
rem rerun if JDK version changes or Jet Profile version changes.
E:
CD E:\env\rootcerts
rem all the root certs to install into Java are here

echo about to import these certificates into Java
dir  *.crt *.cer  *.pem  *.txt /o:d
pause

for %file in (*.crt *.cer *.pem  *.txt ) do (

echo installing certificate %file
call certimportone.btm %file
)

echo  certs still have to be manually imported into IE, Chrome, Firefox and Opera.
Rem -30-