,

Your IP Address

what is my ip address?

Reset Security on all folders


The problem is with using Windows Explorer to modify security settings globally on a partition, directories, as well as files. This is in fact a less than optimum process of applying security settings. A more appropriate process is to execute the following command line from the root of the partition:


(Note: If you are't at the root of the partition in question you need to set your default there: CD /D drive_name: )


Now the command line:
CACLS * /e /t /c /g Administrators:F System:F


(Note: If you see the message, Unable to perform a security operation on an object which has no associated security, you are executing this from a FAT partition. You need to set the default to an NTFS partition.)


This command will edit (/e) the ACLs, rather than replace them, as well as recursively apply them (/t) to subdirectories. CACLS will continue (/c) even when it hits an open file. Any number of ACCOUNT:PERM parameters may follow the grant (/g) switch. There is additional flexibility built into the CACLS command-its only limitation is the dearth of selections for PERM (permission levels) values.

0 comments:

Post a Comment