从 powershell 获取远程卷的先前版本的数量

从 powershell 获取远程卷的先前版本的数量

我正在运行 Windows Server 2019 Standard,PowerShell 版本 5.1.17763.316。我有一个远程卷,通过右键单击 -> 属性 -> 以前的版本,我得到了以下信息:

在此处输入图片描述

我想从 powershell 检查该卷有多少个以前的版本,因为我需要它作为自动化的一部分。

我尝试过但没有效果的方法:

  1. volrest- 得到The term 'volrest' is not recognized as the name of a cmdlet, function, script file, or operable program.
  2. vssadmin list shadows /for=\\10.2.10.49\v1- 得到No items found that satisfy the query.
  3. 将卷映射到K:然后vssadmin list shadows /for=K:- 获取Error: Either the specified volume was not found or it is not a local volume.

我怎样才能实现这个目标?

相关内容