move to W10 LTSC ...
This commit is contained in:
parent
87648252da
commit
570a3014d3
@ -1,8 +1,8 @@
|
|||||||
@echo off
|
@echo off
|
||||||
set SOURCES=%SystemDrive%\TEMP\W10\sources
|
set SOURCES=%SystemDrive%\TEMP\W10\sources
|
||||||
set WIM=%SOURCES%\install.wim
|
set WIM=%SOURCES%\install.wim
|
||||||
set W10PRO=%SOURCES%\w10pro.wim
|
set W10WIM=%SOURCES%\w10.wim
|
||||||
set STATEFILE=%SOURCES%\w10pro.txt
|
set STATEFILE=%SOURCES%\w10done.txt
|
||||||
|
|
||||||
if EXIST %STATEFILE% (
|
if EXIST %STATEFILE% (
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ if EXIST %STATEFILE% (
|
|||||||
if EXIST %WIM% (
|
if EXIST %WIM% (
|
||||||
|
|
||||||
rem cleanup ...
|
rem cleanup ...
|
||||||
del /F %W10PRO% 1>nul 2>nul
|
del /F %W10WIM% 1>nul 2>nul
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
echo [%0] INFO: found %WIM%
|
echo [%0] INFO: found %WIM%
|
||||||
@ -25,12 +25,12 @@ if EXIST %WIM% (
|
|||||||
echo [%0] INFO: exporting image from %WIM% ...
|
echo [%0] INFO: exporting image from %WIM% ...
|
||||||
dism /Export-Image ^
|
dism /Export-Image ^
|
||||||
/SourceImageFile:%WIM% ^
|
/SourceImageFile:%WIM% ^
|
||||||
/DestinationImageFile:%W10PRO% ^
|
/DestinationImageFile:%W10WIM% ^
|
||||||
/SourceName:"Windows 10 Pro" ^
|
/SourceIndex:1 ^
|
||||||
/Compress:Max ^
|
/Compress:Max ^
|
||||||
/CheckIntegrity
|
/CheckIntegrity
|
||||||
|
|
||||||
if %ERRORLEVEL% NEQ 0 (
|
if NOT EXIST %W10WIM% (
|
||||||
echo [%0] ERROR: while extracting %WIM%
|
echo [%0] ERROR: while extracting %WIM%
|
||||||
exit /b
|
exit /b
|
||||||
)
|
)
|
||||||
@ -39,8 +39,8 @@ if EXIST %WIM% (
|
|||||||
attrib -R %WIM% 2>nul
|
attrib -R %WIM% 2>nul
|
||||||
del /F %WIM% 1>nul 2>nul
|
del /F %WIM% 1>nul 2>nul
|
||||||
|
|
||||||
echo [%0] INFO: renaming %W10PRO% ...
|
echo [%0] INFO: renaming %W10WIM% ...
|
||||||
move /Y %W10PRO% %WIM%
|
move /Y %W10WIM% %WIM%
|
||||||
echo all done >%STATEFILE%
|
echo all done >%STATEFILE%
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
|
@ -18,7 +18,7 @@ echo setting write access for install.wim ...
|
|||||||
attrib -R %SOURCES%\install.wim 2>nul
|
attrib -R %SOURCES%\install.wim 2>nul
|
||||||
|
|
||||||
echo mounting install.wim to %IMAGE% ...
|
echo mounting install.wim to %IMAGE% ...
|
||||||
dism /Mount-IMAGE /IMAGEFile:%SOURCES%\install.wim /Name:"Windows 10 Pro" /MountDir:%IMAGE% || (
|
dism /Mount-IMAGE /IMAGEFile:%SOURCES%\install.wim /Index:1 /MountDir:%IMAGE% || (
|
||||||
echo.
|
echo.
|
||||||
echo ERROR while mounting WIM file! Please unmount orphaned images:
|
echo ERROR while mounting WIM file! Please unmount orphaned images:
|
||||||
dism /Get-MountedWimInfo
|
dism /Get-MountedWimInfo
|
||||||
|
Loading…
Reference in New Issue
Block a user