Search found 4600 matches

by cobian
01 Mar 2024, 21:30
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 35
Views: 5065

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

Re: Possible Spelling Error

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

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...
by cobian
29 Feb 2024, 10:31
Forum: Cobian Reflector
Topic: FTP backup to NAS - File exists. code=500
Replies: 6
Views: 401

Re: FTP backup to NAS - File exists. code=500

Yes, those can work side by side,
by cobian
29 Feb 2024, 09:00
Forum: Cobian Reflector
Topic: FTP backup to NAS - File exists. code=500
Replies: 6
Views: 401

Re: FTP backup to NAS - File exists. code=500

No idea. FTP servers on a lot of NAS are quite weird to be honest. What kind of NAS are you using?
by cobian
29 Feb 2024, 08:58
Forum: Cobian Backup 11 (Gravity)
Topic: Changing mail body on Cobian 11
Replies: 1
Views: 230

Re: Changing mail body on Cobian 11

Number of errors: %ERRORS
by cobian
29 Feb 2024, 08:57
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 35
Views: 5065

Re: Execute and Wait can not be edited

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.
by cobian
28 Feb 2024, 09:53
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 35
Views: 5065

Re: Execute and Wait can not be edited

Try it.
by cobian
28 Feb 2024, 01:34
Forum: Cobian Reflector
Topic: Execute and Wait can not be edited
Replies: 35
Views: 5065

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"

?