Search found 3290 matches
- Fri May 01, 2026 2:58 pm
- Forum: General Discussion
- Topic: Delay loop stops working after system sleep
- Replies: 1
- Views: 61
Re: Delay loop stops working after system sleep
Take a look at On Resume trigger. It fired when computer restored after sleep or hibernate mode
- Fri Apr 03, 2026 10:35 am
- Forum: Articles
- Topic: Working with JSON Data in RoboTask Variables
- Replies: 0
- Views: 8065
Working with JSON Data in RoboTask Variables
Many RoboTask actions return data in JSON (JavaScript Object Notation) format. To process this information effectively, you need to know how to address specific fields or elements within a variable containing a JSON string. RoboTask supports two primary methods for addressing JSON fields. Let’s look...
- Tue Mar 31, 2026 4:20 pm
- Forum: General Discussion
- Topic: Anyone using Robotask to monitor a folder and automatically rename + move files based on filename pattern?
- Replies: 1
- Views: 3202
Re: Anyone using Robotask to monitor a folder and automatically rename + move files based on filename pattern?
You will most likely need to use regular expressions . This is the easiest way to check the file name pattern and extract the necessary parameters from the name. Take a look at my example (see below) First, the task checks the file name pattern. The file name must be in the following format: INV_YYY...
- Fri Mar 27, 2026 6:34 pm
- Forum: General Discussion
- Topic: Neocore browser error 12029
- Replies: 3
- Views: 27813
Re: Neocore browser error 12029
Restart RoboTask. Menu Task -> Restart application. What happened: Once you’ve performed the "Start Browser" action at least once, RoboTask launches Neocore.exe to run the actions. After the task is complete, Neocore.exe remains in memory for future Web Automation action sessions . It appe...
- Tue Mar 24, 2026 9:10 am
- Forum: General Discussion
- Topic: Automatically Run Task on User Login
- Replies: 1
- Views: 2537
Re: Automatically Run Task on User Login
We've discussed this many times
Take a look at these topics:
viewtopic.php?t=4907
viewtopic.php?t=4667
viewtopic.php?t=4609
viewtopic.php?p=12098#p12098
Take a look at these topics:
viewtopic.php?t=4907
viewtopic.php?t=4667
viewtopic.php?t=4609
viewtopic.php?p=12098#p12098
- Sun Mar 22, 2026 7:09 pm
- Forum: General Discussion
- Topic: Password Variable Not Working in “Pack Files” Action
- Replies: 1
- Views: 2637
Re: Password Variable Not Working in “Pack Files” Action
It works. Test my example ;***************************** ;* 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 ...
- Thu Feb 26, 2026 7:00 pm
- Forum: Suggestions
- Topic: Button "Variables" missing in Write Text File
- Replies: 2
- Views: 22611
Re: Button "Variables" missing in Write Text File
Hm-m... For some reason, this button has become invisible.
Already fixed. Download and install the fresh version. Or you can use the "Check for updates" function.
Already fixed. Download and install the fresh version. Or you can use the "Check for updates" function.
- Wed Jan 28, 2026 9:02 am
- Forum: General Discussion
- Topic: task and logs
- Replies: 1
- Views: 43452
Re: task and logs
We have already discussed this several times here.
Take a look at these topics:
viewtopic.php?t=4907
viewtopic.php?t=4667
viewtopic.php?t=4609
viewtopic.php?p=12098#p12098
Take a look at these topics:
viewtopic.php?t=4907
viewtopic.php?t=4667
viewtopic.php?t=4609
viewtopic.php?p=12098#p12098
- Wed Jan 28, 2026 8:51 am
- Forum: General Discussion
- Topic: Wildcards in If statement
- Replies: 1
- Views: 22858
Re: Wildcards in If statement
The "If..Then" action does not use wildcard characters as file mask characters. "*" is just an asterisk, and "?" is just a question mark. The "If..Then" action compares (in your case) just strings, not file names. If you need a more complex check, you can use ...
- Tue Jan 20, 2026 3:16 pm
- Forum: General Discussion
- Topic: Log copied files - Use as boolean / checklist
- Replies: 4
- Views: 37031
Re: Log copied files - Use as boolean / checklist
Perhaps I misunderstood you... Do you want to avoid copying a file if it already exists in the log? It would be better to create a table in the database. In this case, you can easily check whether a record exists in the table. In the case of a text file, you need to use Text Loop and scan the whole ...