added endmessage
This commit is contained in:
parent
def7699937
commit
9fdb7f2093
19
source/installending.pb
Normal file
19
source/installending.pb
Normal 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
1
tools/.gitignore
vendored
@ -9,4 +9,5 @@
|
|||||||
!simpletail.exe
|
!simpletail.exe
|
||||||
!installmonitor.exe
|
!installmonitor.exe
|
||||||
!searchreplace.exe
|
!searchreplace.exe
|
||||||
|
!installending.exe
|
||||||
|
|
||||||
|
BIN
tools/installending.exe
Normal file
BIN
tools/installending.exe
Normal file
Binary file not shown.
@ -1,6 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
set TOOLS=c:\tools
|
set TOOLS=c:\tools
|
||||||
set STATUSFILE=%LOCALAPPDATA%\.user_settings_done
|
set STATUSFILE=%LOCALAPPDATA%\.user_settings_done
|
||||||
|
set ENDMESSAGE=%TOOLS%\scripts\.install_done
|
||||||
set STARTMENU=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
|
set STARTMENU=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
|
||||||
set STARTMENU_PUBLIC=%PROGRAMDATA%\"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
|
timeout /T 2
|
||||||
start explorer.exe
|
start explorer.exe
|
||||||
|
|
||||||
|
rem create statusfile (this block must be executed only once) ...
|
||||||
echo 1 >%STATUSFILE%
|
echo 1 >%STATUSFILE%
|
||||||
|
|
||||||
:END
|
:END
|
||||||
@ -227,3 +229,9 @@ net config workstation
|
|||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
timeout /T 2
|
timeout /T 2
|
||||||
|
|
||||||
|
rem check for statusfile and show endmessage ...
|
||||||
|
if NOT EXIST %ENDMESSAGE% (
|
||||||
|
start /B %TOOLS%\installending.exe
|
||||||
|
echo all done >%ENDMESSAGE%
|
||||||
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user