software for file and folder access permissions in WIN 7

jinvidia

Level D
PLease suggest me the best software which can do this job hassle free. I dont want to go into the properties, security tab blah blah. If i want to delete or modify or move a folder or a file which requires access permissions i should be able to do it with a couple of clicks. Is there such application which eases this task ?

thanx in advance
 
No mate i dont want to conceal a folder. I just want to take ownership of them in order to deal with them as i like (deleting them). Hide folder seems to be an application which conceals files/folders...
 
You didn't mention your OS, but for Windows Vista/7 you can paste the following code into Notepad and save it as Take Ownership.reg (or whatever). Run it, and an option named Take Ownership will then appear in the contest menu when you right-click a file or folder. If selected for a folder, the folder and all subfolders will be processed - make take minutes - and the user account from which this is done will be the owner, and therefore have access to the file(s)/folder(s) selected. In theory. I have found that sometimes some subfolders are apparently not processed, and must then be processed separately, which is simple enough.

Code begins below:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\runas]
@="Take Ownership"
"NoWorkingDirectory"=""

[HKEY_CLASSES_ROOT\*\shell\runas\command]
@="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
"IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"

[HKEY_CLASSES_ROOT\Directory\shell\runas]
@="Take Ownership"
"NoWorkingDirectory"=""

[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
@="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
"IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"

Code ends above.
 
Back
Top