Reputation: 10402
to install a web application I need to give write permission for IIS 6.0 application to modify the App.config file.
How can I do that?
Thanks.
Upvotes: 0
Views: 413
Reputation: 46047
Have you tried giving the NETWORK SERVICE
(or whatever system account IIS is using) account write permissions to the config file?
To do this, navigate to the config file in windows explorer, right-click and select properties. Under the security tab add the NETWORK SERVICE
account with write permissions.
Upvotes: 2