My application throws 'Access denied' errors when writing temporary files in the installation directory where the executable resides. However it works perfectly well in XP. How to provide access rights to Program Files directory in Windows 7?

EDIT: How to make the program ask the user to elevate rights? (ie run program with full admin rights)

link|improve this question

5  
It does only work in XP if you haven't properly tested it (installed as Administrator, used by standard users). Stuff like that has been discouraged now for many years, you should fix your application instead of hacking around. – mghie Jun 3 '09 at 18:46
1  
Do you mean it is because I'm doing some shoddy coding? Is so, pls explain so that I can improve. – darthvader Jun 3 '09 at 18:51
2  
Gergo Dries gives the correct answer below. Does your program actually need elevated privileges? Or are you trying to elevate privileges to support an unadvisable practice (i.e., writing temporary files to a directory where temporary files don't belong)? – Ben Dunlap Jun 3 '09 at 18:59
1  
You have a lot of correct answers already. I'm only saying that your assertion that "it works perfectly well in XP" is wrong, and probably comes from not testing your app under a limited account. Which you should do. You could try the Standard User Analyzer (technet.microsoft.com/de-de/library/cc766021(WS.10).aspx) to find the problematic areas of your application. – mghie Jun 3 '09 at 19:05
thanks a lot for the suggestion. I understand that my xp installation had full admin privileges for the account i use. – darthvader Jun 5 '09 at 6:00
feedback

11 Answers

up vote 38 down vote accepted

Your program should not write temporary files (or anything else for that matter) to the program directory. Any program should use %TEMP% for temporary files and %APPDATA% for user specific application data. This has been true since Windows 2000/XP so you should change your aplication.

The problem is not Windows 7.

link|improve this answer
2  
100% correct! More info here: social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/… – Greg Bray Aug 19 '10 at 23:50
feedback

Your program has to run with Administrative Rights. You can't do this automatically with code, but you can request the user (in code) to elevate the rights of your program while it's running. There's a wiki on how to do this. Alternatively, any program can be run as administrator by right-clicking its icon and clicking "Run as administrator".

However, I wouldn't suggest doing this. It would be better to use something like this:

Environment.GetFolderPath(SpecialFolder.ApplicationData);

to get the AppData Folder path and create a folder there for your app. Then put the temp files there.

link|improve this answer
But how to make the program ask the user to elevate rights? – darthvader Jun 3 '09 at 18:45
@n0vic3c0d3r I added a wiki reference for you. Hopefully that helps! – Joseph Jun 3 '09 at 18:46
thanks a lot for the suggestion – darthvader Jun 5 '09 at 6:02
feedback

Options I can think of:

  • Run entire app as full admin priv. using UAC
  • Run a sub-process as full admin for only those things needing access
  • Write temporary files elsewhere
link|improve this answer
feedback

If you have such a program just install it in C:\, not in Program Files. I had a lot of problems when I was installing Android SDK. My problem got solved by installing it in C:\.

link|improve this answer
feedback

You can't cause a .Net application to elevate it's own rights. It's simply not allowed. The best you can do is to specify elevated rights when you spawn another process. In this case you would have a two-stage application launch.

Stage 1 does nothing but prepare an elevated spawn using the System.Diagnostics.ProcessStartInfo object and the Start() call.

Stage 2 is the application running in an elevated state.

As mentioned above, though, you very rarely want to do this. And you certainly don't want to do it just so you can write temporary files into %programfiles%. Use this method only when you need to perform administrative actions like service start/stop, etc. Write your temporary files into a better place, as indicated in other answers here.

link|improve this answer
feedback

I think there is an alternate solution to all these problems.... Make an two level application. As said above...

1) Launcher which will launch another Main App using code such as (VB)

Call ShellExecute(hwnd, "runas", App.Path & "\MainApp.exe", 0, 0, vbNormalFocus)

2) Main App, which is writing to protected areas, ie Program Files folder

I've successfully tried this with windows 7

I'm also developing an app which has online update feature. But it doesn't work in Vista/W7..

I agree with other peoples about Microsoft Policies and Standard Practices.

But my Question is .. 1) How to apply update to an existing application, which probably always remain in Program Files folder. 2) There might be some way to do this, otherwise how goolge updater, antivirus updater or any software updater workes?

I need answer to my questions..... :o

Prof. Rajendra Khope (MIT, Pune, India)

link|improve this answer
feedback

Another way round it would be to stop UAC then restart it. Create a CMD file with the following code;

Rem Stop UAC %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f rem force reboot Start ShutDown /R /F /T 30

You'll need to right click on the CMD file and use run as admin. once you have finished what you are doing restart UAC with the following code (no need to use run as admin this time);

%windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f

rem force reboot Start ShutDown /R /F /T 30

The down sides to using this method is have to right click and use run as admin to close UAC down and you have to reboot for it to take effect.

BTW there are several reasons why you would need to write to the forbidden areas...the first two that springs to mind would be to run a batch file to append host to prevent your browser going to dodgy sites or to copy license keys in a silent install.

link|improve this answer
feedback

I agree with Saso. I feel that an ini file should be in the same folder as it's associated program. But since we have to deal with Microsoft reality I am trying to figure out the proper location for my application's data files that I want all users to have access to. I am thinking of creating a directory under C:\Users\Public. Is this the recommended location to store application data files that users will be writing to and saving?

Craig

link|improve this answer
feedback

To Rajendra:

To update your existing application (e.g. in c:\program files\your application), you need a seperate update program to do that. you need to elevate the updater program to runas administrator, in your updater, you can do whatever you want, like downloading files from Internet, replacing files in application folder. check the following link for how to elevate your program for launching. http://social.msdn.microsoft.com/Forums/en-US/windowssecurity/thread/dd400cb9-d5fc-41b2-ad9d-6b91ce88c766

link|improve this answer
feedback

I cannot agree with arguments, that it is better to write all files in other directories, e.g., %APPDATA%, it is only that you cannot avoid it, if you want to avoid running application as administrator on Windows 7.

It would be much cleaner to keep all application specific data (e.g. ini files) in the same folder as the application (or in sub folders) as to speed the data all over the disk (%APPDATA%, registry and who knows where else). This is just Microsoft idea of clean programming. Than of course you need registry cleaner, disk cleaner, temporary file cleaner, ... instead of e+very clean practice - removing the application folder removes all application specific data (exep user data, which is normally somewhere in My Documents or so).

In my programs I would prefer to have ini files in application directory, however, I do not have them there, only because I cannot have them there (on Windows).

link|improve this answer
2  
This practice is hardly unique to Windows. For example, the Unix paradigm of splitting file I/O into /bin, /var, /tmp, and /usr is several decades old. Also, the notion that placing files in the same filesystem directory will make them physically adjacent is terribly ignorant. – Richard Berg Jul 11 '10 at 3:19
feedback

It would be neater to create a folder named "c:\programs writable\" and put you app below that one. That way a jungle of low c-folders can be avoided.

The underlying trade-off is security versus ease-of-use. If you know what you are doing you want to be god on you own pc. If you must maintain healthy systems for your local anarchistic society, you may want to add some security.

link|improve this answer
-1 terrible idea – BlueRaja - Danny Pflughoeft Dec 20 '11 at 19:12
feedback

Your Answer

 
or
required, but never shown

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