w10install/image/mount-image.cmd

32 lines
806 B
Batchfile
Raw Normal View History

2021-01-29 21:34:08 +01:00
@echo off
2023-02-20 07:56:50 +01:00
set SOURCES=%SystemDrive%\TEMP\W10\sources
set IMAGE=%SystemDrive%\TEMP\IMAGE
2021-01-29 21:34:08 +01:00
2023-01-12 15:28:17 +01:00
rem check for wim file ...
2023-01-22 20:09:39 +01:00
if NOT EXIST %SOURCES%\install.wim (
echo ERROR: [ %SOURCES%\install.wim ] NOT FOUND!
2023-01-12 15:28:17 +01:00
exit /b
)
2023-01-22 20:09:39 +01:00
rem cleanup ...
rd /S /Q %IMAGE% 2>nul
echo creating image mountpoint ...
mkdir %IMAGE% 1>nul 2>nul
2021-01-29 21:34:08 +01:00
2023-01-22 20:09:39 +01:00
echo setting write access for install.wim ...
2021-04-05 23:06:24 +02:00
attrib -R %SOURCES%\install.wim 2>nul
echo mounting install.wim to %IMAGE% ...
2023-12-25 13:37:25 +01:00
dism /Mount-IMAGE /IMAGEFile:%SOURCES%\install.wim /Index:1 /MountDir:%IMAGE% || (
2023-01-22 20:09:39 +01:00
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
)
2021-01-29 21:34:08 +01:00