Disable UAC controlling the saving of files in Windows 7

0

I recently upgraded to Windows 7 from XP and I am getting used to the new UAC it has; I don't mind the extra clicks to install programs and what not, however what is annoying me is that files I have created previously on XP it now won't let me save them after editing them - I have tried in multiple text editors to save files and I keep getting access denied errors.

From my research I have found this is likely due to UAC; I noticed you need to right click the file or something and select run as administrator; I am a coder and work with dozens of files on a daily basis so I have no intention of having to do something like that for every file I want to work with.

Is there anyway to disable this behaviour without disabling the whole UAC?

Brett

Posted 2015-12-11T15:12:14.310

Reputation: 761

1Where are the files in question locates on your hard disk? And did you upgrade or perform a clean installation? In essence, you’re trying to solve the wrong problem. You don’t have a UAC problem. You have an ACL problem. – Daniel B – 2015-12-13T16:33:07.707

@DanielB They're not located inside program files. They're just inside a custom directory on a different drive than Windows is installed on. – Brett – 2015-12-13T16:39:56.100

@DanielB Oh and it was a clean install. – Brett – 2015-12-13T16:40:17.470

@DanielB Solved it, ACL issue as you said. – Brett – 2015-12-13T16:58:08.423

@Brett Can you share what worked if Slayers steps didn't? – Jason C – 2015-12-13T18:03:15.367

1@JasonC Happy to do so, but was giving Daniel a chance to post an answer so I could accept it since he was the one that led me to the solution :) – Brett – 2015-12-14T13:20:09.107

Answers

1

Make sure your permissions are set correctly in your drive's folders.

You can check this by going to a folder where it tells you "Access Denied", entering Properties > Security, and making sure that the Users group has Full control checked. If the Users group is not present, you can remedy this by clicking the Edit... button, then Add..., then typing in Users and checking the Full control box.

oldmud0

Posted 2015-12-11T15:12:14.310

Reputation: 3 858

0

You have to take ownership of a folders/files. Try this:

  • Right-click the folder that you want to take ownership of, and then click Properties.
  • Click the Security tab, click Advanced, and then click the Owner tab.
  • Click Edit. Administrator permission required If you are prompted for an administrator password or confirmation, type the password or provide confirmation.
  • Click the name of the person you want to give ownership to.
  • If you want that person to be the owner of files and subfolders in this folder, select the Replace owner on subcontainers and objects check box.
  • Click OK, and you're done.

That's it!

SlAy3r

Posted 2015-12-11T15:12:14.310

Reputation: 21

Didn't work unfortunately :( – Brett – 2015-12-13T16:38:42.720

-2

On Windows 7, just disable UAC, it was designed to annoy users and put pressure on software developers at the time and has long since served its purpose. There are more effective ways to protect your machine that have a different philosophy than UAC did. UAC was designed "to change the ecosystem", and it did, and now it's done.

That said, if you're developing software, it at least serves the purpose of notifying you, a developer, that your application is doing something that activates a prompt.

By the way, if you're a developer, unless you have a specific reason to stay on 7, you might want to at least dual boot 10 for software testing to catch issues with your software that aren't present on 7. Microsoft dropped official support for 7 a while back as well so you're going to start seeing a larger and larger disconnect between your development environment and your users. You don't want to find yourself in a situation in the future where you're suddenly forced to debug a Windows 10 issue and you run into a slew of other unpredicted development issues with a last minute Windows 10 upgrade. I know this because I've been there...

Jason C

Posted 2015-12-11T15:12:14.310

Reputation: 8 273

Comments are not for extended discussion; this conversation has been moved to chat.

– random – 2015-12-13T20:58:37.717

Thanks but I'm a Web Dev, not a Software Dev so OS isn't a big a issue for me. :) – Brett – 2015-12-14T13:16:48.690