Windows 8 build 7973

  • About
  • Blog
  • Projects
  • Help
  • Donate

    Donate icon
    An illustration of a heart shape

  • Contact
  • Jobs
  • Volunteer
  • People

Item Preview

item image #1

لقطة الشاشة 2023-05-23 080130.png

لقطة الشاشة 2023-05-23 081222.png

software

ًWindows 8 Build 7973 fbl Core 1 Kernel Npc

by
Microsoft

This is a build of Windows 8 that was leaked by BetaArchive 2015 only in the x86 architecture.

Product Key : HYF8J-CVRMY-CM74G-RPHKF-PW487

Addeddate
2023-05-24 09:22:01
Identifier
6.2.7973.fbl-core-1-kernel-npc.-110330-1809
Scanner
Internet Archive HTML5 Uploader 1.7.0
Year

2011

comment

Reviews
(1)

There is 1 review for this item. .

SIMILAR ITEMS (based on metadata)

6.2.7973.0.fbl_core1_kernel_npc.110330-1809

Build of Windows 8
OS family Windows NT
Version number 6.2
Build number 7973
Build revision 0
Architecture x86
Build lab fbl_core1_kernel_npc
Compiled on 2011-03-30
Expiration date
Timebomb 2011-07-01 (+93 days)
About dialog

Windows 8 build 7973 (fbl_core1_kernel_npc) is a build of Windows 8, which was uploaded to BetaArchive on 19 September 2015.[1]

Editions and keys[edit | edit source]

Edition / SKU Key
Starter 7Q28W-FT9PC-CMMYT-WHMY2-89M6G
Home Basic YGFVB-QTFXQ-3H233-PTWTJ-YRYRV
Home Premium RHPQ2-RMFJH-74XYM-BH4JX-XM76F
Professional HYF8J-CVRMY-CM74G-RPHKF-PW487
Ultimate D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV

Changes[edit | edit source]

The changes below have only applied to kernel branches at that time.

Kernel[edit | edit source]

The boot screen has been updated to be displayable on larger screen resolutions and to include the fish from the wallpaper of Windows 7 early builds, from 6910 to 7231, along with a boot spinner, albeit at a slightly larger size, compared to later builds. Fonts in kernel also have been changed: thus, the kernel font has switched from Lucida Console to Segoe Mono Boot, and the system crash screen font has been changed from Segoe UI to Segoe WP.

The early crash screen now includes additional parameters, consisting of four different bug codes.

Boot Manager[edit | edit source]

The boot manager entry is now named «Windows 8» as opposed to «Windows 7», in order to differentiate itself from it’s predecessor.

Redpill[edit | edit source]

  • The Start screen is starting to look vastly different from the previous builds, with the design of the tiles being changed to a look that more closely resembles its final design.
  • The Immersive Control Panel has been redesigned.
  • The splash screen for MS Help has been changed to a rather crude one done in Microsoft Paint.
  • The Metro folder icons and thumbnails seen in build 7970 have been disabled and can no longer be enabled.

Bugs and quirks[edit | edit source]

Advanced Vector Extensions CPU bug[edit | edit source]

Some copies of this build will not boot on some CPUs with the Advanced Vector Extensions (AVX) instruction set due to a bug where a CPU triple fault occurs immediately after the boot screen is first displayed. A workaround is discussed later in the article.

This problem can also present itself as three bugchecks occurring one after the other, with different error codes overwriting each other on the screen.

App tiles[edit | edit source]

Some app names (such as Control Panel, Chess Titans, Defragment and Optimize Drives, etc) may be truncated by normal sized tiles.

Upgrade[edit | edit source]

This build does not correctly copy the required installation binaries to the temporary Windows installation boot directory ($WINDOWS.~BT) that are required to proceed to the next phase of the upgrade process. Upgrades must instead be performed using the older setup user located in the installation media’s sources directory or by using another build’s setup components.

Aero[edit | edit source]

Only the top portion of the window frame is blurred when using the Windows Aero and Aero Lite themes, leaving the side borders transparent.

Pseudo language pack[edit | edit source]

In this build, the pseudo language pack is present, and it can be installed. This is caused by improper cleanup of the pseudo language pack while staging the build, resulting in leftover files.

Compiler[edit | edit source]

This is one of the first builds to be produced using a new compiler. However, the problems surrounding it at that time resulted in the build becoming unbootable on certain hardware, as the boot loader does not properly function on modern x86 CPUs, namely Intel processors with the AVX instruction set and a select number of AMD CPUs. As a result, a CPU triple fault occurs resulting in either a crash on a hypervisor or a reboot on real hardware.

Most of the bugs found in this build are a side effect of the new compiler.

Patching winload.exe to run on Intel processors with AVX[edit | edit source]

In order to properly enable SSE instructions for machines using Intel processor with AVX, the 9th bit in Control Register 4 (CR4) must be turned on. The following code is executed and is located in winload.exe at offset A042:

mov     eax, cr4        ; 0f20e0
or      eax, 20h        ; 83c820        -- Turn on 5th bit, PAE (Physical Address Extension)
mov     cr4, eax        ; 0f22e0        -- Store it in CR4
mov     eax, cr0        ; 0f20c0
or      eax, 80000000h  ; 0d00000080    -- Enable paging
mov     cr0, eax        ; 0f22c0

By default the following bits are set in CR0: Protected Mode (PE) (0x00000001), Monitor co-processor (MP) (0x00000002) and Extension type (ET) (0x00000010), with no bits in CR4 set initially, so the need to turn on the 9th SSE bit (i.e. OR with 0x600) should be done, but due to limitation in this piece of code, a rewriting needs to be done and the following approach may be used instead:

mov     eax,620h        ; b820060000
mov     cr4,eax         ; 0f22e0
mov     eax,80000013h   ; b813000080
mov     cr0,eax         ; 0f22c0
nop                     ; 90
nop                     ; 90
nop                     ; 90
nop                     ; 90

As a disclaimer, patching winload.exe with these changes will invalidate integrity checks and thus requires Test Mode to be enabled (by setting NoIntegrityChecks in the BCD to on) in order to boot with the patched winload.exe, as well as ownership of the file in both %systemroot%\System32 and %systemroot%\System32\Boot need to be altered in case file replacement was not possible.

Compatibility[edit | edit source]

VMware Workstation[edit | edit source]

For another workaround on the Intel SSE bug that does not involve patching and disabling security checks, the compatibility level must be set to version 7.x or lower in order to boot this build. In addition, the following block of code must be added to the VMX (virtual machine configuration) file in order to allow this build to boot on modern Intel CPUs:

cpuid.0.ebx = "0110:1000:0111:0100:0111:0101:0100:0001"
cpuid.0.ecx = "0100:0100:0100:1101:0100:0001:0110:0011"
cpuid.0.edx = "0110:1001:0111:0100:0110:1110:0110:0101"
cpuid.1.eax = "0000:0000:0000:0001:0000:0110:0111:0001"

The above configuration is mostly not required if the host machine has an AMD processor, and as such only requires the compatibility version to be changed.

Gallery[edit | edit source]

Setup[edit | edit source]

  • Setup

  • Metro OOBE

Interface[edit | edit source]

  • Logon screen

  • Start menu

  • System Properties

  • Task Manager

  • System reset

  • Aero Glass bug in the Home Basic SKU

Redpill-specific[edit | edit source]

  • Lock screen

  • Metro login screen

  • Start screen

  • Search charm

  • Other Programs

  • Settings charm

  • Charms bar

  • Windows Explorer (Redpilled)

  • Applications folder

  • Modern Task Manager

  • Ditto

  • Advanced Task Manager

  • Immersive Control Panel

  • MS Help splash screen

  • MS Help

Miscellaneous[edit | edit source]

  • Boot screen

  • Early boot error

  • System crash

References[edit | edit source]

  1. https://www.betaarchive.com/forum/viewtopic.php?f=72&t=34922&p=402669


File format
  • DVD
Bootable Yes
Architecture x64, x86
Language
  • English
SKU
  • Home Basic
  • Home Premium
  • Professional
  • Ultimate

Full buildtag 6.2.7973.0 (fbl_grfx_dev1.110330-1700)
BIOS date 31/03/2011
Timebomb 01/07/2011 (+92 days)
Product Key HomeBasic: YGFVB-QTFXQ-3H233-PTWTJ-YRYRV
HomePremium: RHPQ2-RMFJH-74XYM-BH4JX-XM76F
Professional: HYF8J-CVRMY-CM74G-RPHKF-PW487
Ultimate: D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV

Note: These serials do not activate Windows.

Этапы разработки и список сборок Windows 8

Drinko

06:33, 31.01.2011 | #1

Администратор

Достоверно известные сборки, собранные Microsoft в рамках разработки Windows 8


Пурпурным выделены сборки Windows 8, интерфейс которых демонстрировался публично.
Красным выделены сборки Windows 8, которые попали в сеть.

Windows 8 RQM

Windows 8 Milestone 1Windows 8 Milestone 2Windows 8 Milestone 3Windows 8 Developer PreviewWindows 8 Consumer Preview Windows 8 Release Preview Windows 8 RTM

6.2.9200.16384.win8_rtm.120725-1247 — последний финальный билд Windows 8, собранный Microsoft в рамках этапа разработки. На данный момент разработка полностью завершена и все последующие билды будут идти как Post-RTM\Pre-Alfa Win9.

Кроме того, номер дельты (см. ниже) финальных сборок будет изменяться по мере поступления обновлений Windows, а после выхода пакета обновлений (Service Pack) изменению подвергнется основной номер сборки, который, по сложившейся традиции, будет увеличиваться на единицу после установки каждого SP.


Ссылки по теме:

Занимательная нумерология
Немного о Windows Serviceability и ветвях обслуживания

——-

Drinko

14:27, 21.02.2011 | #2

Администратор

6.2.7947.0.winmain_win8m2_escrow.110218-1608 последняя сборка на этапе Milestone 2, теперь ждем сборки Milestone 3

——-

Drinko

04:38, 01.03.2011 | #3

Автор темы

Администратор

А тем временем Microsoft продолжает штамповать одну за другой M2-Escrow и все никак не может перейти к этапу M3:

6.2.7948.0.winmain_win8m2_escrow.110221-1703
6.2.7949.0.winmain_win8m2_escrow.110222-1545
6.2.7950.0.winmain_win8m2_escrow.110223-1820

——-

Drinko

18:35, 01.03.2011 | #4

Автор темы

Администратор

Ну наконец-то MS перешли к этапу M3 — последняя сборка 6.x.7955.0.winmain_win8m3.1103xx-xxxx и пока нет точных данных о ядре, но по слухам оно уже 6.3

——-

Drinko

15:04, 02.03.2011 | #5

Автор темы

Администратор

UPD И все же ядро осталось 6.2

Последний билд 6.2.7956.0.winmain_win8m3.110228-1701

——-

Drinko

02:06, 18.03.2011 | #6

Автор темы

Администратор

6.2.7962.0.winmain.xxxxxx-xx

——-

Drinko

00:04, 19.03.2011 | #7

Автор темы

Администратор

Windows 8 Build 6.2.7964.0

——-

Drinko

18:18, 29.03.2011 | #8

Автор темы

Администратор

Последняя сборка:

6.2.7971.0.?.110324-1900

Напомним, что данная сборка официально доступна избранным тестерам в рамках программы Windows 8 and Server vNext Pre-Release Program на сайте Microsoft Connect

——-

Drinko

15:33, 01.04.2011 | #9

Автор темы

Администратор

Список обновлен. Последний билд 6.2.7974.0.110330-1622

——-

Drinko

13:22, 09.04.2011 | #10

Автор темы

Администратор

Список обновился и пополнился еще двумя сборками

——-

freetushkan

04:27, 16.04.2011 | #11

Почетный

Цитата (Drinko)

Напомним, что данная сборка официально доступна избранным тестерам в рамках программы Windows 8 and Server vNext Pre-Release Program на сайте Microsoft Connect »

А это для истории оставлено?)

freetushkan

00:28, 25.04.2011 | #12

Почетный

А где в списке утёкшая сборка? И почему в списке Milestone 1 версии ядра 6.2?

Drinko

01:50, 25.04.2011 | #13

Автор темы

Администратор

freetushkan, Спасибо за замечания. Список поправил

——-

freetushkan

03:27, 25.04.2011 | #14

Почетный

Drinko, всегда пожалуйста)

freetushkan

Отредактировано freetushkan26.04.2011, 02:01

01:18, 26.04.2011 | #15

Почетный

Ударим псотом по невнимательности:
6.2.7955.0.fbl.srv.wdacxml.110228-1930.a1b6210f837a32cf — Windows 8 M3 build 6.2.7955


6.2.7984.0.fbl_system_licensing.110414-1750 — последний известный билд. Источник: http://twitter.com/AngelWZR

В связи с введением в действие Постановления Правительства Российской Федерации от 14.11.2023 № 1905 т.н. «о запрете популяризации VPN» с 1 марта 2024 года — любое обсуждение способов обхода блокировок и VPN на портале запрещено!

Windows 8 Ultimate M3 build 7973 (fbl_core2_sid_data) In VMware Workstation Pro!

#Windows #Ultimate #build #fblcore2siddata #VMware

“LamputWare”

This Is Free x86 Version Of This Windows 8 Build That Was shared onto the BetaWiki Discord server on 5 June 2022.
Change The BIOS Date To 30-03-2011!
ISO Link:
Product key:
D4F6K-QK3RD-TMVMJ-BBMRX-3MBMV
Song Used: The Sims 2 University…

source

To see the full content, share this page by clicking one of the buttons below

Related Articles

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Windows 10 restart to bios
  • Как сканировать на вирусы в windows 10
  • C windows system32 wuauclt exe
  • После установки windows 7 экран растянутый
  • Mtr команда для windows