Take ownership of file or folder
In windows, some of the system files are protected by OS and canβt be accessed by users with even administrator privileges. CSC cache stored in C:\Windows\CSC is one such folder. If you try to open the folder in windows explorer, you would be greeted with the window βYou donβt currently have permission to access this folder. Click Continue to permanently get access to this folder.β
Take ownership of a file/folder from windows command line?
Open elevated administrator command prompt and run the below command on the file.
takeown /F fileName
Running from a non elevated command prompt would generated the error βAccess is deniedβ
Take ownership of a folder and all its contents:
c:>takeown /R /F c:\windows\csc\
SUCCESS: The file (or folder): “c:\windows\csc\” now owned by user “domain\user”.
These commands work on Windows 8 and Windows 7.