It seems like sxsexp32.exe needs to run under Windows 10 to be able to decompress that file.
* InitCabinetDecompressionAPI:* Get Cabinet API decompression function addresses.* Windows 7 lack of their support.
on Win7 HostOS, IF .sys file not compressed (as in Win10_1809_English_x64.iso index 1)sxsexp should only copy file with errorlevel 0 ?
Quote from: Lancelot on December 09, 2018, 10:39:21 AMon Win7 HostOS, IF .sys file not compressed (as in Win10_1809_English_x64.iso index 1)sxsexp should only copy file with errorlevel 0 ?I had a doubt about my mrxsmb10 service tests, I think I understand better now.mrxsmb10.sys seems to be uncompressed in ALL Windows 10 Home, it is also the case in the French or Korean Isos. On the other hand, tsdiscon.exe, used for Switch to Admin, is not available in Home edition.That's why I made the auto selection of the professional image.To have smb1.0 available for all, I silently changed the package with image 1 hard-coded.to be safe, I keep sxsexp32 in the process, to copy the file if it is well uncompressed that works whatever the hostOS.To avoid downloading again, the only change done, is in Features\Network.ScriptCode: [Select]ShellExecute,Hide,%GTools%\wimlib-imagex.exe,"extract #$q%GSource%\sources\install.wim#$q %Image% #$q\Windows\WinSxS\*_microsoft-windows-smb10-minirdr_*\mrxsmb10.sys#$q --dest-dir=#$q%GTemp%#$q --no-acls"==>ShellExecute,Hide,%GTools%\wimlib-imagex.exe,"extract #$q%GSource%\sources\install.wim#$q 1 #$q\Windows\WinSxS\*_microsoft-windows-smb10-minirdr_*\mrxsmb10.sys#$q --dest-dir=#$q%GTemp%#$q --no-acls"Thanks for All Infos JFX, Lancelot