From 99dfb832eb679d230f1b22d96edc86bf88055a7a Mon Sep 17 00:00:00 2001 From: Deluan Date: Sat, 21 Dec 2024 14:54:14 -0500 Subject: [PATCH] fix(insights): get Windows version Signed-off-by: Deluan --- core/metrics/insights_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/metrics/insights_windows.go b/core/metrics/insights_windows.go index a2584ce54..aad1670d8 100644 --- a/core/metrics/insights_windows.go +++ b/core/metrics/insights_windows.go @@ -8,7 +8,7 @@ import ( ) // Ex: Microsoft Windows [Version 10.0.26100.1742] -var winVerRegex = regexp.MustCompile(`Microsoft Windows \[Version ([\d\.]+)\]`) +var winVerRegex = regexp.MustCompile(`Microsoft Windows \[.+\s([\d\.]+)\]`) func getOSVersion() (version string, _ string) { cmd := exec.Command("cmd", "/c", "ver")