Windows

Windows unattended.xml 安裝 - 驅動器鏡像/軟體突襲

  • November 22, 2017

是否可以通過 Windows Server 2016 上的無人值守答案文件創建鏡像驅動器(raid 1)?如何?如果沒有,可以用powershell完成嗎?如何?

無人值守的設置無法做到這一點。該設置(還)不能管理儲存空間和/或在池中創建動態磁碟。

$$ update: formating fail $$ 我認為應該可以通過安裝後腳本來做到這一點,所以也許你試試這個:

在 Powershell 中創建鏡像池

// Write all pooling-avaiable disks in an array ("$PhysicalDisks").
$PhysicalDisks = Get-StorageSubSystem -FriendlyName "Storage Spaces*" | Get-PhysicalDisk -CanPool $True

// Create new storage pool, add the disks
New-StoragePool -FriendlyName ArrayMcPoolface -StorageSubsystemFriendlyName "Storage Spaces*" -PhysicalDisks $PhysicalDisks

// Add Mirror (Thin Disk)
New-VirtualDisk –FriendlyName ThisIsMyMirrorName -Size <YOUR SIZE IN GB> –StoragePoolFriendlyName ArrayMcPoolface -ProvisioningType Thin

// Online, initialize, create partition, format
Initialize-Disk -VirtualDisk (Get-VirtualDisk -FriendlyName ThisIsMyMirrorName ) -passthru | New-Partition -AssignDriveLetter -UseMaximumSize | Format-Volume

有關管理儲存主題的更多幫助和文件:https ://docs.microsoft.com/en-us/powershell/module/storage/?view=win10-ps

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