windowsbuilds.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package osversion
  2. // Windows Client and Server build numbers.
  3. //
  4. // See:
  5. // https://learn.microsoft.com/en-us/windows/release-health/release-information
  6. // https://learn.microsoft.com/en-us/windows/release-health/windows-server-release-info
  7. // https://learn.microsoft.com/en-us/windows/release-health/windows11-release-information
  8. const (
  9. // RS1 (version 1607, codename "Redstone 1") corresponds to Windows Server
  10. // 2016 (ltsc2016) and Windows 10 (Anniversary Update).
  11. RS1 = 14393
  12. // V1607 (version 1607, codename "Redstone 1") is an alias for [RS1].
  13. V1607 = RS1
  14. // LTSC2016 (Windows Server 2016) is an alias for [RS1].
  15. LTSC2016 = RS1
  16. // RS2 (version 1703, codename "Redstone 2") was a client-only update, and
  17. // corresponds to Windows 10 (Creators Update).
  18. RS2 = 15063
  19. // V1703 (version 1703, codename "Redstone 2") is an alias for [RS2].
  20. V1703 = RS2
  21. // RS3 (version 1709, codename "Redstone 3") corresponds to Windows Server
  22. // 1709 (Semi-Annual Channel (SAC)), and Windows 10 (Fall Creators Update).
  23. RS3 = 16299
  24. // V1709 (version 1709, codename "Redstone 3") is an alias for [RS3].
  25. V1709 = RS3
  26. // RS4 (version 1803, codename "Redstone 4") corresponds to Windows Server
  27. // 1803 (Semi-Annual Channel (SAC)), and Windows 10 (April 2018 Update).
  28. RS4 = 17134
  29. // V1803 (version 1803, codename "Redstone 4") is an alias for [RS4].
  30. V1803 = RS4
  31. // RS5 (version 1809, codename "Redstone 5") corresponds to Windows Server
  32. // 2019 (ltsc2019), and Windows 10 (October 2018 Update).
  33. RS5 = 17763
  34. // V1809 (version 1809, codename "Redstone 5") is an alias for [RS5].
  35. V1809 = RS5
  36. // LTSC2019 (Windows Server 2019) is an alias for [RS5].
  37. LTSC2019 = RS5
  38. // V19H1 (version 1903, codename 19H1) corresponds to Windows Server 1903 (semi-annual
  39. // channel).
  40. V19H1 = 18362
  41. // V1903 (version 1903) is an alias for [V19H1].
  42. V1903 = V19H1
  43. // V19H2 (version 1909, codename 19H2) corresponds to Windows Server 1909 (semi-annual
  44. // channel).
  45. V19H2 = 18363
  46. // V1909 (version 1909) is an alias for [V19H2].
  47. V1909 = V19H2
  48. // V20H1 (version 2004, codename 20H1) corresponds to Windows Server 2004 (semi-annual
  49. // channel).
  50. V20H1 = 19041
  51. // V2004 (version 2004) is an alias for [V20H1].
  52. V2004 = V20H1
  53. // V20H2 corresponds to Windows Server 20H2 (semi-annual channel).
  54. V20H2 = 19042
  55. // V21H1 corresponds to Windows Server 21H1 (semi-annual channel).
  56. V21H1 = 19043
  57. // V21H2Win10 corresponds to Windows 10 (November 2021 Update).
  58. V21H2Win10 = 19044
  59. // V21H2Server corresponds to Windows Server 2022 (ltsc2022).
  60. V21H2Server = 20348
  61. // LTSC2022 (Windows Server 2022) is an alias for [V21H2Server]
  62. LTSC2022 = V21H2Server
  63. // V21H2Win11 corresponds to Windows 11 (original release).
  64. V21H2Win11 = 22000
  65. // V22H2Win10 corresponds to Windows 10 (2022 Update).
  66. V22H2Win10 = 19045
  67. // V22H2Win11 corresponds to Windows 11 (2022 Update).
  68. V22H2Win11 = 22621
  69. )