在 PowerShell 中如何获取没有卷路径的 Get-WBVolume?

在 PowerShell 中如何获取没有卷路径的 Get-WBVolume?

我正在尝试从备份策略中删除死卷,但要删除它,您必须在删除命令中指定它。但如果没有卷路径,我不知道如何指定要删除的卷...

我该如何获取没有卷路径的卷的 WBVolume?这是我拥有的卷信息:

VolumeLabel :
MountPath   :
MountPoint  : \\?\Volume{b193b193-0000-0000-0000-406b3b000000}
FileSystem  : NTFS
Property    : Critical, ValidSource
FreeSpace   : 367382528
TotalSpace  : 854589440

我正在尝试将其从 WBPolicy 中删除,但要删除它,必须指定如下内容: $Volume = Get-WBVolume -VolumePath "?"

因此像这样的 cmdlet 将会起作用Remove-WBVolume -Policy $Policy -Volume $Volume

答案1

要检索 mountpath 和 volumelabel 中没有值的 WBVolume,您可以使用以下命令:

Get-WBVolume -AllVolumes | where {$_.mountpath -lt 0 -and $_.volumelabel -lt 0}

然后你应该能够将其导入 Remove-WBVolume

相关内容