Because I made a terrible mistake, I had to completely reinstall Windows 11 on my Asus Vivobook laptop. This Asus laptop have a MyAsus partition and a Recovery partition. I know these partitions are used by MyAsus in WinRe which is a system developed by Asus to add a MyAsus menu to the Windows 11 WinRE.
I have lost this integration because of my manual reinstallation. Because the partitions remain, I may only have to rewrite the Boot Configuration Data to relink the partitions. I am afraid however that it might need more than that...
Does someone have a bcdedit /enum output to share with an Asus Vivobook (I don't think exact model matter in this case) so that I could try to tweak mine with the aid of an example. Or maybe an idea to solve this problem?
Thank you very much!
ReAgentCand the commands in Step #4 (Skip the first command). Does the MyAsus partition have a custom WinRE WIM (it'll have a restore image WIM or Split WIMs [.swm], but if it has a custom WinRE WIM, it may not be namedwinre.wim, but would be ~350MB, possibly larger depending on their recovery software sizes) – JW0914 Mar 15 '24 at 12:10.swm] (WIMs that have been split into specific max size segments, such as 4GB), the user can never append an updated image to it, resulting in extremely old versions of Windows being restored to, often with software bloat, lacking all software, user data, and customizations the user has made since getting the machine. Using your own WIM bypasses all of that, the only inconvenience being it must be captured/applied from WinPE/WinRE. – JW0914 Mar 15 '24 at 12:36Dism /Export-Image /SourceImageFile:"Z:\Base.wim" /SourceIndex:1 /DestinationImageFile:"Z:\PBR.esd" /Compress:Recovery /CheckIntegrity(/SourceIndexwould be the image index within the WIM to be exported to ESD, as WIMs can hold several images - to ascertain:Dism /Get-ImageInfo /ImageFile:Z:\Base.wim) – JW0914 Mar 15 '24 at 13:22