Windows

如何使用 Powershell 設置(初始化、分區和格式化)磁碟?

  • November 14, 2012

使用 powershell 設置新磁碟(初始化、分區和格式化)的基本範例是什麼?

步驟 1:列出系統可用的磁碟:

PS C:\> Enter-PSSession -ComputerName 192.168.1.193 -Credential administrator
PS C:\> Get-Disk

Number Friendly Name                            OperationalStatus                    Total Size Partition Style
------ -------------                            -----------------                    ---------- ---------------
0      Red Hat VirtIO SCSI Disk Device          Online                                    20 GB MBR
1      Red Hat VirtIO SCSI Disk Device          Offline                                    2 GB RAW

第 2 步:初始化磁碟:

[192.168.1.193]: PS C:\Users\Administrator\Documents> Initialize-Disk -Number 1

磁碟現在將在重複時顯示分區樣式 (GBP) Get-Disk

1      Red Hat VirtIO SCSI Disk Device   Online    2 GB GPT

第 3 步:設置分區

PS C:\> New-Partition -DiskNumber 1 -UseMaximumSize -AssignDriveLetter


Disk Number: 1

PartitionNumber  DriveLetter Offset        Size     Type
---------------  ----------- ------        ----     ----
2                D           33619968      1.97 GB  Basic

第 4 步:格式化卷:

PS C:\> Format-Volume -DriveLetter D

Confirm
Are you sure you want to perform this action?
Warning, all data on the volume will be lost!
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [?] Help (default is "Y"): Y

DriveLetter       FileSystemLabel  FileSystem       DriveType        HealthStatus        SizeRemaining             Size
-----------       ---------------  ----------       ---------        ------------        -------------             ----
D                                  NTFS             Fixed            Healthy                   1.92 GB          1.97 GB

請參閱儲存 cmdlet以了解有關使用 powershell 進行磁碟管理的更多資訊。

引用自:https://serverfault.com/questions/448722