如何以编程方式取消选中“在 VSS 中仅存储最新版本属性”选项为了一个项目?

发布于 2024-11-07 14:25:50 字数 194 浏览 0 评论 0原文

我在 VSS 2005 中遇到问题,VSS 中有一个项目,其中有多个文件夹文件,并且大多数 2000 年左右的文件都检查了其属性“仅存储最新版本”。

我想将所有这 2000 个文件属性“仅存储最新版本”更改为未选中,以便 VSS 保留所有这些文件的先前版本。

是否可以通过单个命令来递归地取消选中项目中所有文件的此选项?

谢谢

I have an issue in VSS 2005, there is a project in VSS, having multiple folders files in it, and most of the files around 2000 having their property "Store only latest version" is checked.

I want to change all those 2000 files property "Store only latest version" to unchecked, so that VSS retain all those files previous version.

can it be done through a single command to unchecked this option for all those files in project recursively?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少钕鈤記 2024-11-14 14:25:50

使用命令行实用程序 ss 以及 properties 命令和 -L-(取消设置仅保留最新版本)和 -R(递归)如下所示

ss properties -L- -R $/foo/*.*

来自 http://blogs .msdn.com/b/checkitout/archive/2005/01/20/357820.aspx

注意 - 要使命令行实用程序正常工作,您需要将 SSDIR 环境变量设置为指向 srcsafe.ini 文件夹。

SET SSDIR=\\dirfoo\foo

User the command line utility ss with properties command and the -L- (unset Retain only latest version) and -R (recursive) like below

ss properties -L- -R $/foo/*.*

From http://blogs.msdn.com/b/checkitout/archive/2005/01/20/357820.aspx

Note - for the command line utility to work you will need to set the SSDIR environment variable to point to your srcsafe.ini folder.

SET SSDIR=\\dirfoo\foo
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文