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%