I have used below to restore .bak file which is in remote server and it is not working.
restore database Status_backup
from disk = N'E:\Status bak files\Status_backup_201404302300.bak'
with
move 'Status_backup_201404302300' to N'E:\Files\Status_backup_201404302300.mdf',
move 'Status_backup_201404302300' to N'E:\Files\Status_backup_201404302300.ldf'
I am getting below error
Msg 3201, Level 16, State 2, Line 25 Cannot open backup device 'E:\Status bak files\Status_backup_201404302300.bak'. Operating system error 3(The system cannot find the path specified.). Msg 3013, Level 16, State 1, Line 25 RESTORE DATABASE is terminating abnormally.
Please suggest what is error in the script?