14 lines
733 B
Batchfile
14 lines
733 B
Batchfile
for /d %%i in (%APPDATA%\Mozilla\Firefox\Profiles\*) do (
|
|
timeout /T 2 > nul
|
|
Windows\Firefox\certutil.exe -A -n "CONET Services CA" -i Certificates\CONET_CA.der -t "C" -d %%i
|
|
timeout /T 2 > nul
|
|
Windows\Firefox\certutil.exe -A -n "CONET Services CA2" -i Certificates\CONET_CA2.der -t "C" -d %%i
|
|
timeout /T 2 > nul
|
|
Windows\Firefox\certutil.exe -A -n "CONET Services FF" -i Certificates\CONET_Frankfurt.der -t "C" -d %%i
|
|
timeout /T 2 > nul
|
|
Windows\Firefox\certutil.exe -A -n "CONET Services FF2" -i Certificates\CONET_Frankfurt2.der -t "C" -d %%i
|
|
timeout /T 2 > nul
|
|
Windows\Firefox\certutil.exe -A -n "CONET Services RES" -i Certificates\Resi_Invest.der -t "C" -d %%i
|
|
timeout /T 2 > nul
|
|
)
|