in reply to Windows VSS question

Visual SourceSafe has a command-line interface that you can use.
Try looking up 'command line' in the documentation.
system "ss checkout $filename"; system "ss checkin $filename";
VSS also has a COM interface, but that's quite a bit more work for little gain.

mike