Easier Way to Take Ownership and Grant Access Files or Directories in Vista
In Windows Vista, there are lots of files and directories especially those operating system files plus Windows and Windows\System32 folders have been protected. These protected system files aren’t belong to any users or groups, instead are owned by TrustedInstaller, with even Administrator or Administrators group doesn’t have modify or write access to them. Thus if you intend to manipulate or replace the files, you’ll encounter access denied error even though you are administrator and have disabled UAC or already in elevation mode for the application trying to access.
In this case, users will probably have to right click on the object, then access the object’s properties. Then users have to click on Security tab, click on Advanced button, click on Owner tab, and then perform several clicks and confirmations to take ownership of the object. The whole process have to repeat again to grant read-write-modify or full control access rights to the users. The whole process takes lengthy time, troublesome, involves lots of clicks and steps. To simplify the process, simply download the TakeControlOf.cmd command line batch script, which will automatically take ownership and grant full control access rights by assigning new ACLs (Access Control Lists) to the file or directory that input to the command.
Download TakeControlOf.zip from the forum.
TakeControlOf.cmd makes use of two command-line utilities takeown (takes ownership of a file or directory) and icacls (sets new ACLs on a files or directory) respectively. Full Control access privilege will be given to Administrators group.
To use the batch script, simply launch an elevated command prompt, then run the script. Below is same examples (command should be issued from the directory where you store the TakeControlOf.cmd script):
TakeControlOf C:\Windows\Test_File.exe
TakeControlOf C:\Test_Directory
Note that if you specify a directory, the script will works recursively to include all subdirectories. To change this behavior, edit the TakeControlOf.cmd and remove /r from the takeown (first) line, and /t from icacls (second) line.
Related Articles
- Take and Grant Full Control Permissions and Ownership in Windows 7 or Vista Right Click Menu
- How to Take Ownership and Grant Permissions in Windows Vista
- Add Take Ownership Option To Files and Folders Context Menu in Vista
- Delete Undeletable Files in Windows Vista
- Download RED (Remove Empty Directories) for Windows PC
- Change Group Ownership of Symbolic Links in Unix or Linux
- How to Allow FTP Users to Access to Out of Home Directory (chroot) Files and Folders
- Access All Windows Vista Utility Programs From Single Place With Vista Utilities
- Reveal and Access to Windows Vista Hidden Context-Sensitive (Right Click) Menu Item – Open Command Prompt Here & Copy as Path
- Easily Access Files Stored Online Via Gladinet










































April 29th, 2009 21:08
I just tried both the cmd method and the type it in method. Neither worked. I still, in the command window, get ERROR: Access is denied.
I lost access when I re-formatted the external disk. Any other suggestions?
April 3rd, 2009 08:12
THANK YOU! This was a lifesaver. I had over 5000 files to fix.
TIP: No download needed. Open cmd.exe command prompt As Administrator, then enter following commands in order (replacing %1 with desired path/filename or “.” for current directory):
takeown /f %1 /r /d y
icacls %1 /grant administrators:F /t
April 1st, 2009 01:55
This just saved me HOURS. The windows GUI approach had literally been running for over 3 hours, and the script finished the job in about 10 seconds.
January 15th, 2009 10:20
In my opinion the Take Ownership option on the right-click menu should be recursive anyway. Rather than trying to use the script above, you can fix the right-click option simply by using regedit to edit this key:
HKEY_CLASSES_ROOT\Directory\shell\runas\command
Verify the contents look similar to this, and change it to:
cmd.exe /c takeown /f “%1″ /r /d y && icacls “%1″ /grant administrators:F /t
All that does is add the “/r” recursion option to the takeown command and “/t” option to icacls, and I included a “/d y” to answer “Yes” to any questions which you can take or leave.
Of course the registry can be dangerous to meddle in if you’re careless, so just take it slow and make sure you’re editing the right thing.
December 8th, 2008 13:05
[...] permissions to users’ account for the directories and all sub-folders recursively. Use TakeControlOf command script or add a Take Ownership in right click menu to easily do the [...]
November 30th, 2008 03:10
Quiero acceder a una carpeta
November 23rd, 2008 08:08
Thanks for the batch file.
Just note that it might not work in some locales such as mine (Spanish) due to the “y” value in takeown being “s” instead.
June 17th, 2008 22:53
does anyone run this and it goes on forever?
April 24th, 2008 22:09
[...] two commands have been scripted in Windows command shell batch script that easily perform the task of taking ownership and grant full control permissions to [...]
April 24th, 2008 21:59
[...] can also prepared a Windows shell batch script that automate the process for easy take back the files and folders which is inaccessible and [...]
March 20th, 2008 02:03
THANK YOU SOOOOOOO MUCH. I was foaming at the mouth after I had to buy a new lappie cuz my old one died and when I thought I had to change permissions on every file by hand I was just fuming. It goes to show that the command line is just the most wonderful and conistent and comforting way to get things done.
December 17th, 2007 16:01
[...] This can also happen with real files and folders if your user account information has changed in the new version of Windows. Or you might be trying to access system files. You may be able to fix the problem by taking ownership of the object. You’ll need to be logged on as an administrator to do that. For more on how this works, see “Easier Way to Take Ownership and Grant Access Files or Directories in Vista.” [...]
October 12th, 2007 00:02
Or does anyone know of another script like it?
October 12th, 2007 00:01
The download link for the TakeControlOf.zip is no longer working (at least for me). Has it been taken down?
May 31st, 2007 04:50
[...] to take ownership and grant full control permissions from command line. Or you can also prepare a Windows shell batch script that easily perform the task by typing simple command. Get help or contribute tips or tricks at My [...]
May 25th, 2007 16:07
great tip to hack