| Home | Forums | Reviews | Guides | Newsgroups | Register | Search |
![]() |
| Thread Tools |
|
Arran Pearce
Guest
Posts: n/a
|
Hi,
How can i get my ASP Page or Web Service to run as the LocalSystem rather than a user? cheers |
|
|
|
|
|||
|
|||
| Arran Pearce |
|
|
|
| |
| Craig Deelsnyder |
|
|
|
| |
|
Yan-Hong Huang[MSFT]
Guest
Posts: n/a
|
Hi,
I think what you meant is ASP.NET impersonation. You could add a line in web.config to run an application as a configurable identity. For example: <identity impersonate="true" userName="contoso\Jane" password="pass"/> Please refer to http://msdn.microsoft.com/library/en...asp?frame=true for details. Thanks very much. Best regards, Yanhong Huang Microsoft Online Partner Support Get Secure! - www.microsoft.com/security This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- !From: "Craig Deelsnyder" <> !References: <> !Subject: Re: Identity System !Date: Sun, 27 Jul 2003 20:26:12 -0500 !Lines: 30 !X-Priority: 3 !X-MSMail-Priority: Normal !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 !Message-ID: <#> !Newsgroups: microsoft.public.dotnet.framework.aspnet !NNTP-Posting-Host: c-66-41-16-200.mn.client2.attbi.com 66.41.16.200 !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl !Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:162483 !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet ! !The default user for all apps is set in your machine.config file in your !local .NET installation folder (in a folder called config). If you look in !that file, in the <processModel> section user="machine" is pry what is set !right now. You can change that to SYSTEM as you want, but it is highly !recommended you don't do that (for security reasons). But it's your call. ! !In addition, I'm not sure, you may be able to define this in your local !web.config also, and thus override the machine.config setting. Haven't !investigated that myself, so dunno if you can do on an app by app basis... ! !Another alternative is to use impersonation, and set the user you want all !visitors to run under.... ! !-- !Craig Deelsnyder !Microsoft MVP - ASP/ASP.NET ! ! !"Arran Pearce" <> wrote in message !news:... !> Hi, !> !> How can i get my ASP Page or Web Service to run as the LocalSystem rather !> than a user? !> !> cheers !> !> ! ! ! |
|
|
|
|
|||
|
|||
| Yan-Hong Huang[MSFT] |
|
Arran Pearce
Guest
Posts: n/a
|
One other thing....
how to i get my application to run with the rights of the local system account? What would i enter in the username & password (in the web.config file). again....many thanks Arran "Yan-Hong Huang[MSFT]" <> wrote in message news > Hello Arran, > > You are welcome. Thanks very much for participating the community. > > Best regards, > Yanhong Huang > Microsoft Online Partner Support > > Get Secure! - www.microsoft.com/security > This posting is provided "AS IS" with no warranties, and confers no rights. > > -------------------- > !From: "Arran Pearce" <> > !References: <> <#> > <> > !Subject: Re: Identity System > !Date: Tue, 29 Jul 2003 08:50:15 +0100 > !Lines: 88 > !X-Priority: 3 > !X-MSMail-Priority: Normal > !X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 > !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 > !Message-ID: <#> > !Newsgroups: microsoft.public.dotnet.framework.aspnet > !NNTP-Posting-Host: 212.219.119.220 > !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl > !Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:162908 > !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > ! > !Thanks for the info. > ! > ! > ! > !"Yan-Hong Huang[MSFT]" <> wrote in message > !news:... > !> Hi, > !> > !> I think what you meant is ASP.NET impersonation. > !> > !> You could add a line in web.config to run an application as a configurable > !identity. For example: > !> > !> <identity impersonate="true" userName="contoso\Jane" password="pass"/> > !> > !> Please refer to > !http://msdn.microsoft.com/library/en...netimpersonati o > !n.asp?frame=true for details. > !> > !> Thanks very much. > !> > !> Best regards, > !> Yanhong Huang > !> Microsoft Online Partner Support > !> > !> Get Secure! - www.microsoft.com/security > !> This posting is provided "AS IS" with no warranties, and confers no > !rights. > !> > !> -------------------- > !> !From: "Craig Deelsnyder" <> > !> !References: <> > !> !Subject: Re: Identity System > !> !Date: Sun, 27 Jul 2003 20:26:12 -0500 > !> !Lines: 30 > !> !X-Priority: 3 > !> !X-MSMail-Priority: Normal > !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 > !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 > !> !Message-ID: <#> > !> !Newsgroups: microsoft.public.dotnet.framework.aspnet > !> !NNTP-Posting-Host: c-66-41-16-200.mn.client2.attbi.com 66.41.16.200 > !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl > !> !Xref: cpmsftngxa06.phx.gbl > !microsoft.public.dotnet.framework.aspnet:162483 > !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > !> ! > !> !The default user for all apps is set in your machine.config file in your > !> !local .NET installation folder (in a folder called config). If you look > !in > !> !that file, in the <processModel> section user="machine" is pry what is > !set > !> !right now. You can change that to SYSTEM as you want, but it is highly > !> !recommended you don't do that (for security reasons). But it's your > !call. > !> ! > !> !In addition, I'm not sure, you may be able to define this in your local > !> !web.config also, and thus override the machine.config setting. Haven't > !> !investigated that myself, so dunno if you can do on an app by app > !basis... > !> ! > !> !Another alternative is to use impersonation, and set the user you want > !all > !> !visitors to run under.... > !> ! > !> !-- > !> !Craig Deelsnyder > !> !Microsoft MVP - ASP/ASP.NET > !> ! > !> ! > !> !"Arran Pearce" <> wrote in message > !> !news:... > !> !> Hi, > !> !> > !> !> How can i get my ASP Page or Web Service to run as the LocalSystem > !rather > !> !> than a user? > !> !> > !> !> cheers > !> !> > !> !> > !> ! > !> ! > !> ! > !> > !> > ! > ! > ! > > |
|
|
|
|
|||
|
|||
| Arran Pearce |
|
Yan-Hong Huang[MSFT]
Guest
Posts: n/a
|
Hello Arran,
Craig has provided the answer already. Please look in machine.confign file in C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\confi g folder, in the <processModel> section user="machine" is what is set right now. You can change that to SYSTEM as you want, but it is not recommended sicne asp.net app will running under a more powerful account. Thanks. Best regards, Yanhong Huang Microsoft Online Partner Support Get Secure! - www.microsoft.com/security This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- !From: "Arran Pearce" <> !References: <> <#> <> <#> <> !Subject: Re: Identity System !Date: Wed, 30 Jul 2003 00:35:35 +0100 !Lines: 145 !X-Priority: 3 !X-MSMail-Priority: Normal !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 !Message-ID: <> !Newsgroups: microsoft.public.dotnet.framework.aspnet !NNTP-Posting-Host: host213-122-6-143.in-addr.btopenworld.com 213.122.6.143 !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP11.phx.gbl !Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163181 !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet ! !One other thing.... ! !how to i get my application to run with the rights of the local system !account? What would i enter in the username & password (in the web.config !file). ! !again....many thanks ! !Arran ! !"Yan-Hong Huang[MSFT]" <> wrote in message !news !> Hello Arran, !> !> You are welcome. Thanks very much for participating the community. !> !> Best regards, !> Yanhong Huang !> Microsoft Online Partner Support !> !> Get Secure! - www.microsoft.com/security !> This posting is provided "AS IS" with no warranties, and confers no !rights. !> !> -------------------- !> !From: "Arran Pearce" <> !> !References: <> !<#> !> <> !> !Subject: Re: Identity System !> !Date: Tue, 29 Jul 2003 08:50:15 +0100 !> !Lines: 88 !> !X-Priority: 3 !> !X-MSMail-Priority: Normal !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 !> !Message-ID: <#> !> !Newsgroups: microsoft.public.dotnet.framework.aspnet !> !NNTP-Posting-Host: 212.219.119.220 !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl !> !Xref: cpmsftngxa06.phx.gbl !microsoft.public.dotnet.framework.aspnet:162908 !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet !> ! !> !Thanks for the info. !> ! !> ! !> ! !> !"Yan-Hong Huang[MSFT]" <> wrote in message !> !news:... !> !> Hi, !> !> !> !> I think what you meant is ASP.NET impersonation. !> !> !> !> You could add a line in web.config to run an application as a !configurable !> !identity. For example: !> !> !> !> <identity impersonate="true" userName="contoso\Jane" password="pass"/> !> !> !> !> Please refer to !> !!http://msdn.microsoft.com/library/en...netimpersonati !o !> !n.asp?frame=true for details. !> !> !> !> Thanks very much. !> !> !> !> Best regards, !> !> Yanhong Huang !> !> Microsoft Online Partner Support !> !> !> !> Get Secure! - www.microsoft.com/security !> !> This posting is provided "AS IS" with no warranties, and confers no !> !rights. !> !> !> !> -------------------- !> !> !From: "Craig Deelsnyder" <> !> !> !References: <> !> !> !Subject: Re: Identity System !> !> !Date: Sun, 27 Jul 2003 20:26:12 -0500 !> !> !Lines: 30 !> !> !X-Priority: 3 !> !> !X-MSMail-Priority: Normal !> !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 !> !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 !> !> !Message-ID: <#> !> !> !Newsgroups: microsoft.public.dotnet.framework.aspnet !> !> !NNTP-Posting-Host: c-66-41-16-200.mn.client2.attbi.com 66.41.16.200 !> !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl !> !> !Xref: cpmsftngxa06.phx.gbl !> !microsoft.public.dotnet.framework.aspnet:162483 !> !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet !> !> ! !> !> !The default user for all apps is set in your machine.config file in !your !> !> !local .NET installation folder (in a folder called config). If you !look !> !in !> !> !that file, in the <processModel> section user="machine" is pry what is !> !set !> !> !right now. You can change that to SYSTEM as you want, but it is !highly !> !> !recommended you don't do that (for security reasons). But it's your !> !call. !> !> ! !> !> !In addition, I'm not sure, you may be able to define this in your !local !> !> !web.config also, and thus override the machine.config setting. !Haven't !> !> !investigated that myself, so dunno if you can do on an app by app !> !basis... !> !> ! !> !> !Another alternative is to use impersonation, and set the user you want !> !all !> !> !visitors to run under.... !> !> ! !> !> !-- !> !> !Craig Deelsnyder !> !> !Microsoft MVP - ASP/ASP.NET !> !> ! !> !> ! !> !> !"Arran Pearce" <> wrote in message !> !> !news:... !> !> !> Hi, !> !> !> !> !> !> How can i get my ASP Page or Web Service to run as the LocalSystem !> !rather !> !> !> than a user? !> !> !> !> !> !> cheers !> !> !> !> !> !> !> !> ! !> !> ! !> !> ! !> !> !> !> !> ! !> ! !> ! !> !> ! ! ! |
|
|
|
|
|||
|
|||
| Yan-Hong Huang[MSFT] |
|
Arran Pearce
Guest
Posts: n/a
|
So i have to change it for the whole server. I cant just change it for one
application? sorry if i am being very stupid here. thanks Arran "Yan-Hong Huang[MSFT]" <> wrote in message news:... > Hello Arran, > > Craig has provided the answer already. > > Please look in machine.confign file in C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\confi g folder, in the > <processModel> section user="machine" is what is set right now. You can change that to SYSTEM as you want, but it is not > recommended sicne asp.net app will running under a more powerful account. > > Thanks. > > Best regards, > Yanhong Huang > Microsoft Online Partner Support > > Get Secure! - www.microsoft.com/security > This posting is provided "AS IS" with no warranties, and confers no rights. > > -------------------- > !From: "Arran Pearce" <> > !References: <> <#> > <> <#> > <> > !Subject: Re: Identity System > !Date: Wed, 30 Jul 2003 00:35:35 +0100 > !Lines: 145 > !X-Priority: 3 > !X-MSMail-Priority: Normal > !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 > !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 > !Message-ID: <> > !Newsgroups: microsoft.public.dotnet.framework.aspnet > !NNTP-Posting-Host: host213-122-6-143.in-addr.btopenworld.com 213.122.6.143 > !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP11.phx.gbl > !Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163181 > !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > ! > !One other thing.... > ! > !how to i get my application to run with the rights of the local system > !account? What would i enter in the username & password (in the web.config > !file). > ! > !again....many thanks > ! > !Arran > ! > !"Yan-Hong Huang[MSFT]" <> wrote in message > !news > !> Hello Arran, > !> > !> You are welcome. Thanks very much for participating the community. > !> > !> Best regards, > !> Yanhong Huang > !> Microsoft Online Partner Support > !> > !> Get Secure! - www.microsoft.com/security > !> This posting is provided "AS IS" with no warranties, and confers no > !rights. > !> > !> -------------------- > !> !From: "Arran Pearce" <> > !> !References: <> > !<#> > !> <> > !> !Subject: Re: Identity System > !> !Date: Tue, 29 Jul 2003 08:50:15 +0100 > !> !Lines: 88 > !> !X-Priority: 3 > !> !X-MSMail-Priority: Normal > !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 > !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 > !> !Message-ID: <#> > !> !Newsgroups: microsoft.public.dotnet.framework.aspnet > !> !NNTP-Posting-Host: 212.219.119.220 > !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl > !> !Xref: cpmsftngxa06.phx.gbl > !microsoft.public.dotnet.framework.aspnet:162908 > !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > !> ! > !> !Thanks for the info. > !> ! > !> ! > !> ! > !> !"Yan-Hong Huang[MSFT]" <> wrote in message > !> !news:... > !> !> Hi, > !> !> > !> !> I think what you meant is ASP.NET impersonation. > !> !> > !> !> You could add a line in web.config to run an application as a > !configurable > !> !identity. For example: > !> !> > !> !> <identity impersonate="true" userName="contoso\Jane" password="pass"/> > !> !> > !> !> Please refer to > !> > !!http://msdn.microsoft.com/library/en...pnetimpersonat i > !o > !> !n.asp?frame=true for details. > !> !> > !> !> Thanks very much. > !> !> > !> !> Best regards, > !> !> Yanhong Huang > !> !> Microsoft Online Partner Support > !> !> > !> !> Get Secure! - www.microsoft.com/security > !> !> This posting is provided "AS IS" with no warranties, and confers no > !> !rights. > !> !> > !> !> -------------------- > !> !> !From: "Craig Deelsnyder" <> > !> !> !References: <> > !> !> !Subject: Re: Identity System > !> !> !Date: Sun, 27 Jul 2003 20:26:12 -0500 > !> !> !Lines: 30 > !> !> !X-Priority: 3 > !> !> !X-MSMail-Priority: Normal > !> !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 > !> !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 > !> !> !Message-ID: <#> > !> !> !Newsgroups: microsoft.public.dotnet.framework.aspnet > !> !> !NNTP-Posting-Host: c-66-41-16-200.mn.client2.attbi.com 66.41.16.200 > !> !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl > !> !> !Xref: cpmsftngxa06.phx.gbl > !> !microsoft.public.dotnet.framework.aspnet:162483 > !> !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > !> !> ! > !> !> !The default user for all apps is set in your machine.config file in > !your > !> !> !local .NET installation folder (in a folder called config). If you > !look > !> !in > !> !> !that file, in the <processModel> section user="machine" is pry what is > !> !set > !> !> !right now. You can change that to SYSTEM as you want, but it is > !highly > !> !> !recommended you don't do that (for security reasons). But it's your > !> !call. > !> !> ! > !> !> !In addition, I'm not sure, you may be able to define this in your > !local > !> !> !web.config also, and thus override the machine.config setting. > !Haven't > !> !> !investigated that myself, so dunno if you can do on an app by app > !> !basis... > !> !> ! > !> !> !Another alternative is to use impersonation, and set the user you want > !> !all > !> !> !visitors to run under.... > !> !> ! > !> !> !-- > !> !> !Craig Deelsnyder > !> !> !Microsoft MVP - ASP/ASP.NET > !> !> ! > !> !> ! > !> !> !"Arran Pearce" <> wrote in message > !> !> !news:... > !> !> !> Hi, > !> !> !> > !> !> !> How can i get my ASP Page or Web Service to run as the LocalSystem > !> !rather > !> !> !> than a user? > !> !> !> > !> !> !> cheers > !> !> !> > !> !> !> > !> !> ! > !> !> ! > !> !> ! > !> !> > !> !> > !> ! > !> ! > !> ! > !> > !> > ! > ! > ! > > |
|
|
|
|
|||
|
|||
| Arran Pearce |
|
Kevin Spencer
Guest
Posts: n/a
|
If you were running a hosting service, hosting clients that ran ASP.Net
sites, would you want them to simply allow their apps to run under your SYSTEM account? -- HTH, Kevin Spencer Microsoft MVP ..Net Developer http://www.takempis.com Complex things are made up of lots of simple things. "Arran Pearce" <> wrote in message news:Ox%... > So i have to change it for the whole server. I cant just change it for one > application? > > sorry if i am being very stupid here. > > thanks > > Arran > > "Yan-Hong Huang[MSFT]" <> wrote in message > news:... > > Hello Arran, > > > > Craig has provided the answer already. > > > > Please look in machine.confign file in > C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\confi g folder, in the > > <processModel> section user="machine" is what is set right now. You can > change that to SYSTEM as you want, but it is not > > recommended sicne asp.net app will running under a more powerful account. > > > > Thanks. > > > > Best regards, > > Yanhong Huang > > Microsoft Online Partner Support > > > > Get Secure! - www.microsoft.com/security > > This posting is provided "AS IS" with no warranties, and confers no > rights. > > > > -------------------- > > !From: "Arran Pearce" <> > > !References: <> > <#> > > <> > <#> > > <> > > !Subject: Re: Identity System > > !Date: Wed, 30 Jul 2003 00:35:35 +0100 > > !Lines: 145 > > !X-Priority: 3 > > !X-MSMail-Priority: Normal > > !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 > > !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 > > !Message-ID: <> > > !Newsgroups: microsoft.public.dotnet.framework.aspnet > > !NNTP-Posting-Host: host213-122-6-143.in-addr.btopenworld.com > 213.122.6.143 > > !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP11.phx.gbl > > !Xref: cpmsftngxa06.phx.gbl > microsoft.public.dotnet.framework.aspnet:163181 > > !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > > ! > > !One other thing.... > > ! > > !how to i get my application to run with the rights of the local system > > !account? What would i enter in the username & password (in the > web.config > > !file). > > ! > > !again....many thanks > > ! > > !Arran > > ! > > !"Yan-Hong Huang[MSFT]" <> wrote in message > > !news > > !> Hello Arran, > > !> > > !> You are welcome. Thanks very much for participating the community. > > !> > > !> Best regards, > > !> Yanhong Huang > > !> Microsoft Online Partner Support > > !> > > !> Get Secure! - www.microsoft.com/security > > !> This posting is provided "AS IS" with no warranties, and confers no > > !rights. > > !> > > !> -------------------- > > !> !From: "Arran Pearce" <> > > !> !References: <> > > !<#> > > !> <> > > !> !Subject: Re: Identity System > > !> !Date: Tue, 29 Jul 2003 08:50:15 +0100 > > !> !Lines: 88 > > !> !X-Priority: 3 > > !> !X-MSMail-Priority: Normal > > !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 > > !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 > > !> !Message-ID: <#> > > !> !Newsgroups: microsoft.public.dotnet.framework.aspnet > > !> !NNTP-Posting-Host: 212.219.119.220 > > !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl > > !> !Xref: cpmsftngxa06.phx.gbl > > !microsoft.public.dotnet.framework.aspnet:162908 > > !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > > !> ! > > !> !Thanks for the info. > > !> ! > > !> ! > > !> ! > > !> !"Yan-Hong Huang[MSFT]" <> wrote in message > > !> !news:... > > !> !> Hi, > > !> !> > > !> !> I think what you meant is ASP.NET impersonation. > > !> !> > > !> !> You could add a line in web.config to run an application as a > > !configurable > > !> !identity. For example: > > !> !> > > !> !> <identity impersonate="true" userName="contoso\Jane" > password="pass"/> > > !> !> > > !> !> Please refer to > > !> > > > !!http://msdn.microsoft.com/library/en...pnetimpersonat > i > > !o > > !> !n.asp?frame=true for details. > > !> !> > > !> !> Thanks very much. > > !> !> > > !> !> Best regards, > > !> !> Yanhong Huang > > !> !> Microsoft Online Partner Support > > !> !> > > !> !> Get Secure! - www.microsoft.com/security > > !> !> This posting is provided "AS IS" with no warranties, and confers no > > !> !rights. > > !> !> > > !> !> -------------------- > > !> !> !From: "Craig Deelsnyder" <> > > !> !> !References: <> > > !> !> !Subject: Re: Identity System > > !> !> !Date: Sun, 27 Jul 2003 20:26:12 -0500 > > !> !> !Lines: 30 > > !> !> !X-Priority: 3 > > !> !> !X-MSMail-Priority: Normal > > !> !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 > > !> !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 > > !> !> !Message-ID: <#> > > !> !> !Newsgroups: microsoft.public.dotnet.framework.aspnet > > !> !> !NNTP-Posting-Host: c-66-41-16-200.mn.client2.attbi.com 66.41.16.200 > > !> !> !Path: > cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl > > !> !> !Xref: cpmsftngxa06.phx.gbl > > !> !microsoft.public.dotnet.framework.aspnet:162483 > > !> !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > > !> !> ! > > !> !> !The default user for all apps is set in your machine.config file in > > !your > > !> !> !local .NET installation folder (in a folder called config). If you > > !look > > !> !in > > !> !> !that file, in the <processModel> section user="machine" is pry what > is > > !> !set > > !> !> !right now. You can change that to SYSTEM as you want, but it is > > !highly > > !> !> !recommended you don't do that (for security reasons). But it's > your > > !> !call. > > !> !> ! > > !> !> !In addition, I'm not sure, you may be able to define this in your > > !local > > !> !> !web.config also, and thus override the machine.config setting. > > !Haven't > > !> !> !investigated that myself, so dunno if you can do on an app by app > > !> !basis... > > !> !> ! > > !> !> !Another alternative is to use impersonation, and set the user you > want > > !> !all > > !> !> !visitors to run under.... > > !> !> ! > > !> !> !-- > > !> !> !Craig Deelsnyder > > !> !> !Microsoft MVP - ASP/ASP.NET > > !> !> ! > > !> !> ! > > !> !> !"Arran Pearce" <> wrote in message > > !> !> !news:... > > !> !> !> Hi, > > !> !> !> > > !> !> !> How can i get my ASP Page or Web Service to run as the > LocalSystem > > !> !rather > > !> !> !> than a user? > > !> !> !> > > !> !> !> cheers > > !> !> !> > > !> !> !> > > !> !> ! > > !> !> ! > > !> !> ! > > !> !> > > !> !> > > !> ! > > !> ! > > !> ! > > !> > > !> > > ! > > ! > > ! > > > > > > |
|
|
|
|
|||
|
|||
| Kevin Spencer |
|
Arran Pearce
Guest
Posts: n/a
|
Yeah fair point.
only reason i was wanting to run as system was because i am doing some testing with CDO on a exchange server. thanks for all the info everyone anyway. arran "Kevin Spencer" <> wrote in message news:... > If you were running a hosting service, hosting clients that ran ASP.Net > sites, would you want them to simply allow their apps to run under your > SYSTEM account? > > -- > HTH, > > Kevin Spencer > Microsoft MVP > .Net Developer > http://www.takempis.com > Complex things are made up of > lots of simple things. > > "Arran Pearce" <> wrote in message > news:Ox%... > > So i have to change it for the whole server. I cant just change it for > one > > application? > > > > sorry if i am being very stupid here. > > > > thanks > > > > Arran > > > > "Yan-Hong Huang[MSFT]" <> wrote in message > > news:... > > > Hello Arran, > > > > > > Craig has provided the answer already. > > > > > > Please look in machine.confign file in > > C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\confi g folder, in the > > > <processModel> section user="machine" is what is set right now. You can > > change that to SYSTEM as you want, but it is not > > > recommended sicne asp.net app will running under a more powerful > account. > > > > > > Thanks. > > > > > > Best regards, > > > Yanhong Huang > > > Microsoft Online Partner Support > > > > > > Get Secure! - www.microsoft.com/security > > > This posting is provided "AS IS" with no warranties, and confers no > > rights. > > > > > > -------------------- > > > !From: "Arran Pearce" <> > > > !References: <> > > <#> > > > <> > > <#> > > > <> > > > !Subject: Re: Identity System > > > !Date: Wed, 30 Jul 2003 00:35:35 +0100 > > > !Lines: 145 > > > !X-Priority: 3 > > > !X-MSMail-Priority: Normal > > > !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 > > > !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 > > > !Message-ID: <> > > > !Newsgroups: microsoft.public.dotnet.framework.aspnet > > > !NNTP-Posting-Host: host213-122-6-143.in-addr.btopenworld.com > > 213.122.6.143 > > > !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP11.phx.gbl > > > !Xref: cpmsftngxa06.phx.gbl > > microsoft.public.dotnet.framework.aspnet:163181 > > > !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > > > ! > > > !One other thing.... > > > ! > > > !how to i get my application to run with the rights of the local system > > > !account? What would i enter in the username & password (in the > > web.config > > > !file). > > > ! > > > !again....many thanks > > > ! > > > !Arran > > > ! > > > !"Yan-Hong Huang[MSFT]" <> wrote in message > > > !news > > > !> Hello Arran, > > > !> > > > !> You are welcome. Thanks very much for participating the community. > > > !> > > > !> Best regards, > > > !> Yanhong Huang > > > !> Microsoft Online Partner Support > > > !> > > > !> Get Secure! - www.microsoft.com/security > > > !> This posting is provided "AS IS" with no warranties, and confers no > > > !rights. > > > !> > > > !> -------------------- > > > !> !From: "Arran Pearce" <> > > > !> !References: <> > > > !<#> > > > !> <> > > > !> !Subject: Re: Identity System > > > !> !Date: Tue, 29 Jul 2003 08:50:15 +0100 > > > !> !Lines: 88 > > > !> !X-Priority: 3 > > > !> !X-MSMail-Priority: Normal > > > !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 > > > !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 > > > !> !Message-ID: <#> > > > !> !Newsgroups: microsoft.public.dotnet.framework.aspnet > > > !> !NNTP-Posting-Host: 212.219.119.220 > > > !> !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl > > > !> !Xref: cpmsftngxa06.phx.gbl > > > !microsoft.public.dotnet.framework.aspnet:162908 > > > !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > > > !> ! > > > !> !Thanks for the info. > > > !> ! > > > !> ! > > > !> ! > > > !> !"Yan-Hong Huang[MSFT]" <> wrote in > message > > > !> !news:... > > > !> !> Hi, > > > !> !> > > > !> !> I think what you meant is ASP.NET impersonation. > > > !> !> > > > !> !> You could add a line in web.config to run an application as a > > > !configurable > > > !> !identity. For example: > > > !> !> > > > !> !> <identity impersonate="true" userName="contoso\Jane" > > password="pass"/> > > > !> !> > > > !> !> Please refer to > > > !> > > > > > > !!http://msdn.microsoft.com/library/en...pnetimpersonat > > i > > > !o > > > !> !n.asp?frame=true for details. > > > !> !> > > > !> !> Thanks very much. > > > !> !> > > > !> !> Best regards, > > > !> !> Yanhong Huang > > > !> !> Microsoft Online Partner Support > > > !> !> > > > !> !> Get Secure! - www.microsoft.com/security > > > !> !> This posting is provided "AS IS" with no warranties, and confers > no > > > !> !rights. > > > !> !> > > > !> !> -------------------- > > > !> !> !From: "Craig Deelsnyder" <> > > > !> !> !References: <> > > > !> !> !Subject: Re: Identity System > > > !> !> !Date: Sun, 27 Jul 2003 20:26:12 -0500 > > > !> !> !Lines: 30 > > > !> !> !X-Priority: 3 > > > !> !> !X-MSMail-Priority: Normal > > > !> !> !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 > > > !> !> !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 > > > !> !> !Message-ID: <#> > > > !> !> !Newsgroups: microsoft.public.dotnet.framework.aspnet > > > !> !> !NNTP-Posting-Host: c-66-41-16-200.mn.client2.attbi.com > 66.41.16.200 > > > !> !> !Path: > > cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl > > > !> !> !Xref: cpmsftngxa06.phx.gbl > > > !> !microsoft.public.dotnet.framework.aspnet:162483 > > > !> !> !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > > > !> !> ! > > > !> !> !The default user for all apps is set in your machine.config file > in > > > !your > > > !> !> !local .NET installation folder (in a folder called config). If > you > > > !look > > > !> !in > > > !> !> !that file, in the <processModel> section user="machine" is pry > what > > is > > > !> !set > > > !> !> !right now. You can change that to SYSTEM as you want, but it is > > > !highly > > > !> !> !recommended you don't do that (for security reasons). But it's > > your > > > !> !call. > > > !> !> ! > > > !> !> !In addition, I'm not sure, you may be able to define this in your > > > !local > > > !> !> !web.config also, and thus override the machine.config setting. > > > !Haven't > > > !> !> !investigated that myself, so dunno if you can do on an app by app > > > !> !basis... > > > !> !> ! > > > !> !> !Another alternative is to use impersonation, and set the user you > > want > > > !> !all > > > !> !> !visitors to run under.... > > > !> !> ! > > > !> !> !-- > > > !> !> !Craig Deelsnyder > > > !> !> !Microsoft MVP - ASP/ASP.NET > > > !> !> ! > > > !> !> ! > > > !> !> !"Arran Pearce" <> wrote in message > > > !> !> !news:... > > > !> !> !> Hi, > > > !> !> !> > > > !> !> !> How can i get my ASP Page or Web Service to run as the > > LocalSystem > > > !> !rather > > > !> !> !> than a user? > > > !> !> !> > > > !> !> !> cheers > > > !> !> !> > > > !> !> !> > > > !> !> ! > > > !> !> ! > > > !> !> ! > > > !> !> > > > !> !> > > > !> ! > > > !> ! > > > !> ! > > > !> > > > !> > > > ! > > > ! > > > ! > > > > > > > > > > > > |
|
|
|
|
|||
|
|||
| Arran Pearce |
|
|
|
| |
![]() |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ASP.NET 2.0 Impersonation of fixed identity - truncation of identity | JimLad | ASP .Net | 0 | 01-16-2009 10:42 AM |
| HttpContext.Current.User.Identity.Name AND Context.User.Identity.Name; | nalbayo | ASP .Net | 2 | 11-11-2005 11:12 PM |
| Difference between System.Web.HttpContext.Current.User.Identity.Name and System.Threading.Thread.CurrentPrincipal.Identity.Name | jeremy.rice@alkermes.com | ASP .Net Security | 5 | 11-08-2005 05:25 PM |
| Issue with Identity Impersonation and user identity used passed for trusted SQL connection. | Frederick D'hont | ASP .Net Security | 0 | 07-25-2005 02:41 PM |
| Difference between HttpContext.Current.User.Identity and identity Impersonation | Giovanni Bassi | ASP .Net | 0 | 10-20-2003 02:25 PM |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc..
SEO by vBSEO ©2010, Crawlability, Inc. |




