SET %Message1%="Herzlich willkommen zum %Application% Installations-Programm."
SET %Message2%="Dieses Program wird %Application% auf Ihrem PC in dem gewĪ£hlten Verzeichnis auf Ihrer Festplatte installieren."
DialogBox("Welcome")
IF %ERROR% == IDCANCEL GOTO :EXIT
// Ask the user where to install the software
:RETRY
SET %Message1%="Das Installationsprogramm wird die %Application% - Dateien in folgendes Verzeichnis kopieren:"
DialogBox("AskPath")
IF %ERROR% == IDBACK GOTO :BACK
IF %ERROR% == IDCANCEL GOTO :EXIT
// Make sure we still have Disk #01 in the drive
CheckExists("%CurrentDrive%DISK01", "Please insert the diskette labelled 'DISK01'")
IF %ERROR% == IDCANCEL GOTO :EXIT
// Copy files from disk & show in gauge - no usage or overwrite check
CopyFile(18)
"BIT1.BMP", "%InstallPath%", "Kopiere:"
"BIT2.BMP", "%InstallPath%", "Kopiere:"
"BIT3.BMP", "%InstallPath%", "Kopiere:"
"BIT4.BMP", "%InstallPath%", "Kopiere:"
"BIT5.BMP", "%InstallPath%", "Kopiere:"
"BIT6.BMP", "%InstallPath%", "Kopiere:"
"DIALOG.BMP", "%InstallPath%", "Kopiere:"
"DOING.WAV", "%InstallPath%", "Kopiere:"
"HIGHSCOR.DAT", "%InstallPath%", "Kopiere:"
"HINTER.BMP", "%InstallPath%", "Kopiere:"
"LOGO.BMP", "%InstallPath%", "Kopiere:"
"RAND2.BMP", "%InstallPath%", "Kopiere:"
"README.WRI", "%InstallPath%", "Kopiere:"
"RED.BMP", "%InstallPath%", "Kopiere:"
"REGISTER.WRI", "%InstallPath%", "Kopiere:"
"SMILE.BMP", "%InstallPath%", "Kopiere:"
"TETRIX.EXE", "%InstallPath%", "Kopiere:"
"BWCC.DLL", "%InstallPath%", "Copying:"
// Now setup a new program manager group and its icons
MessageBox("Setup can create a Program Manager group|for the %Application% application.||Do you wish to create a Program|Manager group and icons ?", "%Caption%", MB_YESNO, MB_ICONQUESTION)