Limiting the number of simultaneous users using a file in an SMB share

MdsTech

Dabbler
Joined
Dec 7, 2021
Messages
10
Hi, I wanted to know if there is a way to limit only one person accessing a file at a time of my SMB share. I don't know if I can do that in the Scale interface or directly in Windows.
 

unseen

Contributor
Joined
Aug 25, 2017
Messages
103
That type of functionality is more down to the program accessing the file than the operating system. Most sensibly written programs will lock a file when it is opened for write access and prevent anyone else opening the file for write. If the program you are using does not do that, then you need to look at some way of helping the program with a batch file or similar.
 

MdsTech

Dabbler
Joined
Dec 7, 2021
Messages
10
That type of functionality is more down to the program accessing the file than the operating system. Most sensibly written programs will lock a file when it is opened for write access and prevent anyone else opening the file for write. If the program you are using does not do that, then you need to look at some way of helping the program with a batch file or similar.
Thanks
 
Top