tests/Test-HostMemory.ps1

function Test-HostMemory {
    [CmdletBinding()]
    param (
        [parameter()][string] $TestName = "Test-HostMemory",
        [parameter()][string] $TestGroup = "configuration",
        [parameter()][string] $Description = "Verify site system has at least minimum required memory",
        [parameter()][hashtable] $ScriptParams
    )
    try {
        [System.Collections.Generic.List[PSObject]]$tempdata = @() # for detailed test output to return if needed
        $stat = "PASS"
        $msg  = "No issues found"
        if ($ScriptParams.Credential) {
            $cs = New-CimSession -ComputerName $ScriptParams.ComputerName -Authentication Negotiate -Credential $ScriptParams.Credential
            $SystemInfo = Get-CimInstance -CimSession $cs -ClassName Win32_OperatingSystem -ErrorAction SilentlyContinue | Select-Object Name, TotalVisibleMemorySize, FreePhysicalMemory
            $cs.Close()
        } else {
            $SystemInfo = Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName $ScriptParams.ComputerName -ErrorAction SilentlyContinue | Select-Object Name, TotalVisibleMemorySize, FreePhysicalMemory
        }
        $TotalRAM = $SystemInfo.TotalVisibleMemorySize/1MB
        $FreeRAM  = $SystemInfo.FreePhysicalMemory/1MB
        $UsedRAM  = $TotalRAM - $FreeRAM
        $RAMPercentFree = ($FreeRAM / $TotalRAM) * 100
        $TotalRAM = [Math]::Round($TotalRAM, 2)
        $FreeRAM  = [Math]::Round($FreeRAM, 2)
        $UsedRAM  = [Math]::Round($UsedRAM, 2)
        $RAMPercentFree = [Math]::Round($RAMPercentFree, 2)
        if ($TotalRAM -lt 24GB) {
            $stat = "FAIL"
            $msg  = "$($TotalRam) GB is below the minimum recommended 24 GB"
            $res | Foreach-Object {$tempdata.Add("Total=$($TotalRam),Expected=24")}
        } elseif ($RAMPercentFree -lt 10) {
            $stat = "FAIL"
            $msg  = "Less than 10 percent memory is available"
            $res | Foreach-Object {$tempdata.Add("PctFree=$($RAMPercentFree),Expected=10")}
        }
    }
    catch {
        $stat = 'ERROR'
        $msg  = $_.Exception.Message -join ';'
    }
    finally {
        Write-Output $([pscustomobject]@{
            TestName    = $TestName
            TestGroup   = $TestGroup
            TestData    = $tempdata
            Description = $Description
            Status      = $stat 
            Message     = $msg
            Credential  = $(if($ScriptParams.Credential){$($ScriptParams.Credential).UserName} else { $env:USERNAME })
        })
    }
}