ThinkBou 搜索了一下,搜索到“Surface Device that has a 1-TB drive configuration shows two drives _ Microsoft Learn
”,才想起来Surface Pro 5th Gen 1TB的重新组建RAID 0工具实际是Surface Data Eraser
,我记得当时的版本(根据知识库版本需要>=3.2.45.0
)好像是一个PowerShell脚本(自带运行环境的PE,对应的是Surface Data Eraser (Legacy)
版本),可以参考一下这个。
更新:找到了相关文件,但似乎也没有什么有效信息……
文件位置:Surface_Data_Eraser_v3.2.45.0.msi\cab2.cab\UsbImage.zip\sources\boot.wim\Windows\SurfaceDataEraser\Microsoft\StoragePool-On.ps1
其中部分文件内容为:
if ($PhysicalDisks)
{
$Pool = New-StoragePool -FriendlyName "Boot" -StorageSubsystemFriendlyName * -PhysicalDisks $PhysicalDisks
$VirtualDisk = New-VirtualDisk -FriendlyName Boot -StoragePoolFriendlyName $Pool.FriendlyName -UseMaximumSize -ResiliencySettingName Simple -WriteCacheSize 0
Get-Disk | Where partitionstyle -eq 'raw' | Initialize-Disk -PartitionStyle GPT -PassThru | New-Partition -AssignDriveLetter -UseMaximumSize | Format-Volume -FileSystem NTFS -Confirm:$false | Out-Null
}
我能看出的有效信息只有存储池和存储池虚拟磁盘的FriendlyName
都是Boot
……