I want to display a few Instructions and Steps before launching installation of a software by Cmd window. After displaying such Instructions and Steps, I want to start installation of that software.
I explain my need by example.
I create a batch file, which opens Cmd window, describing some 'To Do's' then when I start the installation, my cmd window closes immidiately.
Contents of my example batch file :
Code: Select all
@Echo Off
Color 1E
Echo.
Echo INSTRUCTIONS AND WARNINGS
Echo ==> Disconnect Internet now
Echo ==> Tick Custom Installaion
Echo ==> After Installation completes
Echo ==> Restart Internet
Call Setup.Exe
Exit
For this I beg help Sir.