Load all saved sessions

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amancharlas
    New User
    • Apr 2009
    • 2

    Load all saved sessions

    Is there a easy way to determine all the saved sessions and load them one at at time in script?
  • Aaron
    Team Scooter
    • Oct 2007
    • 16002

    #2
    Hello,

    There is not a built in method of determining saved sessions. You could analyze the Sessions.xml file (or manually create a list), and call them on the command line one at a time:
    bcompare.exe @scriptfile.txt sessionName

    then in scriptfile.txt
    load %1

    %1 refers to the first parameter after @scriptfile.txt, in this case, the session name.
    So your bat file can use the same script on multiple sessions:
    bcompare.exe @sciprtfile.txt sessionName1
    bcompare.exe @sciprtfile.txt sessionName2
    bcompare.exe @sciprtfile.txt sessionName3
    Aaron P Scooter Software

    Comment

    Working...