added endmessage

This commit is contained in:
Michael H.G. Schmidt 2021-03-28 23:21:11 +02:00
parent def7699937
commit 9fdb7f2093
4 changed files with 28 additions and 0 deletions

19
source/installending.pb Normal file
View File

@ -0,0 +1,19 @@
; installending.pb
; ------------------------------------------------------------
; shows a status message at the end of the installation
; LICENSE : GPL
; AUTHOR : Michael H.G. Schmidt
; EMAIL : michael@schmidt2.de
; DATE : 20210328
; ------------------------------------------------------------
;
MessageRequester("Installation finished.",
"Installation of this system has been finished." + Chr(13) +
"You can start using the system now!" + Chr(13) + Chr(13) +
"Logfile: C:\tools\scripts\autoconfig-all.txt",
#PB_MessageRequester_Info)
; IDE Options = PureBasic 5.71 LTS (Windows - x64)
; CursorPosition = 15
; EnableXP

1
tools/.gitignore vendored
View File

@ -9,4 +9,5 @@
!simpletail.exe
!installmonitor.exe
!searchreplace.exe
!installending.exe

BIN
tools/installending.exe Normal file

Binary file not shown.

View File

@ -1,6 +1,7 @@
@echo off
set TOOLS=c:\tools
set STATUSFILE=%LOCALAPPDATA%\.user_settings_done
set ENDMESSAGE=%TOOLS%\scripts\.install_done
set STARTMENU=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
set STARTMENU_PUBLIC=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
@ -146,6 +147,7 @@ taskkill /f /im explorer.exe 2>nul
timeout /T 2
start explorer.exe
rem create statusfile (this block must be executed only once) ...
echo 1 >%STATUSFILE%
:END
@ -227,3 +229,9 @@ net config workstation
echo ####### %0 #######
timeout /T 2
rem check for statusfile and show endmessage ...
if NOT EXIST %ENDMESSAGE% (
start /B %TOOLS%\installending.exe
echo all done >%ENDMESSAGE%
)