cancel
Showing results for 
Search instead for 
Did you mean: 

is there any command to import package through command line?

Anonymous
Not applicable
is there any command to import package through command line?     Ghanshyam Singh er.singhghanshyam@gmail.com
4 REPLIES 4

John__Carter
Staff
Staff
From 6.2 onwards, yes.

BenRPA
Level 4
What is the command line script to import all the vbos?

John__Carter
Staff
Staff
You can create a bat file that lists individual xml files, like this: SET bp=""C:\Program Files\Blue Prism Limited\Blue Prism Automate\AutomateC.exe"" /user Ben password /import %bp% ""C:\Program Files (x86)\Blue Prism Limited\Blue Prism Automate\VBO\BPA Object - Utility - Collection Manipulation.xml"" %bp% ""C:\Program Files....etc""  

John__Carter
Staff
Staff
Or with a loop like this: SET AUTOMATEC=""C:\Program Files\Blue Prism Limited\Blue Prism Automate\AutomateC.exe"" /user Ben password /import SET DBCONNNAME=""My Connection"" SET PATHTOVBOS=""C:\Program Files\Blue Prism Limited\Blue Prism Automate\VBO"" FOR %%I in (""""%PATHTOVBOS%""\*.*"") DO %AUTOMATEC% ""%%I"" /dbconname %DBCONNNAME%