From 97432458eb6dc8698ad5f28c2387204f4cd0fca3 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Mon, 2 Jan 2023 14:33:56 +0100 Subject: [PATCH] bugfixing and docs --- 07_PrepareStick.cmd | 4 ++-- 08_CopyWIM2Stick.cmd | 3 +-- README.md | 5 ++++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/07_PrepareStick.cmd b/07_PrepareStick.cmd index e87f188..bc78c7e 100644 --- a/07_PrepareStick.cmd +++ b/07_PrepareStick.cmd @@ -40,10 +40,10 @@ echo mounting disk image (iso) with powershell ... powershell Mount-DiskImage -ImagePath %ISOFILE% 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 ) 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 ) diff --git a/08_CopyWIM2Stick.cmd b/08_CopyWIM2Stick.cmd index 833d106..6fdcd90 100644 --- a/08_CopyWIM2Stick.cmd +++ b/08_CopyWIM2Stick.cmd @@ -13,13 +13,12 @@ rem =================== echo searching for 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 ) else ( echo OK. Loading SCRIPT settings ... call %SCRIPT_SETTINGS% ) -echo LANG=%LANG% set support_user= set support_password= diff --git a/README.md b/README.md index 01aa045..cc9c46e 100644 --- a/README.md +++ b/README.md @@ -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: ```text ==================== @@ -603,7 +606,7 @@ Now it's time to copy the custom windows image, alls scripts and additional 3rd Execute: ```dos cd /D %USERPROFILE%\workspace\git\w10install -08_Copy2Stick.cmd D: +08_CopyWIM2Stick.cmd D: ```