How to get permissions to copy or delete files in Windows 8.1?

8

3

When I try to copy to copy, delete or even edit a file in my non-system drive, Windows will ask for administrator permissions:

Folder Access Denied

I don't want to disable the User Account Control (UAC), rather make it work just like Windows 7. That is, require administrator rights only when handling system files in the C: drive.

arslion

Posted 2014-02-28T18:20:02.117

Reputation: 235

possible duplicate of How do I get permissions to delete files on Windows 7?

– and31415 – 2014-08-06T09:43:38.987

Answers

9

This is no different than previous versions of Windows, and has nothing to do with UAC.

That external drive's file system was created by an OS other than your Windows install, so you don't have permissions to get at it.

So you don't want to "get rid of administrator permissions" but instead give your user permission to access those files/folders.

You have to take ownership and/or give yourself permissions to the folder/files on that drive., and form there you'll be able to use them without these pop-ups.

See this existing SU question, and it's answers, to figure out how to grant yourself permission:

How do I get permissions to delete files on Windows 7?

Ƭᴇcʜιᴇ007

Posted 2014-02-28T18:20:02.117

Reputation: 103 763

3

There are two commands that are extremely useful in this scenario; often either one alone is sufficient, but both pretty much guarantee access: example: c:\dell>takeown /F * /R

The other approach is to use a more complicated program called "icacls". Icacls is a command line utility for managing access control lists - i.e. file access permissions. It has plethora of options that are fairly confusing.

Example: c:\dell>icacls * /grant:r everyone:f /t

smith mario

Posted 2014-02-28T18:20:02.117

Reputation: 31

1

  1. Turn off or Disable Antivirus

  2. Copy file(s)

  3. Turn on or Enable Antivirus

István József

Posted 2014-02-28T18:20:02.117

Reputation: 11

You said it all. The whole thing is about the antivirus firewall. No need to reset account. – John Max – 2015-11-21T03:16:42.120

0

Just make yourself the owner of the required folder(s) and drive(s):

  1. Right-click on Drive or Folder and select Properties.
  2. On the Security tab click Advanced button.
  3. In the top of the dialog click Change link next to the Owner.
  4. Select your account and click OK, OK and OK.

thims

Posted 2014-02-28T18:20:02.117

Reputation: 8 081

how to make myself owner? – arslion – 2014-02-28T18:26:58.977

Expand this question with instructions on how to Take Ownership and I'll reverse the downvote. – Michael Frank – 2014-02-28T18:53:47.067

Actually it's easy, see the expanded instructions above. – thims – 2014-03-03T12:28:47.733

0

If you're only looking to delete files, unlocker worked for me.

From this answer.

Felix

Posted 2014-02-28T18:20:02.117

Reputation: 101