I have been digging into this AIO situation with Enterprise skus. It seems that Enterprise simply does not have _default (Retail) licensing information in Windows 10. Also, OEM channel seems to lack LTSB versions. You have 2 options for an AIO: 1) use an ei.cfg set to VL Code: [channel] Volume [VL] 1 2) Copy the Volume license.rtf to a new _default folder in the language you're using for setup (for me it's en-us) This is harder than it sounds because you have to takeown and icacls permissions for each folder you create. When I did it on win81 I had to run these commands 5x per index to copy all of the licensing info to the index: Code: takeown /f c:\mount\windows\system32\en-US\Licenses /r /d y & icacls c:\mount\windows\system32\en-US\Licenses /grant Administrators:F /t xcopy /cey e:\win81slipstream\Licenses\* c:\mount\windows\system32\ Before you copy the info, make sure you make the appropriate folder structure and license.rtf or it won't do much. So there. There's your definitive answer for the ei.cfg issues for Windows 10 build 10240 and AIO versions.
How to create a iso aio with support for uefi/efi bios? The thread of Ambidav tutorial for create aio by Windows 8.1 works for Windows 10 to...?
Something like this: Code: e:\waik6\amd64\oscdimg.exe -o -u2 -udfver102 -bootdata:2#p0,e,bc:\win10\boot\etfsboot.com#pEF,e,bc:\win10\efi\microsoft\boot\efisys.bin -lYourlabelmax32chars c:\win10 c:\temp\AIOfilename.iso
OSCDIMG will gather needed info from etfsboot.com and efisys.bin of the Win 7/8/8.1/10 Setup and create the according ISO.
Yes, it hasn't been updated since 2012. I don't even think you need to use oscdimg. The old cdimage works fine IIRC.
i think you dont need to take ownership before. use xcopy with /E /I /Y /O parameters. it should copy file with ownership without error.
Yes, probably with the /o option. I don't know. I just brute force it a few times. They don't count as system files because they're made to be modified, so I don't worry too much.
i make aio with enterprise ltsb home pro education enterprise i've used this command Code: ===========integrar versiones de 32 bits (x86)========= Dism /Export-Image /SourceImageFile:E:\win\entL86/install.wim /SourceIndex:1 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Enterprise 2015 LTSB" /compress:maximum Dism /Export-Image /SourceImageFile:E:\win\win86/install.wim /SourceIndex:2 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Home" /compress:maximum Dism /Export-Image /SourceImageFile:E:\win\win86/install.wim /SourceIndex:1 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Pro" /compress:maximum Dism /Export-Image /SourceImageFile:E:\win\edu86\install.wim /SourceIndex:1 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Education" /compress:maximum Dism /Export-Image /SourceImageFile:E:\win\ent86\install.wim /SourceIndex:1 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Enterprise" /compress:maximum ======ahora vamos con las de 64 bits (x64)======== Dism /Export-Image /SourceImageFile:E:\win\entL64\install.wim /SourceIndex:1 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Enterprise 2015 LTSB" /compress:maximum Dism /Export-Image /SourceImageFile:E:\win\win64/install.wim /SourceIndex:2 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Home" /compress:maximum Dism /Export-Image /SourceImageFile:E:\win\win64/install.wim /SourceIndex:1 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Pro" /compress:maximum Dism /Export-Image /SourceImageFile:E:\win\edu64\install.wim /SourceIndex:1 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Education" /compress:maximum Dism /Export-Image /SourceImageFile:E:\win\ent64\install.wim /SourceIndex:1 /DestinationImageFile:E:\win\base\sources\install.wim /DestinationName:"Windows 10 Enterprise" /compress:maximum ======agregar ei.cfg======== Code: [EditionID] [Channel] Retail [VL] 0 ======ahora vamos a crear el ISO======== oscdimg -bE:\win\base\boot\etfsboot.com -h -u2 -m -lWindows_10_x86_x64 E:\win\base\ E:\win\Windows_10_x86_x64.iso but when run iso, enteprise and ltsb say dont have licence file how can i solve it? any suggestion about my command? it work in uefi and old bios? thanks
Oi, you guys need to write a tut for us noobs. W7 was easy but all these apps... I'll wait until someone has time to write up a dummy guide. From what I can tell, you have to DL every single version before you can make an AIO or do you just add files to one iso image and copy them over for each edition?
You did a good job with Josh Cell's tool it does the work However since the created media 8 in 1 contains the Enterprise WIM not allowed in the upgrade path the I upgrade path fails even if you use the setup within the source folder A semi AIO (4 in 1) media created from 4 individual Pro & Home / Core WIM s made the in-place upgrade path smoothly So looks like for now the 8 in 1 USB is for clean install boot with the 4 in 1 copied on as an ISO onto the 8 in 1 created USB boot media
Hi All Im having the same probs as @jonaand I have created an Win 10 AIO all everything works except Enterprise (says that licence cannot be loaded) Funny thing is Enterprise LTSB and Pro Vl load ok its only Enterprise. Can anyone help please??
@murphy78 I saw your comments and was confused. The ei.cfg still causes Enterprise to error out. The obtain the licence file, do i have to install Enterprise and run the command?? Ps Just wanted to say i have followed you guide in the past and it works so work, as does your win10 AIO disc!!!
without ei.cfg set to volume license, it will look for a license in the _default directory. Since this directory does not exist, it will give you a license error. You can either set ei.cfg to volume like: Code: [channel] Volume [VL] 1 Or you can copy the folders from enterprise versions Volume folders to _default folders. It looks for them like this (example based on my en-us install index): %windir%\system32\en-us\Licenses\Volume\Enterprise\license.rtf That's for volume. If it is not set via ei.cfg, it will look in: %windir%\system32\en-us\Licenses\_default\Enterprise\license.rtf It's different if you choose a different language for your setup.
@murphy78 I have tried amending my ei.cfg and everything works on VMware but on a real system, enterprise shows the error. I will try to rebuild my iso and if all else fails i shall try to import the licenses in my iso Thank you so, so much for your help Your a true gentleman!!!