vote up 1 vote down star

Huh?

I'm getting this message - "You don't have permissions to save in this folder" - even though I am the only user on this machine, and administrator.

How can I set permissions for myself to do everything, everywhere (including saving deleting etc)?

Thanks.

Edit: Sorry, forgot to say which folder it was. It is a folder in Program Files, where I save my PHP files for local testing.

Sorry if Im a bit daft with all this, but I've upgraded straight from XP to 7, and having never used vista, I'm used to being allowed to have full control.

flag
Which folder is that, by the way ? Some random folder, or something linked to the system ? – Gnoupi Sep 1 at 5:23
Why are you saving your php files in your program files folder anyways? I would never ever do that... I would have them in a folder on separate drive (or at least partition) in case I managed to crash my OS. If it is because you have some sort of Apache installation living there with a certain web root folder, that can always be changed to something else. – Svish Sep 1 at 6:07
I have the same problem in Vista – The Green Frog Sep 1 at 7:52

3 Answers

vote up 3 vote down

This is due to [UAC (User Access/Account Control)][1] On Windows Vista / 7, and trying to write to a protected folder.

Typically Windows 7 has much lower UAC, but it is still there, especially with older programs that are trying to write to places.

You need to not double click on a file to open, but right click on the program that it opens up in, and click "Run as Administrator", for example to launch command prompt.

alt text

When you save, you should be able to write to almost anywhere.

link|flag
Well, thats a pain in the ass. – James Sep 1 at 5:31
Yes, it's an equivalent to the "sudo" system under linux. Even if logged as an "administrator", you need to give administrator privileges to programs who write in "sensitive" places. However, this (UAC) can be fully deactivated, for a behavior close to XP, if that bothers you much. On the detriment of security, of course. – Gnoupi Sep 1 at 5:37
What is the File / Program you are trying to open, I may be able to find a better solution for you. – Wil Sep 1 at 5:46
vote up 1 vote down

I would get out of the habit of manually creating files in the "Program Files" folder. The purpose of that location is to hold static application files. You can force the files there by changing permissions on the folder or accepting the UAC prompt when doing a manual copy but if your application expects to change data there you have to elevate privileges. See http://stackoverflow.com/questions/946420/allow-access-permission-to-write-in-program-files-of-windows-7 for a good discussion of this.

link|flag
vote up 0 vote down

This appears when you do not have enough permissions to write to this folder without your administrative credentials (given to you by UAC).

You can right-click on that folder and select Permissions. Then go to Security tab. Once you are there, you will see that Users have only read rights. Change that to Full access and Windows will not complain anymore.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.