I’m sure all of us have come across the issue where we have certain folders (i.e. redirected folders, roaming profiles) that we don’t have permissions to and when we try to delete them, we’re unable to:
As a Windows administrator, we all know that we can simply take ownership of the folder through the properties of the folder to gain control. However, what if we had 50 or 100 or more? Not exactly the quantity of folders that you would like to be clicking through to take ownership.
Thankfully, there is a way to apply additional permissions to these folders in bulk through the use of the PsExec tool that’s available to download at the following URL:
http://technet.microsoft.com/en-us/sysinternals/bb897553
Begin by downloading the tools zip package, unzip the package into a directory:
… then open up a command prompt:
… and change the directory to where the PSTools are:
Execute the following command to open up a new prompt:
Psexec -i -s CMD
From within the new Psexec use the following command to take over and grant an account permissions:
Icacls [local path of redirected folders] /t /grant adminaccount:f
Here’s an example of a command that grants an account named citrixadmin permissions to all of the folders in the specified folder:
Icacls X:\UPMProfiles\~Archived /t /grant citrixadmin:f
Once the command successfully executes, you will now see that the account specified has permissions to the folder. Also note that the account which previously had permissions to the folder is retained:
1 comment:
Didn't work for me, always sais: "Permission Denied". I used the exact same method you provided in the article. ~ Joel
Post a Comment