Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Retreive files from a date

Status
Not open for further replies.

frag0610

Programmer
Sep 23, 2009
2
0
0
CA
Hi,
I use VSS version 8 with Visual Studio 2005.
I have a VSS projet with no label and I need to getting it for a particular date.
Is it possible to do that without getting each file one by one by hand?
Thanks.
 
I have found the solution. I must use the SourceSafe command line command (ss.exe).

In DOS prompt:
CD [directory to extract the files]
SET SSDIR=[source safe database path]
SET SSUSER=[source safe user]
SET SSPWD=[source safe user's password]
ss GET $/[path project] -R -I-Y -Vd[date]


-R: recursive folder
-I-Y: answers to all Yes/No questions
-Vd[date]: indicate the projet version (date)

SourceSafe reference:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top