upload_document_2_art.cmd 415 B

12345678
  1. REM ** Uploads 2 artifacts to one new created document (if not exists - otherwise append arts) in default workspace (api-key is defined in console.json) **
  2. REM ** AppServer must be started first / this script must be run in same directory as BO.Console**
  3. @echo off
  4. call setenv.cmd
  5. set oldcd=%cd%
  6. cd %BOPath%
  7. %BOConsole% document_add -arts:%oldcd%\doc1_file1.bin;%oldcd%\doc1_file2.bin -force -user:test
  8. cd %oldcd%