Start up Action.
Connecting Essibox into Annapurna
We need to be able to access Essibox over the network.
One way is when Annapurna is started to make a connection.
This is achieved by making a batch file called Annapurnabatch.bat
with the following instruction.
net use \\essibox_server /USER:essibox ""
Do check that the essibox server PC is called essibox_server and if it is not
then change as appropriate.
In the settings / folders
If you want to trace in Essibox and then bring the traces into Annapurna:
Put the traces as \\essibox_server\PMS_OUT
In order for Essibox to get the results from Annapurna
Put VCAGlazer / Folder for glazing files as \\essibox_server\PMS_IN
Amendment - 25.09.13
An alternative batch file which maps both in an out folders and stops if there is a problem.
set ESSIBOXSERVER=ESSIBOX_SERVER1
set ESSIBOXPASSWORD=""
set ESSIBOXUSER=essibox
echo "Connect to Essibox"
net use y: /d
net use y: \\%ESSIBOXSERVER%\PMS_IN %ESSIBOXPASSWORD% /USER:%ESSIBOXUSER%
if errorlevel 1 pause
net use r: /d
net use r: \\%ESSIBOXSERVER%\PMS_OUT %ESSIBOXPASSWORD% /USER:%ESSIBOXUSER%
if errorlevel 1 pause
No comments:
Post a Comment