How to give asp.net account administration permissions in windows xp?
Hi,
I have XP installed & I am working with visual studio .net 2005.
I want to know how to give administrator permissions to the ASP.net account in xp.
Please help me with the same cause this improper permission to the account is causing problem to running some files.
How to give asp.net account administration permissions in windows xp?
Thanks in advance.
Re: How to give asp.net account administration permissions in windows xp?
HEy I don't know about the permissions but few days ago I recognized same asp.net account on my machine too Me & my brother use this machine but I dont know why he created this account & I am quite curious about this account why we should have such user account?
I want to know that is it ok to delete the account?
I don't want such account on the machine. Since my brother got a new laptop & is not using this machine anymore.
Please guide.
Re: How to give asp.net account administration permissions in windows xp?
Default permissions for the ASPNET account
The ASPNET account is created as a local account when you install ASP.NET. The ASPNET account belongs only to the Users group on that computer. Therefore, the ASPNET account has all of the rights that are associated with the Users group and can access any resources that the Users group is granted access to. The ASPNET account inherits the following user rights from the Users group.
User right Explanation
SeChangeNotifyPrivilege Bypass traverse checking.
SeUndockPrivilege Remove the computer from the docking station.
SeInteractiveLogonRight Log on locally.
SeNetworkLogonRight Access this computer from the network.
In addition to these rights, the ASPNET account is also granted the following rights by default:
User right Explanation
SeServiceLogonRight Log on as a service.
SeBatchLogonRight Log on as a batch job.
SeDenyInteractiveLogonRight Deny log on locally.
ASP.NET grants specific, full-access permissions for the ASPNET account to the following folders:
* Temporary ASP.NET Files
* %windir%\temp
Additionally, ASP.NET grants Read permission to the Microsoft .NET Framework installation directory.
Enabling impersonation
With impersonation, you run in the security context of the request entity, either as an authenticated user or as an anonymous user. In ASP.NET, impersonation is optional and is not enabled by default. To enable impersonation at the level of the computer or the application, add the following configuration directive in the <system.web> section of the Machine.config or the Web.config file:
Code:
<identity impersonate="true"/>
for more details: http://support.microsoft.com/kb/317012
Re: How to give asp.net account administration permissions in windows xp?
The aspnet_wp or ASP.NET Machine Account is created when the Microsoft .Net Framework 1.1 is installed onto a Windows XP computer. The user is created to run the asp.net worker process used in Microsoft's Internet Information Services, which allows ASP.net to run on your local web server (This is pretty much its only use, it is not used to run normal .net managed executables). There is not a need to worry about this user's presence; it was not created in malicious way.
ASP.net is a programming framework built on the common language runtime (Microsoft .net framework) which can be used on a server to build powerful Web applications. For more information on ASP.net
You can remove this account, but it is vital if you do asp.net development work on your machine.
By removing the account you may find your ASP.net projects will no longer function correctly.
t is possible to recreate the user by issuing the following command from the run dialog (changing the framework version number as appropriate)
%systemroot%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe /i
I hope this helps.