From 72b1203b26489041cc0d6f4fcc77defbbdb23546 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 22 Jul 2024 19:27:19 +0200 Subject: [PATCH] Update check-ram.ps1 --- scripts/check-ram.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-ram.ps1 b/scripts/check-ram.ps1 index f7ac6699..3e3636c3 100755 --- a/scripts/check-ram.ps1 +++ b/scripts/check-ram.ps1 @@ -5,7 +5,7 @@ This PowerShell script queries the status of the installed RAM memory modules and prints it. .EXAMPLE PS> ./check-ram.ps1 - ✅ 16GB DDR4 RAM @ 3200MHz by Micron (in CPU0/CPU0-DIMM3 @ 1.2V) + ✅ 16GB DDR4 RAM at 3200MHz/1.2V in CPU0/CPU0-DIMM3 by Micron .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -69,7 +69,7 @@ try { [float]$Voltage = $Bank.ConfiguredVoltage / 1000.0 $Manufacturer = $Bank.Manufacturer $Location = "$($Bank.BankLabel)/$($Bank.DeviceLocator)" - Write-Host "✅ $Capacity $Type @ $($Speed)MHz by $Manufacturer (in $Location @ $($Voltage)V)" + Write-Host "✅ $Capacity $Type at $($Speed)MHz,$($Voltage)V in $Location by $Manufacturer" } } exit 0 # success