If i scan documents via ftp to a W8 computer to a share for other network users the file shows that it is locked even if the folder permissions is set for everyone.
Why does this happen?
Here is a silly work around i found from a forum.
Create the following batch file and run it.
:TOP
@echo off
icacls c:\path /inheritance:e
PING 1.1.1.1 -n 1 -w 60000 >NUL
GOTO TOP
The ping command it to create a 60 second delay in the loop.
It changes the permissions of all the files in the folder to the folders permissions.
Not a real fix...
Why does this happen?
Here is a silly work around i found from a forum.
Create the following batch file and run it.
:TOP
@echo off
icacls c:\path /inheritance:e
PING 1.1.1.1 -n 1 -w 60000 >NUL
GOTO TOP
The ping command it to create a 60 second delay in the loop.
It changes the permissions of all the files in the folder to the folders permissions.
Not a real fix...
Comment