From 05f6600b9a76f7693d165b3d80b7e048270a7358 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Tue, 4 Oct 2022 14:03:06 +0200 Subject: [PATCH] ask for wim files... --- 05_PrepareStick.cmd | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/05_PrepareStick.cmd b/05_PrepareStick.cmd index 5689aa6..a4811f5 100644 --- a/05_PrepareStick.cmd +++ b/05_PrepareStick.cmd @@ -37,8 +37,22 @@ echo using image %ISOFILE% ... echo mounting disk image (iso) with powershell ... powershell Mount-DiskImage -ImagePath %ISOFILE% -echo copying files from image to targetpath %USBDRIVE% ... -robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 /XF *.wim /XF *.esd +set answer= +:askyes + set /p answer="COPY windows image (WIM) files (Y/N)? " + if /i "%answer:~,1%" EQU "Y" ( + echo copying files from image to targetpath %USBDRIVE% ... + robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 + GOTO CONT + ) + if /i "%answer:~,1%" EQU "N" ( + echo copying files from image to targetpath %USBDRIVE% ... + robocopy \\.\CDROM0 %USBDRIVE% /MIR /256 /NFL /NDL /R:10 /XF *.wim /XF *.esd + goto CONT + ) + echo Please type Y or N. + goto askyes +:CONT echo unmounting disk image (iso) ... powershell Dismount-Diskimage -ImagePath %ISOFILE%