echo ############################################################ echo #Installing certificate as root for SmartScript echo ############################################################ ::Get the path where the batch file is launched set currentPath=%~dp0 set certificate_password = "vUyxVQxVAY5ghuE6AUyseEJfJ7uemSmZsGyuphVz2cY5nPjzzmu6W8tGuDVhDU58ksft7YdYcmvK2wV3h4RMcUTBKVsnx3N8TQcmQCFA2qxXzscaZcxLu5ecYmqAf7Zu" ::Go to the disk name %~d0 certutil –f –p certificate_password –importpfx "%currentPath%\localhost2024.pfx" echo Install certificate on Windows - Trusted Root Certification Authorities certutil -enterprise -f -v -AddStore "Root" "%currentPath%\localhost2024.cer" xcopy "%currentPath%\\localhost2024.pfx" "C:\Amadeus\Amadeus SmartScripting Bridge\cert\localhost2024.pfx" notepad "C:\Amadeus\Amadeus SmartScripting Bridge\multiserver.conf.json" echo Installation finished echo The window can be closed REM exit /B 0