在 PowerShell 脚本中,我尝试使用以下命令获取每秒的页面错误数:
(Get-WmiObject Win32_PerfFormattedData_PerfOS_memory).PageFaultsPersec
不幸的是,它总是读取相同的值,因为我没有 Refresh() 性能计数器。
如何通过 PowerShell 向性能数据发送 Refresh() 方法?
在 PowerShell 脚本中,我尝试使用以下命令获取每秒的页面错误数:
(Get-WmiObject Win32_PerfFormattedData_PerfOS_memory).PageFaultsPersec
不幸的是,它总是读取相同的值,因为我没有 Refresh() 性能计数器。
如何通过 PowerShell 向性能数据发送 Refresh() 方法?