在哪儿用VSS Command Line!该如何处理

在哪儿用VSS Command Line!!
请问应该在那里输入VSS   的命令行???是在VSS目录下的Win32下的SS.exe吗?


------解决方案--------------------
是的。。
请打开vss的帮助文件,查询Use Command Line Syntax 即可得到相关帮助

All VSS commands entered from the command line must begin with ss.

The syntax for VSS commands is as follows:

ss Command [item(s)] [option(s)]

Items

An item can be a project or a file. The nature of an item depends on the command. For the Get command, each item must be a VSS file or project. For the Add command, each item must be an operating system file or folder.

Options

Options are parameters you use to modify the action of a command and consist of a hyphen ( - ), a letter, and a value. The value must follow the option letter directly, with no space between them. For example:

ss Get hello.c -v22

In almost all cases where you can specify an item to act on, you can also specify many items. For example, any of the following are valid ways of executing the Get command:

ss Get "My File.doc "
ss Get hello.c hello.h test.h makefile
ss Get *.c *.h makefile linkfile
ss Get *.*

The command line is not case-sensitive. Anything on the command line can be either uppercase or lowercase. For example, the second command above could also be entered as:

SS get HELLO.C Hello.H test.h MakeFile