Forum
iyi çalışmalar;
Network ortamında belirleyeceğim pc'lerin uzaktan deneme adındaki klasörünün yetkilerini nasıl değiştirebilirim. klasör yetkisine everyone full vermek istiyorum . ortalama 50 pc bir vbs yada bat file ile nasıl yapabilirim.
Klasör = C:\Program Files\deneme
Şimdiden teşekkürler.
slm
start / run / cmd / cacls/? yazarak bir bat oluşturma şansınız olabilir en kolay yol aklıma bu geldi.
http://technet.microsoft.com/en-us/library/bb490872.aspx
Examples:
Add Read-Only permission to a single file
CACLS myfile.txt /E /G "Power Users":R
Add Full Control permission to a second group of users
CACLS myfile.txt /E /G "FinanceUsers":F
Now revoke the Read permissions from the first group
CACLS myfile.txt /E /R "Power Users"
Now give the first group Full-control:
CACLS myfile.txt /E /G "Power Users":F
Give the Finance group Full Control of a folder and all sub folders
CACLS c:\docs\work /E /T /C /G "FinanceUsers":F
Kolay gelsin
teşekkür ederim.