Search found 183 matches

by Todd
12 Mar 2024, 04:10
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4527

Re: Execute and Wait can not be edited

Fixed for the next version Yippee!!!! Thank you! Working great in 2.6. Thankyouthankyouthankyouthankyou!!! Sorry but what about this, this didn't worked. Hi Ushavilash, This is what is known as an "intermittent". It is the worst, most irritating bug for a programmer to isolate and correct. That bei...
by Todd
05 Mar 2024, 03:51
Forum: Cobian Reflector
Topic: errors mismatch
Replies: 3
Views: 202

Re: errors mismatch

The ERRORS variable has historically been per-backlup not per task. Since the log already has a variable with the number of error in it, would you create another % variable amd populate it with the log errors variable. %TASKERRORS would work perfectly. Whilst you are at it, a % variable populated w...
by Todd
03 Mar 2024, 09:47
Forum: Cobian Reflector
Topic: errors mismatch
Replies: 3
Views: 202

errors mismatch

Reflector 2.6.55 Bug report. This is causing a lot of confusion. After a successful backup, 2024-03-03 00:37:34 ** Processed files: 90. Backed up files: 90. Created folders: 28. Backup size: 8.28 MB. ** 2024-03-03 00:37:34 ** Number of errors: 0. Time elapsed: 0 hours, 1 minutes, 9 seconds. ** With ...
by Todd
02 Mar 2024, 06:59
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4527

Re: Execute and Wait can not be edited

Just so there is no misunderstanding, the parameters are successfully gettin got my program. I just can not edit the even line. C:\Rakudo\bin\raku.exe """C:\NtUtil\CobianWrapper.pl6"" ""--rotates 4"" ""--backup_path"" ""[BACKUP]\MyDocsBackup\backup1""" No symptom change: Screenshot_2024-03-01_21-49-...
by Todd
02 Mar 2024, 06:45
Forum: Cobian Reflector
Topic: Tip: exit codes from pre-events
Replies: 1
Views: 101

Tip: exit codes from pre-events

Hi All, In Reflector, if you have checked: Tools (pull down), Options, Engine: Analyze exit code for "Execute and wait" events and Task (pull down), Edit Task, Events: Cancel the task if some event fails then Reflector will stop the task is something other than "0" is returned from your Pre-Event. N...
by Todd
01 Mar 2024, 01:03
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4527

Re: Execute and Wait can not be edited

if (!String.IsNullOrEmpty(theEvent.Parameter2)) process.StartInfo.Arguments = theEvent.Parameter2; <-- the whole quoted set of parameteres assigned here What do those two lines look like in Cobian Backup? The "if not the string is null or empty for the event 's second parameter" may be the problem....
by Todd
29 Feb 2024, 11:49
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4527

Re: Execute and Wait can not be edited

k:\Windows\NtUtil\RunLineTest.bat @echo off echo "0 = <%0>" echo "1 = <%1>" echo "2 = <%2>" echo "3 = <%3>" echo "4 = <%4>" echo "5 = <%5>" echo "6 = <%6>" echo "7 = <%7>" echo "8 = <%8>" Pause Without quotes: k:\Windows\NtUtil\RunLineTest.bat C:\NtUtil\CobianWrapper.pl6 --rotates 4 --backup_path [B...
by Todd
29 Feb 2024, 11:40
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4527

Re: Execute and Wait can not be edited

cobian wrote: 29 Feb 2024, 08:57 Aha...s sorry. It should be:

C:\Rakudo\bin\raku.exe "C:\NtUtil\CobianWrapper.pl6 --rotates 4 --backup_path [BACKUP]\MyDocsBackup\backup1"

Only one parameter is transmitted.
No symptom change <tears>
by Todd
29 Feb 2024, 03:23
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4527

Re: Execute and Wait can not be edited

cobian wrote: 28 Feb 2024, 09:53Try it.
No change:
Screenshot_2024-02-28_18-22-07.png
Screenshot_2024-02-28_18-22-07.png (33.69 KiB) Viewed 486 times
by Todd
28 Feb 2024, 06:41
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4527

Re: Execute and Wait can not be edited

Hmm, have you tried with C:\Rakudo\bin\raku.exe C:\NtUtil\CobianWrapper.pl6 "--rotates 4 --backup_path [BACKUP]\MyDocsBackup\backup1" ? That would pile everything into the first parameter. The parameters do not have to be in order either. There are four parameters total. --help and --debug just def...