一种获取主板上内存插槽总数的方法
A way to get The total number of Memory slots on a motherboard
我正在编写一个脚本来获取系统信息,我得到了几乎所有的东西,我唯一需要的是一种获取 pc 内存插槽数量的方法,用于内存升级等。大多数计算机 运行 windows 7
我可以使用 powershell 来做到这一点:
$MEM = Get-WmiObject -ClassName Win32_PhysicalMemoryArray
有人知道在 Python 中获得相同结果的方法吗?
使用子进程库。
import subprocess
subprocess.run(["ls", "-l"])
我正在编写一个脚本来获取系统信息,我得到了几乎所有的东西,我唯一需要的是一种获取 pc 内存插槽数量的方法,用于内存升级等。大多数计算机 运行 windows 7
我可以使用 powershell 来做到这一点:
$MEM = Get-WmiObject -ClassName Win32_PhysicalMemoryArray
有人知道在 Python 中获得相同结果的方法吗?
使用子进程库。
import subprocess
subprocess.run(["ls", "-l"])