From 62a90bc3bf28a66898a0c0863ed2a41462c0b3e8 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Wed, 8 Feb 2023 17:10:43 +0100 Subject: [PATCH] bugfix --- 02_ExtractIso.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02_ExtractIso.cmd b/02_ExtractIso.cmd index f9a20bc..e3d828e 100644 --- a/02_ExtractIso.cmd +++ b/02_ExtractIso.cmd @@ -31,7 +31,7 @@ echo mounting disk image (iso) with powershell ... for /f %%i in ('"powershell $diskImage=Mount-DiskImage -ImagePath %ISOFILE% -NoDriveLetter; write-host $diskImage.DevicePath"') do @set DEVICEPATH=%%i echo copying files from image to targetpath %W10% ... -robocopy %DEVICEPATH% %W10% /MIR /256 /NFL /NDL /R:100 +robocopy %DEVICEPATH% %W10% /MIR /256 /NFL /NDL /R:0 echo unmounting disk image (iso) ... powershell Dismount-Diskimage -ImagePath %ISOFILE%