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

powershell을 사용한 디스크 관리에 대한 자세한 내용은 스토리지 cmdlet 을 참조하십시오 .

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.