Powershell读硬盘及分区


支持WIN8.1/Server2012R2。

硬盘及分区在新版本的WINDOWS中得到了很大提升和简化。

让我们来做个小小演示,下面代码能列出你的硬盘:

PS> Get-Disk

这个代码能得到你的分区:

PS> Get-Partition

接下来两个命令能查看“Storage”中的方法:

PS> Get-Command -Name Get-Disk | Select-Object -ExpandProperty Module

ModuleType Version    Name                                ExportedCommands        
---------- -------    ----                                ----------------        
Manifest   2.0.0.0    Storage                             {Add-InitiatorIdToMas... 
 

下面还可以获得更多的存储命令:

PS> Get-Command -Module storage

CommandType     Name                                               ModuleName     
-----------     ----                                               ----------     
Alias           Flush-Volume                                       Storage        
Alias           Initialize-Volume                                  Storage        
Alias           Write-FileSystemCache                              Storage        
Function        Add-InitiatorIdToMaskingSet                        Storage        
Function        Add-PartitionAccessPath                            Storage        
Function        Add-PhysicalDisk                                   Storage      
(...)

原文地址: Reading Disks and Partitions

本文链接: https://www.pstips.net/reading-disks-and-partitions.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!

发表评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注