Skip to content

Fix documentation of minor versions #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions Win32.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1139,8 +1139,8 @@ Currently known values for ID MAJOR MINOR and BUILD are as follows:
Windows Server 2008 R2 2 6 1 -
Windows 8 2 6 2 -
Windows Server 2012 2 6 2 -
Windows 8.1 2 6 2 -
Windows Server 2012 R2 2 6 2 -
Windows 8.1 2 6 2/3 -
Windows Server 2012 R2 2 6 2/3 -

Windows 10 2 10 0 -
Windows Server 2016 2 10 0 14393
Expand All @@ -1165,6 +1165,15 @@ The version numbers for Windows 8 and Windows Server 2012 are
identical; the PRODUCTTYPE field must be used to differentiate between
them.

The minor version number for Windows 8.1 and Windows Server 2012 R2
depends on the running Perl version. Perl itself has been manifested
for Windows 8.1 and Windows 10 starting from 5.24.0 (or more precisely
from 5.23.3, if one takes development releases into account). Older
releases of perl return the minor version as 2, while newer releases
return it as 3. See Microsoft's L<Operating System
Version|https://docs.microsoft.com/en-us/windows/win32/sysinfo/operating-system-version>
documentation for more details.

For modern Windows releases, the major and minor version numbers are
identical. The PRODUCTTYPE field must be used to differentiate between
Windows 10 and Server releases. The BUILD field is used to
Expand Down