Y hay quien dice: ¡YO QUIERO MI RYyZEN EN WINDOWS 7 y 8!Debido a que Microsoft corto el soporte de RyZEN en sus sistemas Windows 7 y 8, algunas personas han puesto a trabajar en como recuperarlo y han sacado un parche.
Mas detalles sobre lo que hizo muicrosof para RyZEN y win7/8
hilo_zen-listos-para-pruebas-y-sus-reviews-por-gente-del-foro_2181232_s1775#p1743401915Aqui el lugar de donde se puede descargar el parche que permite usar RyZEN en win7/8:
https://github.com/zeffy/kb4012218-19Research paper and patches for Windows updates KB4012218, KB4012219 and others (too long to list here) PrefaceAfter reading this article on gHacks, I was inspired to look into these new rollup updates that Microsoft released on March 16. Among other things included in these updates, the changelog mentions the following:
Enabled detection of processor generation and hardware support when PC tries to scan or download updates through Windows Update.
Which is essentially a giant middle finger to anyone who dare not "upgrade" to the steaming pile of garbage known as Windows 10.
There have even been people with Intel and AMD systems from 2015 who have allegedly been locked out of Windows Update because of these updates!
SolutionsIsCPUSupported(void) is only ever called by IsDeviceServiceable(void), which is called by a few other functions. Luckily, there are a couple easy ways to kill this CPU check.
Patch wuaueng.dll and change dword_600002EE948 (see this line) which is at file offset 0x26C948, from 0x01 to 0x00. This makes IsDeviceServiceable(void) jump over its entire body and return 1 (supported CPU) immediately. This is my preferred method. Note: these offsets are only for the Windows 7 x64 version.
Patch wuaueng.dll and nop out all the instructions highlighted here in IsDeviceServiceable(void), this will enable the usage of the ForceUnsupportedCPU of type REG_DWORD under the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Test\Scan (you will most likely have to create this registry key). Set this value to 0x00000001 to force unsupported CPUs, and back to 0x00000000 to change the behaviour back to default. You will probably need to restart your PC or restart the wuauserv service in order for changes to apply. This behaviour is an internal test feature used by Microsoft and could be removed in future updates, so I will not be providing xdelta files for it.
Caveats You have to apply a new patch whenever wuaueng.dll gets updated.
SFC scan errors will most likely occur as it will believe the integrity of the system has been compromised.
Descarga:
https://github.com/zeffy/kb4012218-19/releases.