首页 > 电脑专区 > windows教程 >

Windows10 如何使用命令行查看CPU使用率和RAM使用率

windows教程 2021-10-05 09:31:20

有时候我们使用Windows图形界面查看CPU和内存使用率并不方便,比如说访问远程电脑时,这时候我们可以使用Windows自带的PowerShell 查看:

Windows10使用命令行查看CPU使用率和RAM使用率

 

  1. 查看CPU:
Get-WmiObject win32_processor | Measure-Object -property LoadPercentage -Average | Select Averagechch

Windows10使用命令行查看CPU使用率和RAM使用率

 

  1. 查看内存使用率:
Get-WmiObject win32_OperatingSystem |%{"Total Physical Memory: {0}KB`nFree Physical Memory : {1}KB`nTotal Virtual Memory : {2}KB`nFree Virtual Memory : {3}KB" -f $_.totalvisiblememorysize, $_.freephysicalmemory, $_.totalvirtualmemorysize, $_.freevirtualmemory}

Windows10使用命令行查看CPU使用率和RAM使用率

 

可以使用PowerShell远程登陆其他主机,并运行以上程序,即可以查看远方主机使用情况。


在这里也说下远程登陆的方法:

  1. 本机用管理员权限启动 PowerShell,执行下面的命令:
 Enable-PSRemoting –Force

2.远程主机运行:

Enable-PSRemoting -Force
Set-Item -Path WSMan:\localhost\client\trustedhosts -Value * -Force
Disable-PSRemoting -forcezh

这一步设置信任主机为“*”,Powershell将允许你与任何IP或机器名联系,公网慎用。不用时你可以运行以下命令关闭:

Disable-PSRemoting 

3.连接远程主机:

Enter-PSSession 192.168.3.1 -Credential abc(密码)\administrator(账户)

标签: win10查看CPU使用率win10查看RAM使用率

office教程网 Copyright © 2016-2020 https://www.office9.cn. Some Rights Reserved.