w10install/image/mount-boot.cmd

32 lines
808 B
Batchfile
Raw Permalink Normal View History

@echo off
2023-02-20 07:56:50 +01:00
set SOURCES=%SystemDrive%\TEMP\W10\sources
set BOOT=%SystemDrive%\TEMP\BOOT
2023-01-22 20:09:39 +01:00
rem check for wim file ...
if NOT EXIST %SOURCES%\boot.wim (
echo ERROR: [ %SOURCES%\boot.wim ] NOT FOUND!
exit /b
)
2021-04-05 23:06:24 +02:00
rem cleanup ...
rd /S /Q %BOOT% 2>nul
echo creating wim mountpoint for BOOT ...
mkdir %BOOT% 1>nul 2>nul
2023-01-22 20:09:39 +01:00
echo setting write access for boot.wim ...
attrib -R %SOURCES%\boot.wim
echo mounting boot.wim to %BOOT% ...
2023-01-22 20:09:39 +01:00
dism /Mount-Wim /WimFile:%SOURCES%\boot.wim /Name:"Microsoft Windows Setup (x64)" /MountDir:%BOOT% || (
echo.
echo ERROR while mounting WIM file! Please unmount orphaned images:
dism /Get-MountedWimInfo
echo.
echo INFO. Use the following command to fix this problem:
echo "dism /Unmount-Wim /MountDir:<Mount Dir> /Discard"
exit /b 1
)