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
Add support for detecting detailed information about operating system.
Some features might not be present on different OS versions and it's good to have diagnostic tool for that. Features like: SecurityCenter2.
Example in PoweShell:
(Get-WmiObject Win32_OperatingSystem).Version
10.0.19042
(Get-Item "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").GetValue('ProductName')
Windows 10 Pro
(Get-WmiObject Win32_OperatingSystem).BuildNumber
19042
Example on server:
(Get-Item "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").GetValue('ProductName')
Windows Server 2019 Datacenter
The text was updated successfully, but these errors were encountered:
Add support for detecting detailed information about operating system.
Some features might not be present on different OS versions and it's good to have diagnostic tool for that. Features like: SecurityCenter2.
Example in PoweShell:
Example on server:
The text was updated successfully, but these errors were encountered: