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

link|improve this question

There's a 2005 version of VSS. I guess its time for me to upgrade. Best Tool Ever. – Ritch Melton Mar 4 '11 at 18:38
feedback

2 Answers

up vote 1 down vote accepted

With a project selected, go to Tools, Show History, tick Recursive, and enter your user name into User. Click OK.

link|improve this answer
Perfect Thanks! – Lee Warner Mar 22 '10 at 17:50
feedback

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=<path to folder containing srcsafe.ini>
  3. ss Status $/ -R -U<username> > 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<username> and give the output file a generic name.

Other command line info:

link|improve this answer
Thanks for the details. Quick question: I am not a VSS Admin, but have Full Control permission on the VSS Database at Root Level. Will this work? – kamleshrao Mar 14 '11 at 8:02
@kamleshrao - Not sure. Try it and let us know how it goes. By the way, these commands are harmless; so, no worries. – Bill Paetzke Mar 14 '11 at 23:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.