首页 > 开发 > PowerShell > 正文

使用PowerShell获取当前主机内存使用量和总量的方法

2020-03-26 19:08:35
字体:
来源:转载
供稿:网友

群里一个小兄弟的提问
用PowerShell来写比c#要简单太多了,WMI直接提供了方法,调用即可。

 #made by kukisama$a=(get-wmiobject -class Win32_PhysicalMemory  -namespace "root/cimv2").Capacity$b=(get-wmiobject -class Win32_PerfFormattedData_PerfOS_Memory  -namespace "root/cimv2").AvailableMBytes$c=$a/1024/1024$d=$c-$bclsecho 您当前总内存$c 可用内存$b 已用内存$d

主机内存使用量,总量,PowerShell

本文出自 “九叔-微软私有云” 博客

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表