how to do these settings in config file

roseta

Member
Joined
Jun 7, 2004
Messages
7
Programming Experience
10+
hi all,

I had a problem with ASP.NET and the in microsoft for the solution has written two things to be done in machine.config file. but i do not know how to do that. can you help me to find out how to do that?

1-set the username attribute to system in the <processmodel> section of the machine.config file.

2-configure the <processmodel> section of the machine.config file to use an administrator account.


thanks in advance for your help.
roseta
 
Hi,

Machine.config file resides in the following path:

C:\WINNT\Microsoft.NET\Framework\v1.1.4322\CONFIG

Doubleclick the file and it will open up in visualstudio.net.
In this file search for the processmodel tag.
Change the username attribute to SYSTEM
By doing this the server is configured to run with the admin account.
Be careful while making the changes, because these changes affect all the application that run on the particular machine. And the file machine.config is case sensitive.

Good Luck.
 
userName="[user]" - Windows user to run the process as.
Special users: "SYSTEM": run as localsystem (high privilege admin) account.
"machine": run as low privilege user account named "ASPNET"

mine is this way is it correct
 
Back
Top