python - Task Scheduler Completes Task but Script doesn't run -


i have python script moves file computer network folder. have confirmed works when manually trigger it, when run through task scheduler file doesn't moved though task completes. task completes opcode: 2 read means cannot identify path.

the python script:

import shutil  shutil.copy2('c://test.txt', '//network/folder/endlocation/') 

it set run under user full control on network location. "run whether user logged on or not" , "run highest privileges" both checked.

no triggers set.

action:

program/script: c:\python27\python.exe

arguments: c:\users\craab\desktop\move.py

settings:

"allow task run on demand" "stop task if runs longer 3days" "if running task not end when requested, stop" checked

what issue here?


Comments

Popular posts from this blog

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -

angular - DownloadURL return null in below code -