in src/main/org/apache/ant/vss/MSVSSRECOVER.java [29:53]
Commandline buildCmdLine() {
Commandline commandLine = new Commandline();
// first off, make sure that we've got a command and a vssdir...
if (getVsspath() == null) {
String msg = "vsspath attribute must be set!";
throw new BuildException(msg, getLocation());
}
// build the command line from what we got
// the format is:
// ss Recover VSS items [-G] [-H] [-I-] [-N] [-O] [-S] [-W] [-Y] [-?]
// as specified in the SS.EXE help
commandLine.setExecutable(getSSCommand());
commandLine.createArgument().setValue(COMMAND_RECOVER);
// VSS items (from)
commandLine.createArgument().setValue(getVsspath());
// -Y
commandLine.createArgument().setValue(getLogin());
// -I-
commandLine.createArgument().setValue(getAutoresponse());
//-GWS or -GWR
commandLine.createArgument().setValue(getWritableFiles());
return commandLine;
}