C
Clanger
Guest
Brilliant, Thank You abbodi 
abbodi, i need to pick your brains again. I am working on a untouched w8.1 pro u3 mounted registry. I am using the following information, is it correct?
HKEY_CLASSES_ROOT. Contains information about registered applications, including file associations and OLE object classes. (This hive displays the same settings as the HKEY_LOCAL_MACHINE\Software\Classes key.)
@echo off
:: Checking administrative rights
reg query "HKU\S-1-5-19" >nul 2>&1 || (
echo "Run as Administrator"
goto :End
)
cd /d "%~dp0"
set "Name=Windows 10 Enterprise LTSC"
set "Description=Windows 10 Enterprise LTSC"
set Edition=EnterpriseS
:: Main
imagex /compress maximum /config wimscript.ini /capture Z: install.wim /flags "%Edition%" "%Name%" "%Description%" /check /verify
:End
echo.
echo Press any key to exit...
pause >nul
goto :eof