R – Scheduled task not able to write files on an external server

scheduled-taskswindowswindows-server-2003

I'm having problems with a scheduled task running in a windows 2003 server scheduled task

Task is running under the nt authority/system account sending files to another windows2003 server in same domain.

Machine where task is executed runs under a domain account with limited permissions in domain and machine

Folder where files are sent in remote server has been configurated granting total rights to system and user which

The problem happens when scheduled task is tying to write the file in remote server, task returns an exception like "Access denied to path …."

Which is the user which remote server detects running externat scheduled task?
Which permissions should i grant in remote folder?

Thanks in advance

Fernando

Best Answer

A Scheduled Task running as the System user will not have access to another machine on the network. When it runs it is the same as if you were to logon to the local machine instead of the network. You will need to run the task as a special network user or store the file on the machine running the task for another process to pick up later.