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
|
|
|
|
|
2021-03-16 23:23:06 +01:00
|
|
|
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
|
|
|
|
|
2022-12-25 20:52:46 +01:00
|
|
|
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
|
|
|
|