w10install/02_ExtractIso.cmd
Michael H.G. Schmidt 8ef035d16d reorg
2023-01-02 17:15:02 +01:00

54 lines
931 B
Batchfile

@echo off
set T=c:\TEMP
set W10=%T%\W10
set ISODRIVE=Y:
IF %1.==. GOTO USAGE
echo ====================
echo Extract ISO file ...
echo ====================
echo.
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 "$diskImg = Mount-DiskImage -ImagePath %ISOFILE% -NoDriveLetter; $volInfo = $diskImg | Get-Volume; mountvol %ISODRIVE% $volInfo.UniqueId"
echo copying files from image to targetpath %W10% ...
robocopy %ISODRIVE%\ %W10% /MIR /256 /NFL /NDL /R:100
echo unmounting disk image (iso) ...
powershell Dismount-Diskimage -ImagePath %ISOFILE%
echo READY.
echo.
echo.
echo ======
echo READY.
echo ======
GOTO END
:USAGE
echo "usage: %0 <ISOFILE>"
:END