Search found 24 matches

by felipe
Wed Jan 29, 2025 8:04 pm
Forum: General Discussion
Topic: attachment overwrite not working
Replies: 1
Views: 6160

attachment overwrite not working

attachment overwrite not working
error_mail.jpg
error_mail.jpg (109.59 KiB) Viewed 6160 times
by felipe
Thu Jan 16, 2025 5:51 pm
Forum: Suggestions
Topic: Check who has file open
Replies: 3
Views: 38777

Re: Check who has file open

When feeding data into a spreadsheet, I take a different approach. First, I create a data source, which can be a TXT, CSV, or even an Excel file. The target spreadsheet retrieves the data using Power Query, making the process efficient and streamlined.
by felipe
Mon Dec 23, 2024 8:45 pm
Forum: General Discussion
Topic: CSV DATA LOOP
Replies: 7
Views: 25729

Re: CSV DATA LOOP

What do you think about storing the line variable in a .txt file alongside the CSV, including the machine ID in the file name? This way, multiple machines can read the CSV without conflicts.
by felipe
Mon Nov 04, 2024 5:33 pm
Forum: General Discussion
Topic: restart process if it reaches over x amount of memory
Replies: 3
Views: 28268

Re: restart process if it reaches over x amount of memory

powershell script

Code: Select all

$mem = Get-CimInstance -ClassName Win32_OperatingSystem
$usedPercentage = [math]::Round((($mem.TotalVisibleMemorySize - $mem.FreePhysicalMemory) / $mem.TotalVisibleMemorySize) * 100, 2)
"$usedPercentage%"
by felipe
Mon Oct 21, 2024 5:48 pm
Forum: Suggestions
Topic: Use Variable in input Date Filter
Replies: 0
Views: 69159

Use Variable in input Date Filter

Use Variable in input Date Filter.jpg
Use Variable in input Date Filter.jpg (33.12 KiB) Viewed 69159 times
by felipe
Tue Oct 15, 2024 5:22 pm
Forum: General Discussion
Topic: Between certain time period
Replies: 4
Views: 39724

Re: Between certain time period

;***************************** ;* RoboTask Task file ;* Do not edit in text editor! ;***************************** [Root] ActionAfterRun=INTEGER|0 Actions=FOLDER Automat=INTEGER|-1 CatID=INTEGER|1864609949 Comment=STRINGLIST ContinueOnError=INTEGER|0 DisableOnError=INTEGER|0 DoNotStopWhenShutdown=I...
by felipe
Tue Oct 08, 2024 9:10 pm
Forum: General Discussion
Topic: JavaScript - assign result of fn to variable robotakst
Replies: 1
Views: 28453

JavaScript - assign result of fn to variable robotakst

function fn(a, b) {
return a + " " + b;

var result = fn("hello", "world");

RoboTaskApp.AddUserVariable(RoboTaskApp.ExpandText(VariableNameResult, result);


could help format the synthase
tks
by felipe
Wed Sep 25, 2024 4:45 pm
Forum: Suggestions
Topic: Public library of macros and freelancer marketplace
Replies: 1
Views: 63105

Re: Public library of macros and freelancer marketplace

I believe it would be to create a new section here on the forum
by felipe
Tue Sep 24, 2024 5:35 pm
Forum: General Discussion
Topic: Delete all files from a folder that is located in multiple locations? One Command
Replies: 7
Views: 55160

Re: Delete all files from a folder that is located in multiple locations? One Command

You can add multiple folder and file, it will create a directory list
delet.jpg
delet.jpg (30.7 KiB) Viewed 55152 times
by felipe
Thu Sep 05, 2024 7:08 pm
Forum: General Discussion
Topic: structuring code
Replies: 2
Views: 44968

Re: structuring code

In Power Automate Desktop, you can separate functions into different tabs, which helps organize workflows. You apply a similar logic in RoboTask by calling external tasks from the current one and returning with the expected variables.