标签: batch-file
我需要在批处理文件中编写安装应用程序的代码,安装完成后,我想在退出之前弹出确认消息(提示或回显)。我该怎么写呢?
@echo off setlocal enabledelayedexpansion cls echo. echo wait for installation msiexec.exe /i filename.msi /qb /passive [what should i write here] exit /B