bugfixing and docs

This commit is contained in:
Michael H.G. Schmidt 2023-01-02 14:33:56 +01:00
parent d771b51a58
commit 97432458eb
3 changed files with 7 additions and 5 deletions

View File

@ -40,10 +40,10 @@ echo mounting disk image (iso) with powershell ...
powershell Mount-DiskImage -ImagePath %ISOFILE% powershell Mount-DiskImage -ImagePath %ISOFILE%
if /I %COPY_IMAGE% == /W ( if /I %COPY_IMAGE% == /W (
echo copying ALL files (including wim) from ISO to targetpath %USBDRIVE% ... echo copying ALL files including wim from ISO to targetpath %USBDRIVE% ...
robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10
) else ( ) else (
echo copying files from ISO (WITHOUT wim) to targetpath %USBDRIVE% ... echo copying files from ISO WITHOUT wim to targetpath %USBDRIVE% ...
robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 /XF *.wim robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 /XF *.wim
) )

View File

@ -13,13 +13,12 @@ rem ===================
echo searching for SCRIPT settings ... echo searching for SCRIPT settings ...
if NOT EXIST %SCRIPT_SETTINGS% ( if NOT EXIST %SCRIPT_SETTINGS% (
echo INFO: config file %COMPANY_SETTINGS% NOT FOUND echo INFO: config file %SCRIPT_SETTINGS% NOT FOUND
set LANG=en-US set LANG=en-US
) else ( ) else (
echo OK. Loading SCRIPT settings ... echo OK. Loading SCRIPT settings ...
call %SCRIPT_SETTINGS% call %SCRIPT_SETTINGS%
) )
echo LANG=%LANG%
set support_user= set support_user=
set support_password= set support_password=

View File

@ -569,6 +569,9 @@ cd /D %USERPROFILE%\workspace\git\w10install
``` ```
HINT: In the example we use drive "D:". Please make sure to use the correct drive letter for your USB drive!
Example run: Example run:
```text ```text
==================== ====================
@ -603,7 +606,7 @@ Now it's time to copy the custom windows image, alls scripts and additional 3rd
Execute: Execute:
```dos ```dos
cd /D %USERPROFILE%\workspace\git\w10install cd /D %USERPROFILE%\workspace\git\w10install
08_Copy2Stick.cmd D: 08_CopyWIM2Stick.cmd D:
``` ```