From 29de494506b68bfe6a2b8f7f6df8b3ec63a131bf Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Mon, 2 Jan 2023 11:24:43 +0100 Subject: [PATCH] message --- 07_PrepareStick.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/07_PrepareStick.cmd b/07_PrepareStick.cmd index e600025..e87f188 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 files from image 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 image to targetpath %USBDRIVE% ... + echo copying files from ISO (WITHOUT wim) to targetpath %USBDRIVE% ... robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 /XF *.wim )