w10install/01_ExtractIso.cmd

50 lines
785 B
Batchfile
Raw Normal View History

2021-01-10 15:49:37 +01:00
@echo off
set T=c:\TEMP
set W10=%T%\W10
2021-03-17 00:22:50 +01:00
echo ====================
echo Extract ISO file ...
echo ====================
2021-01-10 15:49:37 +01:00
IF %1.==. GOTO USAGE
rem get fullpath of isofile ...
set ISOFILE=%~f1
if NOT EXIST %ISOFILE% (
echo ERROR: file %ISOFILE% not found!
exit /b
)
rem =====
rem MAIN
rem =====
echo preparing %T% ...
mkdir %T% 1>nul 2>nul
rd /S /Q %W10% 1>nul 2>nul
mkdir %W10% 1>nul 2>nul
echo mounting disk image (iso) with powershell ...
powershell Mount-DiskImage -ImagePath %ISOFILE%
echo copying files from image to targetpath %W10% ...
robocopy \\.\CDROM0 %W10% /MIR /256 /NFL /NDL
echo unmounting disk image (iso) ...
powershell Dismount-Diskimage -ImagePath %ISOFILE%
2021-03-17 00:22:50 +01:00
echo READY.
echo.
2021-01-10 15:49:37 +01:00
rem =====
rem END
rem =====
GOTO END
:USAGE
echo "usage: %0 <ISOFILE>"
:END