changes setup start a bit ...

This commit is contained in:
Michael H.G. Schmidt 2021-03-18 00:08:40 +01:00
parent 4c2e3e4fae
commit ff11e0afa0
8 changed files with 34 additions and 20 deletions

View File

@ -2,12 +2,12 @@
set T=c:\TEMP
set W10=%T%\W10
IF %1.==. GOTO USAGE
echo ====================
echo Extract ISO file ...
echo ====================
IF %1.==. GOTO USAGE
rem get fullpath of isofile ...
set ISOFILE=%~f1

View File

@ -1,13 +1,13 @@
@echo off
IF %1.==. GOTO USAGE
IF %2.==. GOTO USAGE
echo.
echo ====================
echo Create USB Stick ...
echo ====================
IF %1.==. GOTO USAGE
IF %2.==. GOTO USAGE
rem get fullpath of isofile ...
set USBDRIVE=%1
set ISOFILE=%~f2

View File

@ -4,13 +4,13 @@ set BOOT=boot.wim
set IMAGE=install_FINAL.esd
set ALTIMAGE=install_FINAL_lastrun.esd
IF %1.==. GOTO USAGE
echo.
echo =====================
echo Prepare USB Stick ...
echo =====================
IF %1.==. GOTO USAGE
set USBDRIVE=%1
if /I %USBDRIVE% == C: (

View File

@ -3,12 +3,13 @@ set OSCDPATH="%ProgramFiles(x86)%\Windows Kits\10\Assessment and Deployment Kit\
set OSLABEL=WIN10-AUTO
set ISOFILE=c:\temp\%OSLABEL%.iso
IF %1.==. GOTO USAGE
echo ===================
echo Make ISO file ...
echo ===================
echo.
IF %1.==. GOTO USAGE
set USBDRIVE=%1
if /I %USBDRIVE% == C: (

View File

@ -1,20 +1,24 @@
; installwarning.pb
; installer.pb
; ------------------------------------------------------------
; shows a warning when starting the install process
; installer wrapper for setup.exe
; LICENSE : GPL
; AUTHOR : Michael H.G. Schmidt
; EMAIL : michael@schmidt2.de
; DATE : 20210315
; DATE : 20210317
; ------------------------------------------------------------
;
dummy$ = ""
; preparations to use native "system" command...
ImportC "msvcrt.lib"
system(str.p-ascii)
EndImport
; 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!",
@ -36,7 +40,7 @@ If Result = #PB_MessageRequester_Yes
EndIf
; show abort message ...
OpenWindow(0, 0, 0, 270, 70, "Installation ABORTED",
OpenWindow(1, 0, 0, 270, 70, "Installation ABORTED",
#PB_Window_SystemMenu | #PB_Window_ScreenCentered)
If LoadFont(0, "System", 10)
@ -50,4 +54,5 @@ Repeat : Until WaitWindowEvent() = True
; IDE Options = PureBasic 5.73 LTS (Windows - x64)
; CursorPosition = 32
; FirstLine = 8
; EnableXP

View File

@ -1,10 +1,15 @@
@echo off
IF %1.==. GOTO USAGE
rem removing extension ...
rem remove extension ...
set BASENAME=%~n1
rem adding extension again ...
set SOURCEFILE=%BASENAME%.pb
rem removing extension and get full path ...
set FULLBASE=%~dpn1
rem adding extension to fullbase again ...
set SOURCEFILE=%FULLBASE%.pb
pbcompiler /EXE %BASENAME%.exe /CONSOLE %SOURCEFILE%
GOTO END

View File

@ -2,13 +2,16 @@
set SOURCES=c:\TEMP\W10\sources
set BOOT=c:\TEMP\BOOT
echo renaming Windows setup.exe ...
if NOT EXIST %BOOT%\winsetup.exe (
echo renaming Windows setup.exe to boot ...
move /Y %BOOT%\setup.exe %BOOT%\winsetup.exe
)
echo copy install utility to boot ...
copy /Y installwarning.exe %BOOT%\setup.exe
echo replacing setup.exe with our installer utility ...
copy /Y installer.exe %BOOT%\setup.exe
echo showing boot contents ...
dir %BOOT%
echo unmounting and committing changes to %SOURCES%\boot.wim ...
dism /Unmount-Wim /MountDir:%BOOT% /Commit

Binary file not shown.