This commit is contained in:
Michael H.G. Schmidt 2023-02-20 10:35:26 +01:00
parent 7ca7bf4a7c
commit 49582f82cb
5 changed files with 67 additions and 77 deletions

View File

@ -50,12 +50,9 @@ if NOT EXIST %NTLITE% (
echo. echo.
echo ERROR: program [ NTLite ] NOT FOUND! echo ERROR: program [ NTLite ] NOT FOUND!
) else ( ) else (
echo moving [ %SOURCES%\%IMAGEFILE% ] to %T% ...
move /Y %SOURCES%\%IMAGEFILE% %T% || exit /b
echo calling NTLite ... echo calling NTLite ...
rem stupid windows: the "" are needed or NTlite will not be started - sigh - rem stupid windows: the "" are needed or NTlite will not be started - sigh -
start /B "" %NTLITE% /LoadImage:%T%\%IMAGEFILE% start /B "" %NTLITE% /LoadImage:%SOURCES%\%IMAGEFILE%
) )
echo. echo.

View File

@ -6,7 +6,7 @@ rem create temp directory ...
mkdir %T% 1>nul 2>nul mkdir %T% 1>nul 2>nul
echo ==================== echo ====================
echo Format USB Stick ... echo Format Media ...
echo ==================== echo ====================
echo. echo.
@ -43,7 +43,7 @@ echo.
echo IMPORTANT: use "exfat" for BIOS boot only and "fat32" for UEFI boot/install! echo IMPORTANT: use "exfat" for BIOS boot only and "fat32" for UEFI boot/install!
echo REASON: UEFI cannot read "exfat" filesystems and Windows setup will throw error code: 0x80042565 echo REASON: UEFI cannot read "exfat" filesystems and Windows setup will throw error code: 0x80042565
set FS= set FS=fat32
:askfs :askfs
echo. echo.
set /p FS="Please select filesystem (fat32 or exfat) [fat32]: " set /p FS="Please select filesystem (fat32 or exfat) [fat32]: "
@ -56,7 +56,6 @@ set FS=
GOTO CONT2 GOTO CONT2
) )
if /i "%FS%" EQU "" ( if /i "%FS%" EQU "" (
set FS=fat32
GOTO CONT2 GOTO CONT2
) )
echo Please enter "exfat" or "fat32". echo Please enter "exfat" or "fat32".
@ -86,10 +85,10 @@ set SIZE=32768
:CONT3 :CONT3
echo. echo.
set LABEL= set LABEL=W10-20H2
set /p LABEL="Please enter a label for the new disk: " set /p LABEL="Please enter a label for the new disk [%LABEL%] : "
echo WARNING ! This will DELETE ALL data on disk number [ %DISK% ] echo WARNING ! This will DELETE ALL data on disk number [%DISK%]
echo. echo.
set answer= set answer=
:askyes :askyes
@ -129,7 +128,7 @@ if %ERRORLEVEL% NEQ 0 (
del /F %DPARTSCRIPT% 1>nul 2>nul del /F %DPARTSCRIPT% 1>nul 2>nul
exit /b exit /b
) )
echo USB stick formatted. echo Media formatted.
rem cleanup ... rem cleanup ...
del /F %DPARTSCRIPT% 1>nul 2>nul del /F %DPARTSCRIPT% 1>nul 2>nul

View File

@ -36,27 +36,27 @@ if NOT EXIST %COMPANY_SETTINGS% (
echo. echo.
echo ================================= echo =================================
echo Copying all data to USB Stick ... echo Copying all data to Media ...
echo ================================= echo =================================
echo. echo.
set USBDRIVE=%1 set DRIVE=%1
if /I %USBDRIVE% == C: ( if /I %DRIVE% == C: (
echo ERROR: cannot use drive %USBDRIVE% ! echo ERROR: cannot use drive %DRIVE% !
exit /b exit /b
) )
if NOT EXIST %USBDRIVE% ( if NOT EXIST %DRIVE% (
echo ERROR: drive %USBDRIVE% not found! echo ERROR: drive %DRIVE% not found!
exit /b exit /b
) )
echo using drive [ %USBDRIVE% ] ... echo using drive [ %DRIVE% ] ...
echo. echo.
rem get drive type (is it fat32 ?) ... rem get drive type (is it fat32 ?) ...
for /f "tokens=5" %%A in ('@fsutil fsinfo volumeinfo %USBDRIVE%^|findstr /B "File System Name : "') do (@set DRIVETYPE=%%A) for /f "tokens=5" %%A in ('@fsutil fsinfo volumeinfo %DRIVE%^|findstr /B "File System Name : "') do (@set DRIVETYPE=%%A)
echo INFO: DRIVETPYE = [ %DRIVETYPE% ] echo INFO: DRIVETPYE = [ %DRIVETYPE% ]
rem ===== rem =====
@ -84,12 +84,12 @@ set answer=B
set /p answer="BIOS(default) or UEFI setup (B/U)? " set /p answer="BIOS(default) or UEFI setup (B/U)? "
if /i "%answer:~,1%" EQU "B" ( if /i "%answer:~,1%" EQU "B" (
echo selected: BIOS echo selected: BIOS
copy /Y image\autounattend_BIOS_template.xml %USBDRIVE%\autounattend.xml copy /Y image\autounattend_BIOS_template.xml %DRIVE%\autounattend.xml
GOTO CONT GOTO CONT
) )
if /i "%answer:~,1%" EQU "U" ( if /i "%answer:~,1%" EQU "U" (
echo selected: UEFI echo selected: UEFI
copy /Y image\autounattend_UEFI_template.xml %USBDRIVE%\autounattend.xml copy /Y image\autounattend_UEFI_template.xml %DRIVE%\autounattend.xml
GOTO CONT GOTO CONT
) )
echo Please type B for BIOS or U for UEFI setup. echo Please type B for BIOS or U for UEFI setup.
@ -121,10 +121,10 @@ if "@%localadmin_password%" NEQ "@" (
) )
echo. echo.
tools\searchreplace %USBDRIVE%\autounattend.xml ___MYUSER___ "%MYUSER%" tools\searchreplace %DRIVE%\autounattend.xml ___MYUSER___ "%MYUSER%"
tools\searchreplace %USBDRIVE%\autounattend.xml ___MYNAME___ "%MYNAME%" tools\searchreplace %DRIVE%\autounattend.xml ___MYNAME___ "%MYNAME%"
tools\searchreplace %USBDRIVE%\autounattend.xml ___MYPASS___ "%MYPASS%" tools\searchreplace %DRIVE%\autounattend.xml ___MYPASS___ "%MYPASS%"
tools\searchreplace %USBDRIVE%\autounattend.xml ___MYLANG___ "%LANG%" tools\searchreplace %DRIVE%\autounattend.xml ___MYLANG___ "%LANG%"
if NOT EXIST %SOURCES%\%BOOTFILE% ( if NOT EXIST %SOURCES%\%BOOTFILE% (
echo DOH! no %BOOTFILE% in [ %SOURCES% ] found echo DOH! no %BOOTFILE% in [ %SOURCES% ] found
@ -132,50 +132,44 @@ if NOT EXIST %SOURCES%\%BOOTFILE% (
) )
if NOT EXIST %SOURCES%\%IMAGEFILE% ( if NOT EXIST %SOURCES%\%IMAGEFILE% (
if NOT EXIST %T%\%IMAGEFILE% ( echo DOH! no %IMAGE% in [ %SOURCES% ] found
echo DOH! no %IMAGE% in [ %SOURCES% ] or in [ %T% ] found
exit /b exit /b
)
) )
if EXIST %T%\%IMAGEFILE% ( echo copying all files in [ %W10% ] to drive %DRIVE% ...
echo moving [ %T%\%IMAGEFILE% ] to %SOURCES% ... robocopy %W10%\ %DRIVE% /MIR /256 /NDL /R:1 /J /XX
move /Y %T%\%IMAGEFILE% %SOURCES%
)
echo copying all files in [ %W10% ] to drive %USBDRIVE% ...
robocopy %W10%\ %USBDRIVE% /MIR /256 /NDL /R:1 /J /XX
:CONT :CONT
if EXIST tools ( if EXIST tools (
echo. echo.
echo copying folder [ tools ] to drive %USBDRIVE% ... echo copying folder [ tools ] to drive %DRIVE% ...
robocopy tools %USBDRIVE%\tools /COPY:DT /FFT /XO /256 /NJH /NJS /NDL /R:1 /XF .gitignore robocopy tools %DRIVE%\tools /COPY:DT /FFT /XO /256 /NJH /NJS /NDL /R:1 /XF .gitignore
) )
if EXIST software ( if EXIST software (
echo. echo.
echo copying folder [ software ] to %USBDRIVE%\tools ... echo copying folder [ software ] to %DRIVE%\tools ...
robocopy software %USBDRIVE%\tools\software /COPY:DT /FFT /XO /MIR /256 /NJH /NJS /NDL /R:1 ^ robocopy software %DRIVE%\tools\software /COPY:DT /FFT /XO /MIR /256 /NJH /NJS /NDL /R:1 ^
/XF *.iso /XF *.txt /XF *.cmd /XF *.csv /XF .gitignore /XD .git /XF *.iso /XF *.txt /XF *.cmd /XF *.csv /XF .gitignore /XD .git
) )
for %%P in (drivers scripts source optional personal company apps) do ( for %%P in (drivers scripts source optional personal company apps) do (
if EXIST %%P ( if EXIST %%P (
echo. echo.
echo copying folder [ %%P ] to %USBDRIVE%\tools ... echo copying folder [ %%P ] to %DRIVE%\tools ...
robocopy %%P %USBDRIVE%\tools\%%P /COPY:DT /FFT /XO /MIR /256 /NJH /NJS /NDL ^ robocopy %%P %DRIVE%\tools\%%P /COPY:DT /FFT /XO /MIR /256 /NJH /NJS /NDL ^
/R:1 /XF .gitignore /XD .git /R:1 /XF .gitignore /XD .git
) )
) )
echo. echo.
echo copying custom setup script to %USBDRIVE% ... echo copying autoconfig starter script to %DRIVE% ...
copy /Y image\CustomSetup.cmd %USBDRIVE%\ copy /Y image\StartAutoConfig.cmd %DRIVE%\
echo. echo.
echo putting tools-copy script to %USBDRIVE% ... echo putting copytools script to %DRIVE% ...
copy /Y image\CopyTools.cmd %USBDRIVE%\ copy /Y image\CopyTools.cmd %DRIVE%\
echo. echo.
echo ====== echo ======
@ -185,7 +179,7 @@ echo ======
GOTO END GOTO END
:USAGE :USAGE
echo "usage: %0 <USBDRIVE>" echo "usage: %0 <DRIVE>"
echo. echo.
:END :END

View File

@ -6,21 +6,21 @@ set ISOFILE=%SystemDrive%\temp\%OSLABEL%.iso
IF %1.==. GOTO USAGE IF %1.==. GOTO USAGE
echo ================================ echo ================================
echo Make ISO file from USB stick... echo Make ISO file from Media ...
echo ================================ echo ================================
echo. echo.
set USBDRIVE=%1 set DRIVE=%1
if /I %USBDRIVE% == %SystemDrive% ( if /I %DRIVE% == %SystemDrive% (
echo ERROR: cannot use drive %USBDRIVE% ! echo ERROR: cannot use drive %DRIVE% !
exit /b exit /b
) )
echo using drive [ %USBDRIVE% ] ... echo using drive [ %DRIVE% ] ...
if NOT EXIST %USBDRIVE% ( if NOT EXIST %DRIVE% (
echo ERROR: drive %USBDRIVE% not found! echo ERROR: drive %DRIVE% not found!
exit /b exit /b
) )
@ -36,7 +36,7 @@ if EXIST %ISOFILE% (
exit /b exit /b
) )
%OSCDPATH%\oscdimg -l%OSLABEL% -m -u2 -b%OSCDPATH%\etfsboot.com %USBDRIVE%\ %ISOFILE% %OSCDPATH%\oscdimg -l%OSLABEL% -m -u2 -b%OSCDPATH%\etfsboot.com %DRIVE%\ %ISOFILE%
echo. echo.
echo ====== echo ======
@ -46,7 +46,7 @@ echo ======
GOTO END GOTO END
:USAGE :USAGE
echo "usage: %0 <USBDRIVE>" echo "usage: %0 <DRIVE>"
:END :END

View File

@ -42,7 +42,7 @@ This is actually the only *supported* version!
- a working Windows 10 installation with ADMIN(!) rights - a working Windows 10 installation with ADMIN(!) rights
- a working *commandline* GIT client - a working *commandline* GIT client
- a windows ISO image or Windows Media creator - a windows ISO image or Windows media creator
- some tools from Microsoft - some tools from Microsoft
- some other tools (like curl, 7zip etc. pp.) - some other tools (like curl, 7zip etc. pp.)
- Optionally: a *licensed* copy of "NTLite" - Optionally: a *licensed* copy of "NTLite"
@ -346,9 +346,9 @@ The folder "personal" is also used by some other scripts in this project. You ca
There is also a folder "company" which can be used for license files and special binaries. I'm also recommending to create a git repository that will be checked out by you just before creating the target media. There is also a folder "company" which can be used for license files and special binaries. I'm also recommending to create a git repository that will be checked out by you just before creating the target media.
Both folders must be created before calling the script that copies all files to the stick. Both folders will be copied then to the target machine when installing it via the USB stick... Both folders must be created before calling the script that copies all files to the media. They will then be copied to the target machine when installing it via the Media ...
Please notice: In the example i have chosen the path "... w10install/W1020H2v1". Best practice would be to have a folder for each Windows version (W1020H2v1). All files (including the iso file) should be put there - this makes sure that you have everything in one place for the case that you come back a year later or so and you want to create a new USB stick with a older Windows version - for testing purposes. Please notice: In the example i have chosen the path "... w10install/W1020H2v1". Best practice would be to have a folder for each Windows version (W1020H2v1). All files (including the iso file) should be put there - this makes sure that you have everything in one place for the case that you come back a year later or so and you want to create a new installation media with a older Windows version - for testing purposes.
## 6.1 Upload ALL files to a private ftp server ## 6.1 Upload ALL files to a private ftp server
@ -469,19 +469,19 @@ Tip: In the folder "presets" you will find carefull tested xml config files. The
# 9. Finally create a new boot media # 9. Finally create a new boot media
This has to be done in 3 steps: This has to be done in 3 steps:
- format a media (USB stick) - format a media (mostly a USB stick)
- create a standard Windows 10 boot media - create a standard Windows 10 boot media
- copy everything (custom image, software, config) to the media - copy everything (custom image, software, config) to the media
## 9.1 Format the USB stick or a disk ## 9.1 Format the media
Please use a fast USB 3 stick. The size should be 16 GB or more (you could use 8 GB but windows images are tending to get bigger and bigger. Additionally: We will copy lots of 3rd party software to the stick). Please use a fast USB 3 stick or a SSD disk connected via USB. The size should be 16 GB or more (you could use 8 GB but windows images are tending to get bigger and bigger. Additionally: We will copy lots of 3rd party software to the media).
To create it execute: To create it execute:
```dos ```dos
cd /D %USERPROFILE%\workspace\git\w10install cd /D %USERPROFILE%\workspace\git\w10install
05_FormatStick.cmd 05_FormatMedia.cmd
``` ```
@ -492,12 +492,12 @@ cd /D %USERPROFILE%\workspace\git\w10install
Example run: Example run:
```text ```text
==================== ====================
Format USB Stick ... Format USB Media ...
==================== ====================
Showing disk list ... Showing disk list ...
Microsoft DiskPart version 10.0.19041.964 Microsoft DiskPart version 10.0.19041.1
Copyright (C) Microsoft Corporation. Copyright (C) Microsoft Corporation.
On computer: FIREBIRD On computer: FIREBIRD
@ -515,20 +515,20 @@ OK using disk 2
IMPORTANT: use "exfat" for BIOS boot only and "fat32" for UEFI boot/install! IMPORTANT: use "exfat" for BIOS boot only and "fat32" for UEFI boot/install!
REASON: UEFI cannot read "exfat" filesystems and Windows setup will throw error code: 0x80042565 REASON: UEFI cannot read "exfat" filesystems and Windows setup will throw error code: 0x80042565
Please select filesystem (exfat or fat32) [exfat]: fat32 Please select filesystem (fat32 or exfat) [fat32]:
IMPORTANT: maximum partition size for FAT32 is 32768! IMPORTANT: maximum partition size for FAT32 is 32768!
maximum filesize for FAT32 is 4GB! maximum filesize for FAT32 is 4GB!
selected: fat32 selected: fat32
Please enter size in MB [max]: 32768 Please enter size in MB [32768]:
selected size = 32768 [MB] selected size = 32768 [MB]
Please enter a label for the new disk: W10-20H2 Please enter a label for the new disk [W10-20H2] :
WARNING ! This will DELETE ALL data on disk number [ 2 ] WARNING ! This will DELETE ALL data on disk number [2]
REALLY delete disk 2 (Y/N)? y REALLY delete disk 2 (Y/N)? y
Microsoft DiskPart version 10.0.19041.964 Microsoft DiskPart version 10.0.19041.1
Copyright (C) Microsoft Corporation. Copyright (C) Microsoft Corporation.
On computer: FIREBIRD On computer: FIREBIRD
@ -552,7 +552,7 @@ DiskPart marked the current partition as active.
DiskPart successfully assigned the drive letter or mount point. DiskPart successfully assigned the drive letter or mount point.
Leaving DiskPart... Leaving DiskPart...
USB stick formatted. Media formatted.
====== ======
READY. READY.
@ -560,16 +560,16 @@ READY.
``` ```
## 9.2 Copy the everything to the USB stick or a disk ## 9.2 Copy the everything to the media
Now it's time to copy the custom windows images, all scripts and additional 3rd party software to our boot media (USB stick). Now it's time to copy the custom windows images, all scripts and additional 3rd party software to our boot media (USB stick or SSD drive).
*Notice: In the example we use drive "E:". Please make sure to use the correct drive letter for your USB drive!* *Notice: In the example we use drive "E:". Please make sure to use the correct drive letter for your USB drive!*
Execute: Execute:
```dos ```dos
cd /D %USERPROFILE%\workspace\git\w10install cd /D %USERPROFILE%\workspace\git\w10install
06_Copy2Stick.cmd E: 06_Copy2Media.cmd E:
``` ```
@ -682,7 +682,7 @@ READY.
*Congratulations!* *Congratulations!*
**Your customized windows image for UNATTENDED installation is READY now. Remove the USB stick and put it into a PC you want to install.** **Your customized windows image for UNATTENDED installation is READY now. Remove the media and plug it into a PC you want to install.**
## 9.3 Create an ISO image ## 9.3 Create an ISO image
@ -691,14 +691,14 @@ In case you need an ISO image you can create it with the following command:
```dos ```dos
cd /D %USERPROFILE%\workspace\git\w10install cd /D %USERPROFILE%\workspace\git\w10install
07_MakeISOfromStick.cm E: 07_MakeISO.cmd E:
``` ```
Example run: Example run:
```text ```text
================================ ================================
Make ISO file from USB stick... Make ISO file from Media ...
================================ ================================
using drive [ E: ] ... using drive [ E: ] ...