the xmls in this cab compatible with w10? i used skiplicense, i did that on desktopappinstaller, integrated the package and found that it didnt run..... cried about license.
Last questions. I did the test run on 23H2, install.wim created with MSGM has 22631.4169 (checked with dism command), which is ok. a) do I have to mount boot and winre to integrate update too? Or integrating update to install.wim is just enough? b) in MSGM I removed nearly everything, and despite the compression, intall.wim has around 5.8GB. I'm using only one index: Pro. For comparison base ISO from UUP dump has around 3.9GB. c) before the operation in \DVD\sources there are bunch of dll's. After that there are none. Is that normal? Thanks.
a) see https://forums.mydigitallife.net/th...isk-ii-ventoy-powered-usb.87036/#post-1794021 b) not sure c.) It is likely in MSMG you selected "Manual Setup" on the Remove System Components Menu if there are no dll's and there is a file called gatherosstate.exe in your sources folder.
I have a question for smart heads here. I have registry key, its random key: [HKEY_LOCAL_MACHINE\COMPONENTS\CanonicalData\Deployments\userexperie..-deployment_31bf3856ad364e35_10.0.26100.1742_b8b69849c30e7e27] And there are inside this key values like : "p!CBS_userexperience-desktop-package~31bf3856ad364e35~amd64~~10.0._2d3dd50cf0d43d31" "s!CBS_userexperience-desktop-package~31bf3856ad364e35~amd64~~10.0._2d3dd50cf0d43d31" "i!CBS_userexperience-desktop-package~31bf3856ad364e35~amd64~~10.0._2d3dd50cf0d43d31" Question is: What p!, s!, i! means?
Hi guys, @LostED Has the official launch of Windows 11 Enterprise LTSC been released in English and Brazilian Portuguese? Sorry my bad english, I'm from Brazil..!!
None of my old uploads work anymore, the host went crazy and now on their new servers the links are made 10day temp, the Massgrave ISO links still work.
Thanks for some info. Can't find much on google. Doing a tool to remove things from windows It's just for me to learn a bit how the things work.
Guys, i have a little problem. So i have example manifest file: amd64_microsoft-windows-a..ep-chxapp.appxsetup_31bf3856ad364e35_10.0.26100.1_none_05aae033ab703f80.manifest I have also registry key that matches that name: HKLM:\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-a..ep-chxapp.appxsetup_31bf3856ad364e35_10.0.26100.1_none_05aae033ab703f80 Problem is that i need to match the same exact thing in: HKLM:\COMPONENTS\DerivedData\VersionedIndex\10.0.26100.1738 (WinBuild.160101.0800)\ComponentFamilies\amd64_microsoft-windows-a..ep-chxapp.appxsetup_31bf3856ad364e35_none_c8ba7229e439fc7d and: HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\amd64_microsoft-windows-a..ep-chxapp.appxsetup_31bf3856ad364e35_none_c8ba7229e439fc7d Can't do it becouse i dont know how to get that last part "c8ba7229e439fc7d". Can't see the connection between those. Anyone know how to get that? I need the exact same numbers(and letters) to match things to delete only those that need to be deleted. HELP!!!.
Speaking of Toolkit.cmd, I see that with update 13.7 "Microsoft.AVCEncoderVideoExtension_8wekyb3d8bbwe.xml" was added to the AppLicense folder, but the .AppxBundle for it is not in the "Apps" folder MSMG has listed online (this is just an oberservation, and no problem, as I can download it myself and already have) but it was not implemented support for AVCEncoderVideoExtension in the Toolkit.cmd script. I see that it is not supported in IMCK 13.7 either, but that is understandable, as it is based on MSMG Toolkit 13.7. When you go through and update Toolkit.cmd, will support for AVCEncoderVideoExtension be added as well?
Didn't read your question just screenshooted it and showed to gemini asking ai if it can help, did it help? Code: " Certainly! I can help you with this. Here's how to get the last part of the registry key, which is the hash of the file: Use a tool like Powershell or a registry editor to access the registry keys. Navigate to the registry key that contains the file name and hash. For example, HKLM:\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-a..ep-chxapp.appxsetup_31bf3856ad364e35_10.0.26100.1_none_05aae033ab703f80. Read the value of the Hash or FileHash registry entry. This will be the hash of the file. Compare the hash to the hash in the other registry keys. If they match, the file is the same. Here is an example of how to do this using Powershell: PowerShell $registryKey = "HKLM:\COMPONENTS\DerivedData\Components\amd64_microsoft-windows-a..ep-chxapp.appxsetup_31bf3856ad364e35_10.0.26100.1_none_05aae033ab703f80" $hash = Get-ItemProperty -Path $registryKey -Name Hash | Select-Object -ExpandProperty Hash Use code with caution. Once you have the hash, you can compare it to the hashes in the other registry keys to find matching files. I hope this helps! Let me know if you have any other questions.