- Create a Directory called "SSL" (or something like that)
- Drop all your PFX files into the SSL folder
- Create a Batch File "InstallCert.bat"
- Run a command prompt as administrator
- Change Directory to your batch file and run it
set CURDIR=%CD%
for /f "usebackq delims=|" %%f in (`dir /b "%CURDIR%" ^| findstr /i pfx`) do certutil.exe -f -p <PFX File Password> -importpfx "%CURDIR%\%%f"
pause
No comments:
Post a Comment