@echo off cd /d "%~dp0" setlocal enabledelayedexpansion set /a totalApps=11 set /a installed=0 set /a skipped=0 set /a count=0 echo Auto-Freeware Installation (V1.4) pause cls :: ────────────────────────────── set /a count+=1 echo Installing AnyDesk... start /wait AnyDesk.exe set /a installed+=1 echo [!count!/!totalApps!] Installed AnyDesk :: ────────────────────────────── set /p installBurnaware=Do you want to install BurnAware Free 18.5? (Y/N): set /a count+=1 if /I "%installBurnaware%"=="Y" ( echo Installing BurnAware... start "" /wait "burnaware_free_18.5 (ODD only).exe" set /a installed+=1 echo [!count!/!totalApps!] Installed BurnAware ) else ( set /a skipped+=1 echo [!count!/!totalApps!] Skipped BurnAware ) :: ────────────────────────────── set /a count+=1 echo Installing CCleaner... start /wait ccsetup633.exe set /a installed+=1 echo [!count!/!totalApps!] Installed CCleaner set /a count+=1 echo Installing Chrome... start /wait ChromeSetup.exe set /a installed+=1 echo [!count!/!totalApps!] Installed Chrome set /a count+=1 echo Installing Java 8u451 (32-bit)... start /wait jre-8u451-windows-i586-iftw.exe set /a installed+=1 echo [!count!/!totalApps!] Installed Java (32-bit) set /a count+=1 echo Installing Java 8u451 (64-bit)... start /wait jre-8u451-windows-x64.exe set /a installed+=1 echo [!count!/!totalApps!] Installed Java (64-bit) set /a count+=1 echo Installing K-Lite Codec Pack... start /wait K-Lite_Codec_Pack_1905_Mega.exe set /a installed+=1 echo [!count!/!totalApps!] Installed K-Lite set /a count+=1 echo Installing WinRAR... start /wait winrar-x64-710.exe set /a installed+=1 echo [!count!/!totalApps!] Installed WinRAR set /a count+=1 echo Installing Zoom... start /wait ZoomInstallerFull.exe set /a installed+=1 echo [!count!/!totalApps!] Installed Zoom set /a count+=1 echo Installing WPS Office in background... start "" wps_wid.cid-730897317.1744702601.exe /S set /a installed+=1 echo [!count!/!totalApps!] Launched WPS Office set /a count+=1 echo Installing Adobe Reader silently... start /wait Reader_en_install.exe /sAll /msi /norestart /quiet set /a installed+=1 echo [!count!/!totalApps!] Installed Adobe Reader :: ────────────────────────────── echo. echo Done! echo Made by Ridhwan :) echo Installed: !installed! echo Skipped : !skipped! echo Press any key to exit. pause >nul