How can I disable access denied when copying from network drive to program files?

4

1

I have a mapped network drive (to samba on local network) and when I try to copy a file from it to Program Files or other "secure" folders UAC pops up I confirm, and it still gives me access denied.

The workaround I'm using: I first copy the file to "unsecure" folder like Desktop and then copy it to Program Files. Still asks for UAC, but works.

Is there a way to disable this behaviour?

Edit

I'm a developer and I have specific reason to copy to Program Files. Also I don't want to turn off UAC. If you read correctly I want to disable "Access denied" message after I click yes to the UAC prompt.

Consider the circumstances:

  • This happens when copying from network mapped drive
  • When copying to Program files
  • Copying from Desktop to Program Files works (after confirming UAC prompt)

Kugel

Posted 2011-07-13T10:02:19.673

Reputation: 513

Check this out this Microsoft KB This should be exactly what you're looking for. Also, this question should be marked as a duplicate of http://stackoverflow.com/questions/1267085/, or at least linked somehow.

– cmorse – 2011-11-01T16:10:52.823

you don't have to be so hostile, a simple explanation as to why certain actions are not possible is sufficient. – Sathyajith Bhat – 2011-07-25T10:47:20.140

Sorry, but 2 answers were already telling me to turn off UAC. – Kugel – 2011-07-25T14:27:42.623

1As a fellow developer I understand your pain. I needed to resolve a similar case back when Vista and UAC first came along. My advice is that you really really reconsider writing in Program Files. You are basically fighting against Microsofts security intentions. I found a solution that worked, and it broke a few security updates later. So in the end I gave in and modified my application to use the recommended place to store the files I needed to muck about with. C:\Users\Default\AppData – Nifle – 2011-07-25T14:41:39.240

This is not done programmatically, I would never do that to a user PC. This is a manual thing I do when deploying a debug version of a plug-in. It was just annoying hence the question. – Kugel – 2011-07-25T16:27:50.847

Answers

1

Disabling UAC is not enough.

You need to disable Admin Approval Mode (requires restart). More details here (option B, last screen shot): http://www.petri.co.il/disable-uac-in-windows-7.htm

This worked for me and now I can work w/ files and folders from Program Files w/o any more UAC prompts.

Paul

Posted 2011-07-13T10:02:19.673

Reputation: 34

0

Instead of disabling UAC - you can achieve exactly what you want by disabling the LocalAccountTokenFilter, which is what strips the admin token from all incoming network connections. https://support.microsoft.com/en-us/kb/951016

I run this on my own network and get full control over the remote shares.

Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
Value: LocalAccountTokenFilterPolicy
Data: 1 (to disable, 0 enables filtering)
Type: REG_DWORD (32-bit)

BowlesCR

Posted 2011-07-13T10:02:19.673

Reputation: 2 607

-1

If you must, take ownership of the Program Files folder (and subfolders). After taking ownership, give the Administrators group full permissions (realize, however, that this will open you up to security issues such as malware).

To do so:

  1. Go to > Start > All Programs > Accessories

  2. Right-click on Command Prompt, and then click Run as Administrator.

  3. Type the following command and press Enter:

    takeown /f [path to folder] /r /d y
    
  4. To assign the Administrators group Full Control Permissions for the folder, use this command and hit Enter:

    icacls [path to folder] /grant administrators:F /T
    

Moab

Posted 2011-07-13T10:02:19.673

Reputation: 54 203

Also make sure the destination folder(s) are not marked as 'read only'. All those 3 steps in tandem provide full access correctly. – Der Hochstapler – 2012-05-22T10:48:59.743

In addition to what Moab mentions also make sure the destination folder(s) are not marked as 'read only'. All those 3 steps in tandem provide full access correctly. – None – 2012-05-22T10:45:22.487