set write rights on folder in deployment project

  • Thread starter Thread starter Jaroslaw Sos
  • Start date Start date
J

Jaroslaw Sos

Hi,

I would like to give all users write access to a part of my application
configuration files. It should work for every user on the system and
not just the logged in user.

Any ideas how it could be done?

Thx for any suggestions
Jaroslaw
 
Jaroslaw,

In setup projects each, each file and project output group has a ReadOnly property which may be set. (By default, this setting is false). Whether all user are able to run the application
depends on the install mode choosen when the application is run. (Msi's built with Visual Studio will have a page that asks how the application should be installed -- for current user only or for
all users).

If you are trying to change the values of custom settings in your application programmatically, I believe there is no direct way of doing this. All application configuration settings are read only
when accessing them programmatically. See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadvnet/html/vbnet04222003.asp for more info.

Hope this helps,
Elizabeth
--------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top