PowerShell 获取磁盘使用情况

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PowerShell 获取磁盘使用情况相关的知识,希望对你有一定的参考价值。

<#
 .Name
    get-diskinfo
 .Example
    PS C:\sicrping> .\diskinfo.ps1 -computername localhost

        DeviceID FreeDB SizeDB
        -------- ------ ------
        C:            7     48
        D:           37     63
        E:          693    931

 #>
 
 [cmdletbinding()]
 param(
        [string]$computername=‘‘

 )
Get-WmiObject -ComputerName $computername -class win32_logicaldisk | select DeviceID,`
@{n=‘FreeDB‘;e={$_.freespace / 1gb -as [int]}},`
@{n=‘SizeDB‘;e={$_.size / 1gb -as [int]}}


本文出自 “汜水流年_” 博客,请务必保留此出处http://timefiles.blog.51cto.com/8475652/1847366

以上是关于PowerShell 获取磁盘使用情况的主要内容,如果未能解决你的问题,请参考以下文章

如何使用PowerShell获取物理磁盘的信息

使用PowerShell 监控运行时间和连接情况

使用windows power shell创建DS13服务器

powershell 获取本地计算机磁盘状态

如何使用 Powershell 识别磁盘 Optane 或 Raid 类型?

PowerShell ISE:调试从 power-shell 脚本调用的另一个 power-shell 脚本