1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

command line やPowershellでAutomateC.exe & Automate.exeの実行

Last updated at Posted at 2020-07-16

メモ用

Command LineでBlue Prism AutomateC.exeの実行について

下記のようにスクリプトを書き、Batchファイルを作成する。
Batchファイルを起動すると、指定されたプロセス/スケジュールが実行される。

プロセスの実行を指定するスクリプト

qiita.rb
start "" "C:\Program Files\Blue Prism Limited\Blue Prism Automate\AutomateC.exe" /run "process name" /user #username #password

スケジュールの実行を指定するスクリプト

qiita.rb
start "" "C:\Program Files\Blue Prism Limited\Blue Prism Automate\AutomateC.exe" /dbconname "ConnetionName" /user #username #password /startschedule /schedule "Schedule Name"

PowershellでAutomateC.exe & Automate.exeの実行

qiita.rb
& $automatec /dbconname $DBConnection /resource $Resource /port 8180 /sso /run "Login" /startp "<inputs><input name='Login Locally' type='flag' value='False' /><input name='Domain' type='text' value='<YourAD_Name>' /><input name='Credential Name' type='text' value='$Credentials' /> </inputs>"
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?