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 T=c:\TEMP
set W10=%T%\W10 set W10=%T%\W10
IF %1.==. GOTO USAGE
echo ==================== echo ====================
echo Extract ISO file ... echo Extract ISO file ...
echo ==================== echo ====================
IF %1.==. GOTO USAGE
rem get fullpath of isofile ... rem get fullpath of isofile ...
set ISOFILE=%~f1 set ISOFILE=%~f1

View File

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

View File

@ -4,13 +4,13 @@ set BOOT=boot.wim
set IMAGE=install_FINAL.esd set IMAGE=install_FINAL.esd
set ALTIMAGE=install_FINAL_lastrun.esd set ALTIMAGE=install_FINAL_lastrun.esd
IF %1.==. GOTO USAGE
echo. echo.
echo ===================== echo =====================
echo Prepare USB Stick ... echo Prepare USB Stick ...
echo ===================== echo =====================
IF %1.==. GOTO USAGE
set USBDRIVE=%1 set USBDRIVE=%1
if /I %USBDRIVE% == C: ( 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 OSLABEL=WIN10-AUTO
set ISOFILE=c:\temp\%OSLABEL%.iso set ISOFILE=c:\temp\%OSLABEL%.iso
IF %1.==. GOTO USAGE
echo =================== echo ===================
echo Make ISO file ... echo Make ISO file ...
echo =================== echo ===================
echo. echo.
IF %1.==. GOTO USAGE
set USBDRIVE=%1 set USBDRIVE=%1
if /I %USBDRIVE% == C: ( 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 ; LICENSE : GPL
; AUTHOR : Michael H.G. Schmidt ; AUTHOR : Michael H.G. Schmidt
; EMAIL : michael@schmidt2.de ; EMAIL : michael@schmidt2.de
; DATE : 20210315 ; DATE : 20210317
; ------------------------------------------------------------ ; ------------------------------------------------------------
; ;
dummy$ = ""
; preparations to use native "system" command... ; preparations to use native "system" command...
ImportC "msvcrt.lib" ImportC "msvcrt.lib"
system(str.p-ascii) system(str.p-ascii)
EndImport 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 +++", Result = MessageRequester("+++ Windows 10 unattended Installation +++",
"This will install a new OS (unattended)" + Chr(13) + "This will install a new OS (unattended)" + Chr(13) +
"and it will DELETE all DATA an your [ C: ] Drive!", "and it will DELETE all DATA an your [ C: ] Drive!",
@ -36,7 +40,7 @@ If Result = #PB_MessageRequester_Yes
EndIf EndIf
; show abort message ... ; 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) #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
If LoadFont(0, "System", 10) If LoadFont(0, "System", 10)
@ -50,4 +54,5 @@ Repeat : Until WaitWindowEvent() = True
; IDE Options = PureBasic 5.73 LTS (Windows - x64) ; IDE Options = PureBasic 5.73 LTS (Windows - x64)
; CursorPosition = 32 ; CursorPosition = 32
; FirstLine = 8
; EnableXP ; EnableXP

View File

@ -1,10 +1,15 @@
@echo off @echo off
IF %1.==. GOTO USAGE IF %1.==. GOTO USAGE
rem removing extension ...
rem remove extension ...
set BASENAME=%~n1 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% pbcompiler /EXE %BASENAME%.exe /CONSOLE %SOURCEFILE%
GOTO END GOTO END

View File

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

Binary file not shown.