2021-03-16 23:23:06 +01:00
|
|
|
@echo off
|
2023-02-20 07:56:50 +01:00
|
|
|
set IMAGE=%SystemDrive%\TEMP\IMAGE
|
|
|
|
set BOOT=%SystemDrive%\TEMP\BOOT
|
2021-03-16 23:23:06 +01:00
|
|
|
|
|
|
|
echo unmounting image and discarding changes ...
|
|
|
|
dism /Unmount-Wim /MountDir:%IMAGE% /Discard
|
|
|
|
|
2022-12-25 20:52:46 +01:00
|
|
|
echo.
|
2021-03-16 23:23:06 +01:00
|
|
|
echo unmounting boot and discarding changes ...
|
|
|
|
dism /Unmount-Wim /MountDir:%BOOT% /Discard
|
|
|
|
|
|
|
|
echo cleaning up ...
|
|
|
|
dism /Cleanup-Wim
|
2023-01-22 20:09:39 +01:00
|
|
|
dism /Cleanup-Mountpoints
|
2021-03-16 23:23:06 +01:00
|
|
|
|
2023-01-22 20:11:29 +01:00
|
|
|
echo showing status ...
|
|
|
|
dism /Get-MountedWimInfo
|
2023-12-25 22:05:37 +01:00
|
|
|
|