如何使用Powershell设置(初始化,分区和格式化)磁盘?


Answers:


17

步骤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

现在,重复Get-Disk以下操作时,磁盘将显示分区样式(GBP):

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

请参阅storage cmdlet,以了解有关使用Powershell进行磁盘管理的更多信息。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.