I run I "slmgr-ipk **** P-**** DG ****-V ****-H ****" "Slmgr-ilc *: \ HP.xrm-ms" But it has not been authenticated Capture screen upload at a later date and authentication in F7BIOS, because it is in use currently. Thank you.
I've F7BIOS and capture F8a. SLIC table it seems not to be created F8a. Can not be much more than this in my skills. View attachment 27850 View attachment 27851
Good evening urie I have F8aMod prepared in accordance with your advice. View attachment 27859 But it becomes such a result, it has not been authenticated. So I tried the way of previous. untick - Only alter RSDT and XSDT tables - Only alter tables in main ACPI module Method: Module View attachment 27860 It has been successfully authentication result. View attachment 27861 Thank you for advice. Was saved.
This MSI BIOS is crazy. 1. Extended module headers with wrong sizes, hidden in pad-file with "FFFFFFFF-FFFF-..." GUID. That structure breaks UEFI PI specifications twice in only 0x38 bytes of data. 2. EFI1.1-compressed file that causes memory corruption in TianoDecompress routine. I simply can't understand why Tiano and EFI1.1 are using the same 0x01 compression type and how can I separate one from another. *facepalm*
I have made a test file for this bug. Hope we can find a working method to separate EFI1.1 from Tiano without catching memory corruptions in poorly written 10 years old Intel code. View attachment 28137
Found the source of the crash, it's in EfiDecompress.c, this part of MakeTable function : Code: if (Len <= TableBits) { for (Index = Start[Len]; Index < NextCode; Index++) { Table[Index] = Char; } ... Table array has 2^TableBits size (which can be 8 or 12), but writing to Table[256] or Table[4096] will corrupt the heap. Index variable above will become exactly 256 on that file, triggering the crash. It can be fixed by adding a check like this: Code: for (Index = Start[Len]; Index < NextCode; Index++) { // Check to prevent possible heap corruption if (Index >= (UINT16) (1U << TableBits)) return (UINT16)BAD_TABLE; Table[Index] = Char; } It's not a good idea to make patches like that, I know, but it works.
No, I'm not. Maybe a bit closer to low level, but nothing more. I think it must somehow be reported to TianoCore developers, because FFS files like that are like time bombs for BIOS. I bet no one knows now what Tiano algorithm is all about, because of that "//Ported from ASM routine" commentary. Thanks for finding this gem, Serg008.
Acer xc600 Dear all, I am trying to get Windows 7 Enterprise to install on an ACER XC600. The device was bought without windows, but I have enough licenses of windows lying around. I am trying to install Windows 7 Enterprise and activate it using KMS. KMS activation checks the SLIC table, I guess, and refuses to install because there is a table, but it does not have a value for any OEM license in it. I think I have two options: Either get rid of the SLIC table altogether. In that case, I understand, KMS activation should just work. Or get an SLIC table with a valid OEM entry in it. I can use this tool, and if I put in ACER SLIC and SLP files (containing the string "AcerSystem") as well as the "RW Everything report" and check "module", it will generate a BIOS for me. What I do not understand is why the field for "Key File" is greyed out. How can the resulting SLIC table have a valid entry for, say, Windows 7 Professional, if I do not put in a product key? What am I missing? Have not tried flashing the resulting BIOS yet. Any help is appreciated... Thx...
SLIC tables do not carry keys. Only MSDM ones do, and MSDM is for Windows 8. All you need is a valid SLIC table (pubkey, marker).
Thanks. So if I use the generated BIOS, and do not brick it, Win 7 Enterprise should activate via KMS? Thanks!
I want to update the BIOS on an MPC laptop from SLIC 2.0 to 2.1. Can I do that and keep the data in the BIOS which identifies it as an MPC? I installed a multi-OEM detecting Win 7 and it saw it as an Acer, which is odd because it's made by Samsung and some of the identifying code in the BIOS is $SAMSUNGPC. So far I've yet to find a version of WinPhlash that will work on Win 7 Ultimate x64. Found a version that's supposed to work, but it quits with an error message about updating DXE drivers. I enabled the Administrator account and logged in with it. No difference in how it doesn't work.
No luck at all with MPC BIOS modding. Seems like I'm the only person wanting to mod any MPC BIOS to SLIC 2.1.