Skip to content

Commit 6ec800d

Browse files
committed
PCX-19793: Add UBR details to device posture
1 parent 0fb40e5 commit 6ec800d

File tree

1 file changed

+17
-2
lines changed
  • src/content/docs/cloudflare-one/identity/devices/warp-client-checks

1 file changed

+17
-2
lines changed

src/content/docs/cloudflare-one/identity/devices/warp-client-checks/os-version.mdx

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ The OS Version device posture attribute checks whether the version of a device's
4646

4747
- **Version extra**: Enter the [patch version](#linux) of the kernel. For example, if the kernel is `6.50.0-1007-oem`, enter `1007`.
4848

49+
</TabItem>
50+
51+
<TabItem label="Windows">
52+
53+
- **Version extra**: Enter the Windows UBR (Update Build Revision) you want devices to match (for example, `3803`). The UBR is the fourth part of the full Windows version number (for example, in `10.0.19045.3803`, the UBR is `3803`).
54+
4955
</TabItem> </Tabs>
5056

5157
6. Select **Save**.
@@ -67,13 +73,22 @@ Operating systems display version numbers in different ways. This section covers
6773

6874
### Windows
6975

76+
Windows version numbers consist of four parts: `Major.Minor.Build.UBR`. For example, `10.0.19045.3803` where:
77+
- `10.0` is the **Version** (Major.Minor)
78+
- `19045` is the **Build** number
79+
- `3803` is the **UBR** (Update Build Revision)
80+
81+
To determine the Windows version on your device:
82+
7083
1. Open a PowerShell window.
71-
2. Use the `Get-CimInstance` command to get the version property of the `Win32_OperatingSystem` class.
84+
2. Use the `Get-ItemProperty` command to read the registry:
7285

7386
```bash
74-
(Get-CimInstance Win32_OperatingSystem).version
87+
(Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name LCUVer).LCUVer
7588
```
7689

90+
This returns the full version in the format `Major.Minor.Build.UBR` (for example, `10.0.19045.3803`).
91+
7792
### Linux
7893

7994
#### OS version

0 commit comments

Comments
 (0)