Search found 4567 matches

by cobian
04 Mar 2024, 12:50
Forum: Cobian Reflector
Topic: cyclic redundancy check
Replies: 3
Views: 191

Re: cyclic redundancy check

Is the backup compressed?
by cobian
04 Mar 2024, 12:31
Forum: Cobian Reflector
Topic: Multiple Destinations with Compress
Replies: 1
Views: 81

Re: Multiple Destinations with Compress

Make 2 tasks: the one that compresses to one destination, and the other one that copies the result to the other 2 destinations.
by cobian
04 Mar 2024, 12:27
Forum: Cobian Reflector
Topic: Reflector Will Not Launch User Interface
Replies: 3
Views: 260

Re: Reflector Will Not Launch User Interface

Reset the UI positions with the tray icon.
by cobian
04 Mar 2024, 12:27
Forum: Cobian Backup 11 (Gravity)
Topic: Preserving files' modified dates
Replies: 1
Views: 216

Re: Preserving files' modified dates

Not supported yet for FTP
by cobian
04 Mar 2024, 12:15
Forum: Cobian Reflector
Topic: Not Working As Expected!
Replies: 6
Views: 316

Re: Not Working As Expected!

Too lite *relevant* information. Please be more specific about the setup of your tasks.

What is the real time option? This option doesn't exist at all.
by cobian
01 Mar 2024, 21:30
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4949

Re: Execute and Wait can not be edited

This should work. Tested. C:\Rakudo\bin\raku.exe """C:\NtUtil\CobianWrapper.pl6"" ""--rotates 4"" ""--backup_path"" ""[BACKUP]\MyDocsBackup\backup1""" MS documentation for Process.Run says: Quotes in ProcessStartInfo.Arguments must be escaped as three quotes ("""). This is because a single quote is ...
by cobian
01 Mar 2024, 21:16
Forum: Cobian Reflector
Topic: Possible Spelling Error
Replies: 2
Views: 164

Re: Possible Spelling Error

Thanks
by cobian
29 Feb 2024, 13:25
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 34
Views: 4949

Re: Execute and Wait can not be edited

Yes, the last one should be the way to go. using (Process process = new Process()) { process.StartInfo.FileName = theEvent.Parameter1; process.StartInfo.UseShellExecute = false; if (!String.IsNullOrEmpty(theEvent.Parameter2)) process.StartInfo.Arguments = theEvent.Parameter2; <-- the whole quoted se...