### Proposal Details The [windows.RtlGetNtVersionNumbers](https://pkg.go.dev/golang.org/x/sys@v0.18.0/windows#RtlGetNtVersionNumbers) function is not documented in the Microsoft docs. People should use [windows.RtlGetVersion](https://pkg.go.dev/golang.org/x/sys@v0.18.0/windows#RtlGetVersion) instead, which is properly documented in [here](https://learn.microsoft.com/en-us/windows/win32/devnotes/rtlgetversion). I propose to mark `windows.RtlGetNtVersionNumbers` as deprecated, mentioning `windows.RtlGetVersion` as an alternative. See [CL 571015](https://go-review.googlesource.com/c/go/+/571015) as an example of how to replace `windows.RtlGetNtVersionNumbers` with `windows.RtlGetVersion`. @golang/windows