In VBScript I need to "Get Latest Version" from VSS 8 - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T09:25:39Zhttp://stackoverflow.com/feeds/question/269986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/269986/in-vbscript-i-need-to-get-latest-version-from-vss-81In VBScript I need to "Get Latest Version" from VSS 8wergeld2008-11-06T19:40:42Z2008-11-07T13:02:02Z
<p>Our VSS setup is like this: We have a set of unique folders with 100s of files in them. I need to, from within VBScript, get the latest version of all files in a set of folders and put them into a local directory so that other operations can be performed on them.
The reason for VBScript is, well, vague even to me. Perhaps VB or C# .NET will work as well, but for now I can only do it from within VBScript.
Is this doable?</p>
http://stackoverflow.com/questions/269986/in-vbscript-i-need-to-get-latest-version-from-vss-8/272002#2720021Answer by Patrick Cuff for In VBScript I need to "Get Latest Version" from VSS 8Patrick Cuff2008-11-07T13:02:02Z2008-11-07T13:02:02Z<p>Yes, you can try the <a href="http://msdn.microsoft.com/en-us/library/bb509341.aspx" rel="nofollow">VSS automation interface</a>, or if that doesn't work, just shell out to the <a href="http://msdn.microsoft.com/en-us/library/asxkfzy4(VS.80).aspx" rel="nofollow">VSS command line</a>.</p>
<p><a href="http://helpnet.acresso.com/robo/projects/HelpLibDevStudio9/IHelpSccCmdLine.htm" rel="nofollow">This link</a> as some sample code that may get you started.</p>