|
Suppose a guy who checked in many files in the different folders and subfoldersat some time. Is there a way to find these files instantly? Don't use one by one check, it is low effiencent.
Thanks |
| ardmore Wednesday, September 30, 2009 9:32 PM |
Hi Ardmore, As far as I know, there is no switch to filter the Date property, if you want, I think you can try to use VSS Reporter tool as Alexandru suggests. Best Regards, Nancy
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us. - Marked As Answer byardmore Monday, October 05, 2009 1:19 PM
-
|
| Nancy Shao Monday, October 05, 2009 3:35 AM |
Hi Ardmore, As far as I know, you can use Visual SourceSafe Command line to get the history of one user with following command line:
ss.exe History -U<Username>
If you want to get all files of a particular user check out, you can use this command line:
ss.exe Status $/ -R -U<Username>
For more information, please refer to:
Best Regards, Nancy
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us. |
| Nancy Shao Friday, October 02, 2009 6:25 AM |
Thanks.
I want to find all files of a particular on a particular day. What is the proper command?
Suppose the user is "huser", day is "10/01/2009". |
| ardmore Friday, October 02, 2009 1:42 PM |
Have a look here at the VSS Reporter tool. It works for Visual SourceSafe 2005 as well. http://www.codeproject.com/KB/applications/VssReporter.aspx |
| Alexandru Matei Sunday, October 04, 2009 7:23 AM |
Hi Ardmore, As far as I know, there is no switch to filter the Date property, if you want, I think you can try to use VSS Reporter tool as Alexandru suggests. Best Regards, Nancy
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us. - Marked As Answer byardmore Monday, October 05, 2009 1:19 PM
-
|
| Nancy Shao Monday, October 05, 2009 3:35 AM |
How to use command line like dos command line? I mean which ones should I click on the "Command Line Options". |
| ardmore Monday, October 05, 2009 5:41 PM |
Hi Ardmore, Do you mean how to use run ss.exe command line in Windows? If so, you can navigate Start > All Programs > Accessories > Command Prompt. Best Regards, Nancy
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us. |
| Nancy Shao Tuesday, October 06, 2009 6:01 AM |
Yes. I am sorry for unclear statement. In the server, there are several database. If I use ss.exe, does it mean that the opened one is selected?
If I don't open any database, how can I execute this command? |
| ardmore Tuesday, October 06, 2009 1:44 PM |
Please help me to find out what is wrong below?
C:\Program Files\Microsoft Visual Studio 8\Microsoft Visual SourceSafe>ss status
$/ -r -hzhao
No VSS database (srcsafe.ini) found. Set the SSDIR environment variable to the
path of srcsafe.ini for your VSS database.
C:\Program Files\Microsoft Visual Studio 8\Microsoft Visual SourceSafe>ss status
$/ -r -uhzhao
No VSS database (srcsafe.ini) found. Set the SSDIR environment variable to the
path of srcsafe.ini for your VSS database.
C:\Program Files\Microsoft Visual Studio 8\Microsoft Visual SourceSafe>ss status
$/ -r -u
No VSS database (srcsafe.ini) found. Set the SSDIR environment variable to the
path of srcsafe.ini for your VSS database.
C:\Program Files\Microsoft Visual Studio 8\Microsoft Visual SourceSafe>
username is hzhao |
| ardmore Tuesday, October 06, 2009 8:01 PM |
Hi Ardmore, This issue is possibly related to many versions of VSS existed in your machine.You may try to use "set ssdir" command to set the VSS Database path. Please refer to this similar thread for more information: http://social.msdn.microsoft.com/Forums/en-US/vssourcecontrol/thread/a2a93d5b-0207-4f28-ba15-6f423fd0adca/Best Regards, Nancy
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us. |
| Nancy Shao Wednesday, October 07, 2009 3:09 AM |