is there any command to import package through command line?
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-06-18 09:16 PM
is there any command to import package through command line?
Ghanshyam Singh
er.singhghanshyam@gmail.com
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-06-18 02:35 PM
From 6.2 onwards, yes.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
21-06-18 01:03 AM
What is the command line script to import all the vbos?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
25-06-18 03:32 PM
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""
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
25-06-18 03:40 PM
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%
