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 ERROR: program [ NTLite ] NOT FOUND!
) else (
echo moving [ %SOURCES%\%IMAGEFILE% ] to %T% ...
move /Y %SOURCES%\%IMAGEFILE% %T% || exit /b
echo calling NTLite ...
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.

View File

@ -6,7 +6,7 @@ rem create temp directory ...
mkdir %T% 1>nul 2>nul
echo ====================
echo Format USB Stick ...
echo Format Media ...
echo ====================
echo.
@ -43,7 +43,7 @@ echo.
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
set FS=
set FS=fat32
:askfs
echo.
set /p FS="Please select filesystem (fat32 or exfat) [fat32]: "
@ -56,7 +56,6 @@ set FS=
GOTO CONT2
)
if /i "%FS%" EQU "" (
set FS=fat32
GOTO CONT2
)
echo Please enter "exfat" or "fat32".
@ -86,10 +85,10 @@ set SIZE=32768
:CONT3
echo.
set LABEL=
set /p LABEL="Please enter a label for the new disk: "
set LABEL=W10-20H2
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.
set answer=
:askyes
@ -129,7 +128,7 @@ if %ERRORLEVEL% NEQ 0 (
del /F %DPARTSCRIPT% 1>nul 2>nul
exit /b
)
echo USB stick formatted.
echo Media formatted.
rem cleanup ...
del /F %DPARTSCRIPT% 1>nul 2>nul

View File

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

View File

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

View File

@ -42,7 +42,7 @@ This is actually the only *supported* version!
- a working Windows 10 installation with ADMIN(!) rights
- 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 other tools (like curl, 7zip etc. pp.)
- 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.
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
@ -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
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
- 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:
```dos
cd /D %USERPROFILE%\workspace\git\w10install
05_FormatStick.cmd
05_FormatMedia.cmd
```
@ -492,12 +492,12 @@ cd /D %USERPROFILE%\workspace\git\w10install
Example run:
```text
====================
Format USB Stick ...
Format USB Media ...
====================
Showing disk list ...
Microsoft DiskPart version 10.0.19041.964
Microsoft DiskPart version 10.0.19041.1
Copyright (C) Microsoft Corporation.
On computer: FIREBIRD
@ -515,20 +515,20 @@ OK using disk 2
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
Please select filesystem (exfat or fat32) [exfat]: fat32
Please select filesystem (fat32 or exfat) [fat32]:
IMPORTANT: maximum partition size for FAT32 is 32768!
maximum filesize for FAT32 is 4GB!
selected: fat32
Please enter size in MB [max]: 32768
Please enter size in MB [32768]:
selected size = 32768 [MB]
Please enter a label for the new disk: W10-20H2
WARNING ! This will DELETE ALL data on disk number [ 2 ]
Please enter a label for the new disk [W10-20H2] :
WARNING ! This will DELETE ALL data on disk number [2]
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.
On computer: FIREBIRD
@ -552,7 +552,7 @@ DiskPart marked the current partition as active.
DiskPart successfully assigned the drive letter or mount point.
Leaving DiskPart...
USB stick formatted.
Media formatted.
======
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!*
Execute:
```dos
cd /D %USERPROFILE%\workspace\git\w10install
06_Copy2Stick.cmd E:
06_Copy2Media.cmd E:
```
@ -682,7 +682,7 @@ READY.
*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
@ -691,14 +691,14 @@ In case you need an ISO image you can create it with the following command:
```dos
cd /D %USERPROFILE%\workspace\git\w10install
07_MakeISOfromStick.cm E:
07_MakeISO.cmd E:
```
Example run:
```text
================================
Make ISO file from USB stick...
Make ISO file from Media ...
================================
using drive [ E: ] ...