Windows unattended.xml 安装 - 驱动器镜像/软件突袭

Windows unattended.xml 安装 - 驱动器镜像/软件突袭

是否可以通过 Windows Server 2016 上的无人值守应答文件创建镜像驱动器 (raid 1)?怎么做?如果不行,可以用 powershell 完成吗?怎么做?

答案1

无人看管安装程序无法执行该操作。安装程序(目前)无法管理存储空间和/或在池中创建动态磁盘。

[更新:格式化失败]

思考应该可以使用安装后脚本来实现这一点,所以也许你可以尝试这个:

在 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

相关内容