w10install/source/installer.pb

58 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-03-18 00:08:40 +01:00
; installer.pb
; ------------------------------------------------------------
2021-03-18 00:08:40 +01:00
; installer wrapper for setup.exe
; LICENSE : GPL
; AUTHOR : Michael H.G. Schmidt
; EMAIL : michael@schmidt2.de
2021-03-18 00:08:40 +01:00
; DATE : 20210317
; ------------------------------------------------------------
;
; preparations to use native "system" command...
ImportC "msvcrt.lib"
system(str.p-ascii)
EndImport
2021-03-18 00:08:40 +01:00
; open window to hide all other windows on dekstop ...
OpenWindow(0, 0, 0, 0, 0, "", #PB_Window_BorderLess | #PB_Window_Maximize)
; set colour to windows blue ...
SetWindowColor(0, RGB($00,$a2,$ed))
Result = MessageRequester("+++ Windows 10 unattended Installation +++",
"This will install a new OS (unattended)" + Chr(13) +
"and it will DELETE all DATA an your [ C: ] Drive!",
#PB_MessageRequester_YesNo | #PB_MessageRequester_Info)
If Result = #PB_MessageRequester_Yes
Result = MessageRequester("Caution !",
"LAST WARNING:" + Chr(13) +
"REALLY DELETE ALL Data on DRIVE [ C: ] ?",
#PB_MessageRequester_YesNo | #PB_MessageRequester_Warning)
; start installation ...
If Result = #PB_MessageRequester_Yes
dummy=system("x:\winsetup.exe")
End 0
EndIf
EndIf
; show abort message ...
2021-03-18 00:08:40 +01:00
OpenWindow(1, 0, 0, 270, 70, "Installation ABORTED",
#PB_Window_SystemMenu | #PB_Window_ScreenCentered)
If LoadFont(0, "System", 10)
SetGadgetFont(#PB_Default, FontID(0))
EndIf
TextGadget(0, 0, 20, 270, 30, "Please POWEROFF your system now!", #PB_Text_Center)
; wait forever (window cannot be closed by user) ...
Repeat : Until WaitWindowEvent() = True
; IDE Options = PureBasic 5.73 LTS (Windows - x64)
; CursorPosition = 32
2021-03-18 00:08:40 +01:00
; FirstLine = 8
; EnableXP