some libraries disappeared in the new version or do not load
database
cmd lines
webscocket
csv dataSearch found 29 matches
- Tue Aug 26, 2025 1:25 am
- Forum: General Discussion
- Topic: library disappeared in version 10.5
- Replies: 1
- Views: 1484
- Fri Aug 08, 2025 6:18 pm
- Forum: Suggestions
- Topic: webhook server
- Replies: 0
- Views: 2671
webhook server
it would be interesting to process the request
- Thu Jul 31, 2025 6:34 pm
- Forum: General Discussion
- Topic: Sample with Google Voice
- Replies: 1
- Views: 2669
Re: Sample with Google Voice
Robotask doesn’t support browser automation.
However, you can achieve what you need using Python libraries like Selenium
However, you can achieve what you need using Python libraries like Selenium
- Tue Jul 29, 2025 9:57 pm
- Forum: General Discussion
- Topic: Looking for Tips & Inspiration!
- Replies: 1
- Views: 1726
Re: Looking for Tips & Inspiration!
I believe we can approach it the other way around. What is your biggest challenge or requirement for a processor? Then we can evaluate whether it's possible to handle it with Robotask
- Thu Jul 17, 2025 8:28 pm
- Forum: Suggestions
- Topic: Log Message type designation
- Replies: 2
- Views: 5251
Re: Log Message type designation
You posted the solution yourself
just rename
just rename

- Wed Jun 04, 2025 6:05 pm
- Forum: Suggestions
- Topic: SQL query - variable table result
- Replies: 0
- Views: 9680
SQL query - variable table result
a sql query instead of saving in CSV, save in variable table object
- Wed Jan 29, 2025 8:04 pm
- Forum: General Discussion
- Topic: attachment overwrite not working
- Replies: 1
- Views: 24022
attachment overwrite not working
attachment overwrite not working
- Thu Jan 16, 2025 5:51 pm
- Forum: Suggestions
- Topic: Check who has file open
- Replies: 3
- Views: 69758
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.
- Mon Dec 23, 2024 8:45 pm
- Forum: General Discussion
- Topic: CSV DATA LOOP
- Replies: 7
- Views: 57898
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.
- Mon Nov 04, 2024 5:33 pm
- Forum: General Discussion
- Topic: restart process if it reaches over x amount of memory
- Replies: 3
- Views: 50785
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%"