Files
scripts/CA Root Zertifikate installieren/Windows/Firefox/install-ca.cmd
2024-10-13 23:27:09 +02:00

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
)