i need to write code in batch file for install application, after installation has finished, i want to pop up confirmation message (either prompt or echo) before exit. How do i write it ?
@echo off
setlocal enabledelayedexpansion
cls
echo.
echo wait for installation
msiexec.exe /i filename.msi /qb /passive
[what should i write here]
exit /B