Way to see all files ever checked into Visual SourceSafe by a user?

后端 未结 2 1115
执念已碎
执念已碎 2021-02-06 07:20

Is there a way in Microsoft Visual SourceSafe to see all the files I\'ve ever checked-in?

2条回答
  •  Happy的楠姐
    2021-02-06 07:27

    The command line may be faster, more efficient for this.

    From the command line:

    1. cd C:\Program Files\Microsoft Visual SourceSafe
    2. SET SSDIR=
    3. ss Status $/ -R -U > checked-out-by-username.txt

    And then check the contents of checked-out-by-username.txt for your check-outs.

    For example:

    My srcsafe.ini was in C:\Program Files\Microsoft Visual SourceSafe\MasterDatabase. And my username was bpaetzke.

    So, my command line looked like this:

    1. cd C:\Program Files\Microsoft Visual SourceSafe
    2. SET SSDIR=MasterDatabase
    3. ss Status $/ -R -Ubpaetzke > checked-out-by-bpaetzke.txt

    If you want to get all users' check-outs, remove the -U and give the output file a generic name.

    Other command line info:

    • commands
    • options

提交回复
热议问题