This commit is contained in:
Michael H.G. Schmidt 2023-01-02 11:24:43 +01:00
parent 68e2b57e2c
commit 29de494506

View File

@ -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
)