Batch file backup and scheduler

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am still having trouble getting my batch file to run on the server to make
a automated back up.

Here is my batch file:
@echo off

rar u -o+ -r -rr -v600000k -x"F:\software\*.*" x"F:\ServerBackups\*.*"
"C:\ServerBackups\ServerBackup.rar" "F:\*.*"

(The last statement is on one line)

If I run this by clicking on the batch file is works fine.

I am using the scheduler on the server to run this. I looked at the log
file and it shows that the task is started but it does not show a completion.

The batch file resides on in C:\ServerBackups subdirectory.

I checked the rights and it has admin rights.

What other information can I provide you?

Your assistance is appreciated. Thank you.
 
FL Consultant said:
I am still having trouble getting my batch file to run on the server to
make
a automated back up.

Here is my batch file:
@echo off

rar u -o+ -r -rr -v600000k -x"F:\software\*.*" x"F:\ServerBackups\*.*"
"C:\ServerBackups\ServerBackup.rar" "F:\*.*"

(The last statement is on one line)

If I run this by clicking on the batch file is works fine.

I am using the scheduler on the server to run this. I looked at the log
file and it shows that the task is started but it does not show a
completion.

The batch file resides on in C:\ServerBackups subdirectory.

I checked the rights and it has admin rights.

What other information can I provide you?

Your assistance is appreciated. Thank you.

Where is F, and what kind of account are you using? Are you on a domain? If
so, is this scheduled task running using a *domain* account that has rights
to wherever F lives?
 
Back
Top