Search found 3007 matches

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: 45

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: 45

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: 48

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...
by Oleg
Fri Mar 29, 2024 9:15 am
Forum: General Discussion
Topic: Get Email IMAP or POP3
Replies: 5
Views: 1915

Re: Get Email IMAP or POP3

I have the same problem, can't login IMAP step to office365
Office365 disabled classic authorization for business accounts.
We will add OAuth2 authorization (beta version) to email actions in next release
by Oleg
Fri Mar 29, 2024 9:04 am
Forum: General Discussion
Topic: Access is denied, ProgID: "RoboTask.App"
Replies: 2
Views: 85

Re: Access is denied, ProgID: "RoboTask.App"

Maybe you need to re-register COM-object of RoboTask. The command line are: to register COM object robotask.exe /REGSERVER To remove COM object from system robotask.exe /UNREGSERVER But please note that these command lines require administrative privileges Or you can simply reinstall RoboTask. The i...
by Oleg
Fri Mar 29, 2024 8:46 am
Forum: Suggestions
Topic: Bulk Edit all Delays in Recorded Task
Replies: 1
Views: 106

Re: Bulk Edit all Delays in Recorded Task

You can record macro without pauses. You can turn off this in MacroRecorder settings (see Use real pauses... option). Then you can set the pause between steps for entire task. Open task editor and go to Settings tab . Then use the option Pause between steps option. The default value is 0. You can se...
by Oleg
Fri Mar 29, 2024 8:37 am
Forum: Suggestions
Topic: Ignore Manual Mouse Movement
Replies: 1
Views: 57

Re: Ignore Manual Mouse Movement

This is impossible.
System treats mouse and keystroke simulations the same as physical mouse movements and keystrokes
by Oleg
Sat Mar 16, 2024 4:46 pm
Forum: General Discussion
Topic: If file exist
Replies: 4
Views: 145

Re: If file exist

I also recommend that you check the file for availability. Because file can be unavailable because it opened in another application. For example, the file still being written. The file exists, but unavailable right now. Look at the variable {IsFileFree(<Full_File_Name>)} or the action Wait for file ...
by Oleg
Sat Mar 16, 2024 8:28 am
Forum: General Discussion
Topic: If file exist
Replies: 4
Views: 145

Re: If file exist

The variable checks for the file existence at the moment this variable is called. But the file may appear somewhat later (for example, after 0.5 seconds). So when you look at a folder in Windows Explorer, you see the file, but the variable returns FALSE If your file should appear and you want to wai...
by Oleg
Sat Mar 16, 2024 8:15 am
Forum: General Discussion
Topic: How to click a browser extension button?
Replies: 7
Views: 450

Re: How to click a browser extension button?

Unfortunately I can not reproduce your problem...
Could you send a screenshot with broken window to my email oleg(at)robotask.com?