From 81d34ccdd851605d7571cf82ed20de0e96069048 Mon Sep 17 00:00:00 2001 From: threeoh6000 Date: Tue, 12 Nov 2024 19:32:30 +0000 Subject: [PATCH] add distro detection for windows --- distro_machine_detection.7 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/distro_machine_detection.7 b/distro_machine_detection.7 index f39c823..c2c908a 100644 --- a/distro_machine_detection.7 +++ b/distro_machine_detection.7 @@ -69,5 +69,9 @@ if [ "$system_type" = "linux" ] && [ -z "$machine" ]; then fi if [ "$system_type" = "windows" ] && [ -z "$machine"] && [ "$hassed" -eq 1 ]; then + if [ "$hasawk" -eq 1 ]; then + distro="$(systeminfo.exe 2>/dev/null | grep -v "BIOS" | grep "OS Name" | awk -F ":" '{print $2}' | tr -s " ")" + distro="$distro $(systeminfo.exe 2>/dev/null | grep -v "BIOS" | grep "OS Version" | awk -F ":" '{print $2}' | tr -s " ")" + fi machine="$(wmic.exe computersystem get Manufacturer,Model | sed -n 2p | head -n 1)" fi