TaskList
-
- Posts: 1
- Joined: Fri Mar 28, 2025 5:53 pm
TaskList
Hi, is it possible within Robotask to retrieve a list of all active tasks? I'm working towards having a script job loop round that list and record for example {GetTaskCurrentStatus(<ExtName>)} into an external reporting database?
Re: TaskList
Yes, this is possible.
Look at my example
Save the text of the task to a file and use menu Task->Import to import the task into RoboTask.
Also you can simply copy task text and paste it into the task list.
Then you can see it in task editor
Look at my example
Save the text of the task to a file and use menu Task->Import to import the task into RoboTask.
Also you can simply copy task text and paste it into the task list.
Then you can see it in task editor
Code: Select all
;*****************************
;* RoboTask Task file
;* Do not edit in text editor!
;*****************************
[Root]
ActionAfterRun=INTEGER|0
Actions=FOLDER
Automat=INTEGER|0
CatID=INTEGER|307868550
Comment=STRINGLIST
ContinueOnError=INTEGER|0
DisableOnError=INTEGER|0
DoNotStopWhenShutdown=INTEGER|0
ExternalName=STRING|"Task1568"
Hide=INTEGER|0
ID=INTEGER|6320754
LogOnAsUser=INTEGER|1
Name=STRING|"Retrieve task list with status"
OnErrorTaskID=INTEGER|-1
Priority=INTEGER|3
RestrictRESTAPIAccess=INTEGER|0
RunOnClose=INTEGER|0
RunOnStartup=INTEGER|0
StepPause=INTEGER|0
ToLog=INTEGER|3
UnicodeFormat=INTEGER|1
WriteGeneralLog=INTEGER|0
[Actions]
Action1=FOLDER
Action10=FOLDER
Action11=FOLDER
Action12=FOLDER
Action13=FOLDER
Action2=FOLDER
Action3=FOLDER
Action4=FOLDER
Action5=FOLDER
Action6=FOLDER
Action7=FOLDER
Action8=FOLDER
Action9=FOLDER
[Actions\Action1]
ActionID=STRING|"A_VARIABLES_SET"
Enabled=INTEGER|-1
Name=STRING|"Set variable ""OutFile"" with value ""{TempDir}\map.csv"""
Params=FOLDER
[Actions\Action1\Params]
_rt_variables_produced=STRING|"OutFile"
expand=STRING|"1"
linecount=STRING|"1"
varname=STRING|"OutFile"
varvalue=STRING|"{TempDir}\map.csv"
[Actions\Action10]
ActionID=STRING|"A_LOOP_END"
Enabled=INTEGER|-1
Name=STRING|"End Loop"
[Actions\Action11]
ActionID=STRING|"A_TASK_LOGLEVEL"
Enabled=INTEGER|-1
Name=STRING|"Set task log level to ""All Messages"""
Params=FOLDER
[Actions\Action11\Params]
loglevel=STRING|"3"
mode=STRING|"0"
[Actions\Action12]
ActionID=STRING|"A_FILE_TEXTWRITE"
Enabled=INTEGER|-1
Name=STRING|"Create text file {OutFile}"
Params=FOLDER
[Actions\Action12\Params]
encode=STRING|"0"
fileexists=STRING|"0"
filname=STRING|"{OutFile}"
line0=STRING|"{#CSVtext}"
linecount=STRING|"1"
suppress=STRING|"0"
withoutprefix=STRING|"0"
[Actions\Action13]
ActionID=STRING|"A_DIALOG_SHOWTEXT"
Enabled=INTEGER|-1
Name=STRING|"Show Text"
Params=FOLDER
[Actions\Action13\Params]
autoclose=STRING|"0"
filename=STRING|"{OutFile}"
fromfile=STRING|"0"
linecount=STRING|"0"
timeout=STRING|"10"
title=STRING|"Task list"
[Actions\Action2]
ActionID=STRING|"A_ROBOTASK_ALERT"
Enabled=INTEGER|-1
Name=STRING|"Show Notification"
Params=FOLDER
[Actions\Action2\Params]
colorscheme=STRING|"0"
defh=STRING|"0"
defw=STRING|"0"
duration=STRING|"20"
height=STRING|"150"
icon=STRING|"3"
kind=STRING|"0"
message=STRING|"This taks retrieves CSV file with information:{eol}- Task ID{eol}- Task Name{eol}- Task external name{eol}- Task status"
position=STRING|"3"
title=STRING|"{TaskName}"
width=STRING|"400"
[Actions\Action3]
ActionID=STRING|"A_SCRIPT_VBSCRIPT"
Enabled=INTEGER|-1
Name=STRING|"VB Script"
Params=FOLDER
[Actions\Action3\Params]
expandvars=STRING|"0"
line00000000=STRING|"txt = """""
line00000001=STRING|"for i=0 to RoboTaskApp.TaskCount - 1 step 1"
line00000002=STRING|" id = RoboTaskApp.TaskInfoID(i)"
line00000003=STRING|" nam = RoboTaskApp.TaskInfoName(i)"
line00000004=STRING|" ext = RoboTaskApp.TaskInfoExtname(i)"
line00000005=STRING|" status = RoboTaskApp.TaskInfoState(i)"
line00000007=STRING|" filename = Hex(id)"
line00000008=STRING|" while len(filename) < 8"
line00000009=STRING|" FileName = ""0"" + FileName"
line0000000A=STRING|" wend"
line0000000C=STRING|" select case status"
line0000000D=STRING|" case 0 st_string = ""Manual ("" + cstr(status) + "")"""
line0000000E=STRING|" case 1 st_string = ""Idle ("" + cstr(status) + "")"""
line0000000F=STRING|" case 2 st_string = ""Disabled/Busy ("" + cstr(status) + "")"""
line00000010=STRING|" case 3 st_string = ""Running ("" + cstr(status) + "")"""
line00000011=STRING|" case 4 st_string = ""Stopping ("" + cstr(status) + "")"""
line00000012=STRING|" end select"
line00000013=STRING|" 'txt = txt + RoboTaskApp.ExpandText(""{TaskFolder}"") + ""\"" + filename + _"
line00000014=STRING|" ' "".tsk = "" + nam + chr(13) + chr(10)"
line00000015=STRING|" txt = txt + filename + ""|"" + nam + ""|"" + ext + ""|"" + st_string + chr(13) + chr(10)"
line00000016=STRING|"next"
line00000018=STRING|"RoboTaskApp.SetUserVariable ""text"", txt"
linecount=STRING|"26"
savescript=STRING|"0"
[Actions\Action4]
ActionID=STRING|"A_STR_TRIM"
Enabled=INTEGER|-1
Name=STRING|"STR Trim"
Params=FOLDER
[Actions\Action4\Params]
custom=STRING|"0"
eol=STRING|"1"
lead=STRING|"1"
source=STRING|"{#text}"
spaces=STRING|"1"
tabs=STRING|"1"
trailing=STRING|"1"
variable=STRING|"text"
[Actions\Action5]
ActionID=STRING|"A_VARIABLES_CREATE"
Enabled=INTEGER|-1
Name=STRING|"Create local variable ""CSVTEXT"" with value """""
Params=FOLDER
[Actions\Action5\Params]
expand=STRING|"0"
varkind=STRING|"1"
varname=STRING|"CSVTEXT"
[Actions\Action6]
ActionID=STRING|"A_TASK_LOGLEVEL"
Enabled=INTEGER|-1
Name=STRING|"Set task log level to ""Errors And Warnings"""
Params=FOLDER
[Actions\Action6\Params]
loglevel=STRING|"2"
mode=STRING|"0"
[Actions\Action7]
ActionID=STRING|"A_LOOP_TEXT"
Enabled=INTEGER|-1
Name=STRING|"Text Loop"
Params=FOLDER
[Actions\Action7\Params]
destvar=STRING|"LINE"
line0=STRING|"{#text}"
linecount=STRING|"1"
sourcetext=STRING|"1"
[Actions\Action8]
ActionID=STRING|"A_VARIABLES_DELIMITED"
Enabled=INTEGER|-1
Name=STRING|"Delimit Variable"
Params=FOLDER
[Actions\Action8\Params]
colon=STRING|"0"
comma=STRING|"0"
other=STRING|"1"
otherchar=STRING|"|"
quote=STRING|"0"
semocolon=STRING|"0"
space=STRING|"0"
spaceasone=STRING|"0"
string=STRING|"{#Line}"
tab=STRING|"0"
variable=STRING|"Line"
[Actions\Action9]
ActionID=STRING|"A_VARIABLES_SET"
Enabled=INTEGER|-1
Name=STRING|"Set variable ""CSVTEXT"" with value ""{#CSVText}{#Line}{EOL}"""
Params=FOLDER
[Actions\Action9\Params]
expand=STRING|"1"
varname=STRING|"CSVTEXT"
varvalue=STRING|"{#CSVText}{#Line}{EOL}"
Oleg Yershov