: PlayStation(R) PC Programmer Tool Runtime Library Release 2.50.00.10-00.00.00.0.1 : Copyright (C) 2023 Sony Interactive Entertainment Inc. @echo off set quiet_mode=%1 set install_option=/quiet /i if not "%quiet_mode%" == "quiet" ( set install_option=/i ) pushd %~dp0 set result=0 set result_manager=0 set result_installer=0 msiexec %install_option% PsPcSdkRuntimeManager.msi if not %errorlevel% == 0 ( set result_manager=%errorlevel% goto END_INSTALL ) msiexec %install_option% PsPcSdkRuntimeInstaller.msi if not %errorlevel% == 0 ( set result_installer=%errorlevel% goto END_INSTALL ) :END_INSTALL popd set /a result=%result_manager%*10000+%result_installer% if not "%quiet_mode%" == "quiet" ( if %result% == 0 ( echo PlayStation^(R^) PC SDK Runtime installation was successful. ) else ( echo PlayStation^(R^) PC SDK Runtime installation was failed. %result_manager%,%result_installer% ) pause ) exit /b %result%