C
how do you remove winsxs?
That's pretty good! Can you post the preset here?I have a 684mb install.wim file of a 64Bit Windows 7 Ultimate I run my benches on. It has drivers integrated as well. Fully updated before stripping.
When I do that it gives me an error saying Ntlite needs it to modify components.You need to disable Recommended and Servicing Stack compatibility and uncheck the component.
Unfortunately, I didn't save it. Could I just load the wim file back up in NTLite and generate a new preset? What I particularly like about it is I run it in dual boot with Win 10 on a machine with Secure Boot enabled, no problem.That's pretty good! Can you post the preset here?
I found a few files. The final resultant preset I generated is labeled W7ULTx64.xml
Or you can use WinNTSetupTypically, I apply the image to a formatted partition using dism.exe in Windows or WinPE, then use bcdboot to add the partition to the boot menu. Using this method is fast, and circumvents all the setup boot hassles. Of course, you'd need to integrate video drivers first. So, assuming your wim file is on Drive C, and you've created say a formatted 20GB partition on the same drive with assigned letter D, you open the command window, with administrative privileges, and type:
dism /Apply-Image /ImageFile:C:\install.wim /Index:1 /ApplyDir:\
When that completes, you type
bcdboot D:\Windows (This will change your boot menu to the classic black & white menu, with Windows 7 as the 1st option.)
To revert to the Windows 10 menu, type:
bcdboot C:\Windows
You can use this method to quickly install any wim file, skipping the long setup media boot process. All you need to do is know the index number of the image you want to apply.