You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* PCX-19793: Add UBR details to device posture
* Move to spaces not tabs
* Rename version extra
* Separate commands for retreiving versions
* Apply suggestions from code review
* fix tabs
---------
Co-authored-by: ranbel <[email protected]>
To check that Windows devices have required security patches and features installed, include an Update Build Revision (UBR) number in the OS version check.
37
+
- **Update Build Revision**: Enter the Windows UBR 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`).
38
+
</TabItem>
35
39
36
-
-**Version extra**: Enter the macOS [Rapid Security Response (RSR)](https://support.apple.com/guide/deployment/rapid-security-responses-dep93ff7ea78/web) version you want devices to match (for example, `(a)`). Be sure to include the parenthesis around the letter.
40
+
<TabItemlabel="macOS">
41
+
-**Rapid Security Response Version**: Enter the macOS [Rapid Security Response (RSR)](https://support.apple.com/guide/deployment/rapid-security-responses-dep93ff7ea78/web) version you want devices to match (for example, `(a)`). Be sure to include the parenthesis around the letter.
42
+
</TabItem>
37
43
38
-
</TabItem> <TabItemlabel="iOS">
44
+
<TabItemlabel="Linux">
45
+
-**Distro name** and **Distro revision**: Enter the Linux distribution you want devices to match (for example, `ubuntu 22.04`). The distro version always matches with an equal-to operator (==) regardless of the **Operator** setting.
39
46
40
-
-**Version extra**: Enter the iOS [Rapid Security Response (RSR)](https://support.apple.com/guide/deployment/rapid-security-responses-dep93ff7ea78/web) version you want devices to match (for example, `(a)`). Be sure to include the parenthesis around the letter.
47
+
-**Patch Version**: Enter the [patch version](#linux) of the kernel. For example, if the kernel is `6.50.0-1007-oem`, enter `1007`.
48
+
</TabItem>
41
49
42
-
</TabItem>
43
-
44
-
<TabItemlabel="Linux">
45
-
46
-
-**Distro name** and **Distro revision**: Enter the Linux distribution you want devices to match (for example, `ubuntu 22.04`). The distro version always matches with an equal-to operator (==) regardless of the **Operator** setting.
47
-
48
-
-**Version extra**: Enter the [patch version](#linux) of the kernel. For example, if the kernel is `6.50.0-1007-oem`, enter `1007`.
49
-
50
-
</TabItem> </Tabs>
50
+
<TabItemlabel="iOS">
51
+
-**Rapid Security Response Version**: Enter the iOS [Rapid Security Response (RSR)](https://support.apple.com/guide/deployment/rapid-security-responses-dep93ff7ea78/web) version you want devices to match (for example, `(a)`). Be sure to include the parenthesis around the letter.
52
+
</TabItem>
53
+
</Tabs>
51
54
52
55
6. Select **Save**.
53
56
@@ -68,13 +71,30 @@ Operating systems display version numbers in different ways. This section covers
68
71
69
72
### Windows
70
73
74
+
Windows version numbers consist of four parts: `Major.Minor.Build.UBR`. For example, `10.0.19045.3803` where:
75
+
-`10.0` is the **Version** (Major.Minor)
76
+
-`19045` is the **Build** number
77
+
-`3803` is the **UBR** (Update Build Revision)
78
+
79
+
To determine the Windows version on your device:
80
+
71
81
1. Open a PowerShell window.
72
-
2.Use the `Get-CimInstance` command to get the version property of the `Win32_OperatingSystem` class.
82
+
2. Getthe **Version** (Major.Minor.Build):
73
83
74
84
```bash
75
85
(Get-CimInstance Win32_OperatingSystem).version
76
86
```
77
87
88
+
This returns the version in the format `Major.Minor.Build` (for example, `10.0.19045`).
0 commit comments