Search found 3014 matches

by Oleg
Sat Apr 20, 2024 7:35 am
Forum: General Discussion
Topic: Cose a program
Replies: 1
Views: 10

Re: Cose a program

You can simply Terminate the process
by Oleg
Sat Apr 20, 2024 7:33 am
Forum: General Discussion
Topic: Replacement of special characters in a string
Replies: 6
Views: 23

Re: Replacement of special characters in a string

Your file does not contain BOM (signature of format). So RoboTask reads this file as simple ACSII file. But the file has UTF-8 coding. You should read this file as UTF-8 file Look the demo task below to see difference ;***************************** ;* RoboTask Task file ;* Do not edit in text editor...
by Oleg
Fri Apr 19, 2024 8:01 pm
Forum: General Discussion
Topic: Replacement of special characters in a string
Replies: 6
Views: 23

Re: Replacement of special characters in a string

Str replace action works correctly Download my example by the link: replacestr.zip Unpack the task and import into RoboTask (Copy-Paste does not help) Probably you read the source file incorrectly (without accounting for coding) Could you send the source file to me (just several lines)? Pack it to ...
by Oleg
Tue Apr 16, 2024 2:32 pm
Forum: General Discussion
Topic: RoboTask
Replies: 2
Views: 26

Re: RoboTask

There is no way to automatically translate from other formats (from other similar applications).
You need to recreate the tasks manually.
by Oleg
Tue Apr 16, 2024 2:25 pm
Forum: General Discussion
Topic: RoboTask
Replies: 2
Views: 26

Re: RoboTask

... but this issue is preventing me from porting ...
It seems I don't understand you... What issue?
by Oleg
Tue Apr 16, 2024 10:31 am
Forum: General Discussion
Topic: Help..Scheduling every 15 days and 2 Sundays per month.
Replies: 1
Views: 36

Re: Help..Scheduling every 15 days and 2 Sundays per month.

Look at the settings of scheduler trigger for every 15 days. You can start the task 1 and 16 days of each month https://robotask.com/images/forum/every15days.png The settings of scheduler trigger for every 20nd Sunday of each month https://robotask.com/images/forum/every2-nd-sunday.png Look at the e...
by Oleg
Fri Apr 12, 2024 8:18 am
Forum: General Discussion
Topic: Powershell script errors not raising the error (exit code 0)
Replies: 3
Views: 68

Re: Powershell script errors not raising the error (exit code 0)

Another way:
You can save the output to variable and analyze the output text.
by Oleg
Fri Apr 12, 2024 8:14 am
Forum: General Discussion
Topic: Powershell script errors not raising the error (exit code 0)
Replies: 3
Views: 68

Re: Powershell script errors not raising the error (exit code 0)

This is behavior of Powershell application. For example the script $dest ="C:\dest" New-Item $dest -type directory -force $source ="D:\somefile.txt" Copy-Item $source $dest always returns exit code 0. It doesn't matter if the file exists or not If source file does not exist the s...
by Oleg
Wed Apr 10, 2024 11:58 am
Forum: General Discussion
Topic: Search for Files --> Exclude folders
Replies: 2
Views: 141

Re: Search for Files --> Exlude folders

...the name of the folder, even this method, but it doesn't work. Unfortunately Search for Files action has not such mechanism now. I wrote this in our ToDo list. Now you can solve the problem like in my example (see below) ;***************************** ;* RoboTask Task file ;* Do not edit in text...