Windows

Powershell 磁碟管理

  • April 27, 2020

歡迎,我對通過 Powershell 管理磁碟有疑問。是否有可能(如在 DISKPART 中) - 將磁碟類型更改為動態, - 創建鏡像磁碟, - 創建 raid-5 卷, - 擴展卷 但是可以使用 Powershell 來做到這一點嗎?我的意思是我需要使用 Powershell 而不是 DISKPART 來做這些事情,但找不到任何解決方案

不幸的是,某些磁碟部分功能未在 PowerShell 中實現。您可以使磁碟聯機、初始化、創建基本卷(GPT 和 MBR)。無法使用 PowerShell 創建動態磁碟。因此,如果不使用 DISKPART,就無法創建跨區、條帶化、鏡像或奇偶校驗卷。

微軟宣傳儲存空間而不是“動態磁碟”。有關專業人士和反對人士的更多資訊 - https://serverfault.com/a/883491/382022

儲存空間可以在 PowerShell 中完全管理。這裡有一些文章(主要針對伺服器版本,但針對客戶端的命令相同):

“使用 PowerShell 管理磁碟” - https://4sysops.com/archives/managing-disks-with-powershell/

儲存空間的可用 cmdlet - https://docs.microsoft.com/en-us/powershell/module/storagespaces/?view=winserver2012r2-ps&viewFallbackFrom=win10-ps

“創建儲存池和儲存空間” - https://lazywinadmin.com/2013/08/ws2012-storage-creating-storage-pool.html

“自動儲存分層” - https://www.starwindsoftware.com/blog/configure-a-resilient-volume-on-windows-server-2016-using-storage-spaces

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