w10install/image/mount-image.cmd

24 lines
552 B
Batchfile
Raw Normal View History

2021-01-29 21:34:08 +01:00
@echo off
set SOURCES=c:\TEMP\W10\sources
set IMAGE=c:\TEMP\IMAGE
set NTLITE="%ProgramFiles%\NTLite\NTLite.exe"
2021-01-29 21:34:08 +01:00
2023-01-12 15:28:17 +01:00
rem check for wim file ...
if NOT EXIST %SOURCES%\boot.wim (
echo ERROR: [ %SOURCES%\boot.wim ] NOT FOUND!
echo ABORT.
exit /b
) else (
cd image
)
echo creating image mountpoint ...
mkdir %IMAGE% 1>nul 2>nul
2021-01-29 21:34:08 +01:00
2021-04-05 23:06:24 +02:00
rem set write access ...
attrib -R %SOURCES%\install.wim 2>nul
echo mounting install.wim to %IMAGE% ...
dism /Mount-IMAGE /IMAGEFile:%SOURCES%\install.wim /Name:"Windows 10 Pro" /MountDir:%IMAGE%
2021-01-29 21:34:08 +01:00