Channel | Publish Date | Thumbnail & View Count | Actions |
---|---|---|---|
| 2023-09-23 02:29:00 | ![]() 11,695 Views |
Glossary:
===================
JBOD= Just a Bunch Of Disks
HBA = Host Bus Adapter
NTFS = New Technology File System
NVMe = Non-Volatile Memory Express
RAID = Redundant Array of Inexpensive Disks or Redundant Array of Independent Disks
ReFS = Resilient File System
SAS = Serial Attached SCSI
iSCSI = Internet Small Computer System Interface
Commands
===================
DISKPART
LIST DISK
SELECT DISK n
LIST DISK
CLEAN
OFFLINE DISK
EXIT
—————–
Get-Disk
Clear-Disk -Number n -RemoveData -RemoveOEM
Set-Disk -Number n -IsOffline $true
—————–
Get-PhysicalDisk -CanPool $true
$poolableDisks=Get-PhysicalDisk `
-CanPool $true | `
Where-Object {$_.size -like /”13*/”}
$poolName=/”Deeper Storage Pool/”
$virtDiskStoreSpaceName=/”Super Deep Space/”
$volumeName=/”Pump Up the Volume/”
New-StoragePool `
-StorageSubSystemFriendlyName /”Windows Storage*/” `
-FriendlyName $poolName -PhysicalDisks ($poolableDisks)
New-VirtualDisk `
-StoragePoolFriendlyName $poolName `
-FriendlyName $virtDiskStoreSpaceName `
-Size 50TB -ResiliencySettingName Mirror `
-ProvisioningType Thin
Get-Disk -SerialNumber *
Initialize-Disk `
-Number 27 `
-PartitionStyle GPT
New-Volume `
-DiskNumber 27 `
-FriendlyName $volumeName `
-FileSystem ReFS -DriveLetter G
Add-PartitionAccessPath `
-DiskNumber 27 `
-PartitionNumber 2 `
-AccessPath c://Mnt2
===================
Applied to:
Windows 11, Windows 10
Chapters
0:00 Introduction
1:57 Initial Configuration
4:40 Drive Failure
5:29 Recovery from a Drive Failure
6:14 Extend and Increase Capacity
8:17 Create a Storage Pool via PowerShell
10:10 Notes
12:36 Conclusion
13:15 Thank you!
Please take the opportunity to connect and share this video with your friends and family if you find it useful.