Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UEM-Samples/Sensors/Windows/system_totalphysicalmemory.ps1 - Sensor fails because Integer Response type doesn't allow decimal points #306

Open
jdtomchick1194 opened this issue Apr 17, 2024 · 0 comments
Labels

Comments

@jdtomchick1194
Copy link

Describe the bug

When deploying this Sensor with a Response Data Type: Integer , an error occurs as Ints don't support decimal points.

image

Reproduction steps

1.Deploy Sensor with suggested values
2. Some\all devices fail
3.
...

Expected behavior

I was able to work around this with the following code addition to round the value, there may be a better long term fix

$totalphysicalmemory = (Get-WmiObject -Class win32_computersystem).TotalPhysicalMemory

$ram = [math]::Round(([decimal]($totalphysicalmemory)/1GB),2)

$ram = [math]::Round($ram)

return $ram

Additional context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant