Relevance in terms of RAM for tasks

Good afternoon!

Could you please tell me if anyone has encountered a similar problem?

I have tasks that should be run on all PCs all the time, but there is a problem with these tasks for installing heavy software, I want to make sure that those PCs with less than 4 gigabytes of RAM are excluded, how to do this with relevance?

Thank you for your answers!

Try the ram inspector

Q: size of ram / 1024 / 1024 > 4
A: True
T: 0.038 ms
I: singular boolean
1 Like

does not work unfortunately

It actually needs another divide by 1024 I was 1 short to convert bytes to GB

Q: size of ram / 1024 / 1024 / 1024 > 4
A: True

Or use 4094 as the check in MB

Q: size of ram / 1024 / 1024 > 4096
A: True
3 Likes