ฉันจะตั้งค่า (เตรียมใช้งาน, แบ่งส่วนและจัดรูปแบบ) ดิสก์โดยใช้ Powershell ได้อย่างไร


คำตอบ:


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

ตอนนี้ดิสก์จะแสดงลักษณะของพาร์ติชัน (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

ดูcmdlets หน่วยความจำเพื่อค้นหาเพิ่มเติมเกี่ยวกับการจัดการดิสก์โดยใช้ powershell

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.