nabsltd, my problem isn't getting it to run, it's getting MULTIPLE sessions to run connected to DIFFERENT libraries. I tried your batch procedure and made a few mods, and it'll RUN the 3M cloud, but any time I try to start a SECOND one to a different library it just displays the original one... Even when I specify a separate memory space.
What do I need to do to this to actually get it to start MULTIPLE instances?
@ECHO Off
SET _lib=%1
echo param set to %_lib%
If "%_lib%"=="dakota" goto :sub_lib
If "%_lib%"=="hennepin" goto :sub_lib
If "%_lib%"=="stpaul" goto :sub_lib
@ECHO On
echo no valid library = %_lib%
pause
goto :eof
:sub_lib
echo You chose %_lib%
echo COPY "%APPDATA%\3MCloudLibrary\PC\%_lib%.ini" "%APPDATA%\3MCloudLibrary\PC\DigitalLibrary.in i"
COPY "%APPDATA%\3MCloudLibrary\PC\%_lib%.ini" "%APPDATA%\3MCloudLibrary\PC\DigitalLibrary.in i"
START "" /B/SEPARATE "C:\Program Files (x86)\3M(TM) Cloud Library PC App\3MCloudLibrary.exe"
|