w10install/source/installer.pb

147 lines
4.1 KiB
Plaintext
Raw Permalink 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
2024-01-03 19:58:03 +01:00
; DATE : 20240103
; ------------------------------------------------------------
;
2021-03-21 00:08:41 +01:00
; preparations to use native "system" command ...
ImportC "msvcrt.lib"
system(str.p-ascii)
EndImport
2021-03-21 00:08:41 +01:00
; Get system drive
Global SYS$=GetEnvironmentVariable("SystemDrive")
2021-03-21 00:08:41 +01:00
2024-01-03 19:58:03 +01:00
Procedure StartInstallation()
2021-03-21 00:08:41 +01:00
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)
2021-03-21 00:08:41 +01:00
If Result = #PB_MessageRequester_Yes
2024-09-28 16:34:46 +02:00
; kill main window ...
CloseWindow(0)
2024-09-28 16:25:23 +02:00
; format disk ...
dummy=system(SYS$ + "\windows\system32\cmd.exe /C " + SYS$ + "\format-disk.cmd")
; start installation ...
2024-01-03 19:58:03 +01:00
dummy=system(SYS$ + "\winsetup.exe /unattend:" + SYS$ + "\autounattend.xml")
2024-09-28 16:25:23 +02:00
End
2021-03-21 00:08:41 +01:00
EndIf
2021-03-21 00:08:41 +01:00
EndIf
2021-03-21 00:08:41 +01:00
; new fullscreen window with red colour ...
OpenWindow(10, 0, 0, 0, 0, "", #PB_Window_BorderLess | #PB_Window_Maximize)
SetWindowColor(10, RGB($FF,$00,$00))
; kill main window ...
CloseWindow(0)
MessageRequester("END.","Press OK to shutdown your system.",#PB_MessageRequester_Info)
End
EndProcedure
Procedure StartCMD()
MessageRequester("HELP. Please read me 1st.",
"Type <netuse> to mount a network share" + Chr(13) +
"Type <snapshot64> to start backup/restore" + Chr(13) + Chr(13) +
"(Network will be started automatically but it must" + Chr(13) +
" be connected with a cable and a DHCP server" + Chr(13) +
" must be present in your local network)",
#PB_MessageRequester_Info)
2021-03-21 00:08:41 +01:00
; start a command shell ...
2024-09-28 16:25:23 +02:00
dummy=system(SYS$ + "\windows\system32\cmd.exe /C start /D " + SYS$ + "\ " + SYS$ + "\windows\system32\cmd.exe /K wpeutil initializenetwork")
2021-03-21 00:08:41 +01:00
EndProcedure
Procedure StartSnapshot64()
; start backup/restore program ...
2024-09-28 16:25:23 +02:00
dummy=system(SYS$ + "\windows\system32\cmd.exe /C start /D " + SYS$ + "\ " + SYS$ + "\snapshot64.exe")
2021-03-21 00:08:41 +01:00
EndProcedure
; Button handler procedure
Procedure ButtonHandler()
Select EventGadget()
Case 0
2024-01-03 19:58:03 +01:00
StartInstallation()
2021-03-21 00:08:41 +01:00
Case 1
StartCMD()
2024-01-03 19:58:03 +01:00
Case 2
2021-03-21 00:08:41 +01:00
StartSnapshot64()
EndSelect
EndProcedure
;;;;;;;
; MAIN
;;;;;;;
; open window to hide all other windows on desktop ...
2021-03-18 00:08:40 +01:00
OpenWindow(0, 0, 0, 0, 0, "", #PB_Window_BorderLess | #PB_Window_Maximize)
; set colour to windows blue ...
SetWindowColor(0, RGB($00,$a2,$ed))
2021-03-21 00:08:41 +01:00
; Get window size
W = WindowWidth(0)
H = WindowHeight(0)
2021-03-21 00:08:41 +01:00
; Shrink factor for buttons
S=0.1
; position calculations for the buttons
2021-03-21 00:08:41 +01:00
X0=W/2-(W*S/2)
2023-02-21 16:37:24 +01:00
GAP=W*0.01
2021-03-21 00:08:41 +01:00
ButtonW=W*0.1
2023-02-21 16:37:24 +01:00
ButtonH=H*0.1
2021-03-21 00:08:41 +01:00
BX0=X0 - (ButtonW*3 + GAP*2)/2
BX1=BX0 + ButtonW + GAP
2021-03-21 00:08:41 +01:00
BX2=BX1 + ButtonW + GAP
2021-03-21 00:08:41 +01:00
BY=H/2-ButtonH/2
2021-03-21 00:08:41 +01:00
; Create Buttons
2024-01-03 19:58:03 +01:00
ButtonGadget(0, BX0, BY, ButtonW, ButtonH, "INSTALL", #PB_Button_MultiLine)
2021-03-21 00:08:41 +01:00
BindGadgetEvent(0, @ButtonHandler())
2024-01-03 19:58:03 +01:00
ButtonGadget(1, BX1, BY, ButtonW, ButtonH, "Commandshell"+Chr(13)+"(with network)", #PB_Button_MultiLine)
2021-03-21 00:08:41 +01:00
BindGadgetEvent(1, @ButtonHandler())
2024-01-03 19:58:03 +01:00
ButtonGadget(2, BX2, BY, ButtonW, ButtonH, "Snapshot"+Chr(13)+"(Backup/Restore)", #PB_Button_MultiLine)
2021-03-21 00:08:41 +01:00
BindGadgetEvent(2, @ButtonHandler())
2021-03-21 00:08:41 +01:00
; MAIN LOOP
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
; IDE Options = PureBasic 5.73 LTS (Windows - x64)
2024-09-28 16:34:46 +02:00
; CursorPosition = 34
; FirstLine = 17
2021-03-21 00:08:41 +01:00
; Folding = -
2024-09-28 16:34:46 +02:00
; EnableXP