Some how, some way the account that creates folders under Temporary
Internet files has been changed to a domain account for VS 2003 and VS
2005. I recently installed VS 2005. All seemed to be ok afterwards.
I did no development for a couple of weeks, came back and I kept
receiving Access Denied to Microsoft.Net\Temporary Internet Files\...
Access is Denied. ASPNET had full access to that file and all
subfolders. The website I am working with is not impersonating. I
gave the Network Service account full access as well even though I have
IIS 5.0. I downloaded a FileMon utility from the Microsoft website.
It showed me that a domain account was now being used by VS 2003 and VS
2005 when trying to create the temp files for processing. I am not
sure how this was changed but would like to get it set to another
account.
Thanks in advance.
RS 5 3362
Copy this little file I wrote and run it from any folder in your application:
identity.aspx:
------------------
<%@ Page Language="VB" %>
<%@ Import NameSpace = System.Security.Principal %>
<script runat="server">
Sub Page_Load()
Dim tmp As String = WindowsIdentity.GetCurrent.Name()
Label1.Text = "ASP.NET is running as the account : " & tmp
End Sub
</script>
<html>
<head>
<title>What account is ASP.NET running as ?</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" Runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
------------
Running that page will return the name of the account ASP.NET is running as.
*That* account is the one that needs full permissions to the Temporary Folders tree
( not just for the root... ).
You might as well make sure the same account has the
necessary permissions to the directories listed in this article :
"ASP.NET Required Access Control Lists (ACLs)" http://msdn2.microsoft.com/en-us/library/kwzs111e.aspx
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
<ro*******@gmail.comwrote in message news:11**********************@m58g2000cwm.googlegr oups.com...
Some how, some way the account that creates folders under Temporary
Internet files has been changed to a domain account for VS 2003 and VS
2005. I recently installed VS 2005. All seemed to be ok afterwards.
I did no development for a couple of weeks, came back and I kept
receiving Access Denied to Microsoft.Net\Temporary Internet Files\...
Access is Denied. ASPNET had full access to that file and all
subfolders. The website I am working with is not impersonating. I7
gave the Network Service account full access as well even though I have
IIS 5.0. I downloaded a FileMon utility from the Microsoft website.
It showed me that a domain account was now being used by VS 2003 and VS
2005 when trying to create the temp files for processing. I am not
sure how this was changed but would like to get it set to another
account.
Thanks in advance.
RS
I did this and it states that ASPNET is running under
<computername>\aspnet. However, when Visual Studio tries to create
files under the Temporary Internet files folder it is using another
account...<DomainName>\generic user. I need to change this.
On Jan 26, 9:24 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Copy this little file I wrote and run it from any folder in your application:
identity.aspx:
------------------
<%@ Page Language="VB" %>
<%@ Import NameSpace = System.Security.Principal %>
<script runat="server">
Sub Page_Load()
Dim tmp As String = WindowsIdentity.GetCurrent.Name()
Label1.Text = "ASP.NET is running as the account : " & tmp
End Sub
</script>
<html>
<head>
<title>What account is ASP.NET running as ?</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" Runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
------------
Running that page will return the name of the account ASP.NET is running as.
*That* account is the one that needs full permissions to the Temporary Folders tree
( not just for the root... ).
You might as well make sure the same account has the
necessary permissions to the directories listed in this article :
"ASP.NET Required Access Control Lists (ACLs)"http://msdn2.microsoft.com/en-us/library/kwzs111e.aspx
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<rogers...@gmail.comwrote in messagenews:11**********************@m58g2000cwm.g ooglegroups.com...
Some how, some way the account that creates folders under Temporary
Internet files has been changed to a domain account for VS 2003 and VS
2005. I recently installed VS 2005. All seemed to be ok afterwards.
I did no development for a couple of weeks, came back and I kept
receiving Access Denied to Microsoft.Net\Temporary Internet Files\...
Access is Denied. ASPNET had full access to that file and all
subfolders. The website I am working with is not impersonating. I7
gave the Network Service account full access as well even though I have
IIS 5.0. I downloaded a FileMon utility from the Microsoft website.
It showed me that a domain account was now being used by VS 2003 and VS
2005 when trying to create the temp files for processing. I am not
sure how this was changed but would like to get it set to another
account.
Thanks in advance.
RS- Hide quoted text -- Show quoted text -
re:
I did this and it states that ASPNET is running under <computername>\aspnet.
That means you're using Windows XP, unless you changed the ASP.NET user on purpose.
Did you check whether the ASPNET account has the
necessary permissions for all the directories listed in : http://msdn2.microsoft.com/en-us/library/kwzs111e.aspx
?
re:
However, when Visual Studio tries to create files under the Temporary Internet
files folder it is using another account...<DomainName>\generic user.
By "generic user", do you mean the anonymous account ?
Also, does this happen when you use VS's ASP.NET development server, or when you use IIS ?
Checking which users are allowed to use the ASP.NET development
server is easy, just check the accounts authorized to run :
Drive:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ WebDev.WebServer.EXE
Right-click that file and select the "Properties" and then the "Security" tab.
The ASPNET account should be one of them.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
<ro*******@gmail.comwrote in message news:11*********************@k78g2000cwa.googlegro ups.com...
I did this and it states that ASPNET is running under
<computername>\aspnet. However, when Visual Studio tries to create
files under the Temporary Internet files folder it is using another
account...<DomainName>\generic user. I need to change this.
On Jan 26, 9:24 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Copy this little file I wrote and run it from any folder in your application:
identity.aspx:
------------------
<%@ Page Language="VB" %>
<%@ Import NameSpace = System.Security.Principal %>
<script runat="server">
Sub Page_Load()
Dim tmp As String = WindowsIdentity.GetCurrent.Name()
Label1.Text = "ASP.NET is running as the account : " & tmp
End Sub
</script>
<html>
<head>
<title>What account is ASP.NET running as ?</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" Runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
------------
Running that page will return the name of the account ASP.NET is running as.
*That* account is the one that needs full permissions to the Temporary Folders tree
( not just for the root... ).
You might as well make sure the same account has the
necessary permissions to the directories listed in this article :
"ASP.NET Required Access Control Lists (ACLs)" http://msdn2.microsoft.com/en-us/library/kwzs111e.aspx
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<rogers...@gmail.comwrote in
messagenews:11**********************@m58g2000cwm.g ooglegroups.com...
Some how, some way the account that creates folders under Temporary
Internet files has been changed to a domain account for VS 2003 and VS
2005. I recently installed VS 2005. All seemed to be ok afterwards.
I did no development for a couple of weeks, came back and I kept
receiving Access Denied to Microsoft.Net\Temporary Internet Files\...
Access is Denied. ASPNET had full access to that file and all
subfolders. The website I am working with is not impersonating. I7
gave the Network Service account full access as well even though I have
IIS 5.0. I downloaded a FileMon utility from the Microsoft website.
It showed me that a domain account was now being used by VS 2003 and VS
2005 when trying to create the temp files for processing. I am not
sure how this was changed but would like to get it set to another
account.
Thanks in advance.
RS- Hide quoted text -- Show quoted text -
However, when Visual Studio tries to create files under the Temporary Internet
files folder it is using another account...<DomainName>\generic user.By"generic user", do you mean the anonymous account ?
Also, does this happen when you use VS's ASP.NET development server, or when you use IIS ?
VS IDE.
Checking which users are allowed to use the ASP.NET development
server is easy, just check the accounts authorized to run :
Drive:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ WebDev.WebServer.EXE
Right-click that file and select the "Properties" and then the "Security"tab.
The ASPNET account should be one of them.
ASPNET is for this file which is for VS 2005, right? What about VS
2003?
On Jan 26, 11:36 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
I did this and it states that ASPNET is running under <computername>\aspnet.That means you're using Windows XP, unless you changed the ASP.NET user on purpose.
Did you check whether the ASPNET account has the
necessary permissions for all the directories listed in :
http://msdn2.microsoft.com/en-us/library/kwzs111e.aspx
?
re:
However, when Visual Studio tries to create files under the Temporary Internet
files folder it is using another account...<DomainName>\generic user.By"generic user", do you mean the anonymous account ?
Also, does this happen when you use VS's ASP.NET development server, or when you use IIS ?
Checking which users are allowed to use the ASP.NET development
server is easy, just check the accounts authorized to run :
Drive:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ WebDev.WebServer.EXE
Right-click that file and select the "Properties" and then the "Security"tab.
The ASPNET account should be one of them.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<rogers...@gmail.comwrote in messagenews:11*********************@k78g2000cwa.go oglegroups.com...I did this and it states that ASPNET is running under
<computername>\aspnet. However, when Visual Studio tries to create
files under the Temporary Internet files folder it is using another
account...<DomainName>\generic user. I need to change this.
On Jan 26, 9:24 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Copy this little file I wrote and run it from any folder in your application:
identity.aspx:
------------------
<%@ Page Language="VB" %>
<%@ Import NameSpace = System.Security.Principal %>
<script runat="server">
Sub Page_Load()
Dim tmp As String = WindowsIdentity.GetCurrent.Name()
Label1.Text = "ASP.NET is running as the account : " & tmp
End Sub
</script>
<html>
<head>
<title>What account is ASP.NET running as ?</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" Runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
------------
Running that page will return the name of the account ASP.NET is running as.
*That* account is the one that needs full permissions to the Temporary Folders tree
( not just for the root... ).
You might as well make sure the same account has the
necessary permissions to the directories listed in this article :
"ASP.NET Required Access Control Lists (ACLs)" http://msdn2.microsoft.com/en-us/library/kwzs111e.aspx
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<rogers...@gmail.comwrote in
messagenews:11**********************@m58g2000cwm.g ooglegroups.com...
Some how, some way the account that creates folders under Temporary
Internet files has been changed to a domain account for VS 2003 and VS
2005. I recently installed VS 2005. All seemed to be ok afterwards.
I did no development for a couple of weeks, came back and I kept
receiving Access Denied to Microsoft.Net\Temporary Internet Files\...
Access is Denied. ASPNET had full access to that file and all
subfolders. The website I am working with is not impersonating. I7
gave the Network Service account full access as well even though I have
IIS 5.0. I downloaded a FileMon utility from the Microsoft website.
It showed me that a domain account was now being used by VS 2003 and VS
2005 when trying to create the temp files for processing. I am not
sure how this was changed but would like to get it set to another
account.
Thanks in advance.
RS- Hide quoted text -- Show quoted text -- Hide quoted text -- Show quoted text -
re:
VS IDE
With the VS IDE, you can use both IIS and the Development Web Server.
If you're testing a file-based project, you're using the Dev Server.
If you're using HTTP, you're using IIS.
Which one is it you're using ?
re:
ASPNET is for this file which is for VS 2005, right?
No. The account used depends on the operating system/IIS version used.
IIS 5.0 and 5.1 use the ASPNET account.
IIS 6.0 uses the NETWORK SERVICE account.
VS 2005 will use whichever account corresponds to the OS/IIS version it runs under.
re:
What about VS 2003?
It will use whichever account corresponds to the OS/IIS version it runs under.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
<ro*******@gmail.comwrote in message news:11**********************@j27g2000cwj.googlegr oups.com...
However, when Visual Studio tries to create files under the Temporary Internet
files folder it is using another account...<DomainName>\generic user.By "generic user", do you
mean the anonymous account ?
Also, does this happen when you use VS's ASP.NET development server, or when you use IIS ?
VS IDE.
Checking which users are allowed to use the ASP.NET development
server is easy, just check the accounts authorized to run :
Drive:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ WebDev.WebServer.EXE
Right-click that file and select the "Properties" and then the "Security" tab.
The ASPNET account should be one of them.
ASPNET is for this file which is for VS 2005, right? What about VS
2003?
On Jan 26, 11:36 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
I did this and it states that ASPNET is running under <computername>\aspnet.That means you're
using Windows XP, unless you changed the ASP.NET user on purpose.
Did you check whether the ASPNET account has the
necessary permissions for all the directories listed in :
http://msdn2.microsoft.com/en-us/library/kwzs111e.aspx
?
re:
However, when Visual Studio tries to create files under the Temporary Internet
files folder it is using another account...<DomainName>\generic user.By "generic user", do you
mean the anonymous account ?
Also, does this happen when you use VS's ASP.NET development server, or when you use IIS ?
Checking which users are allowed to use the ASP.NET development
server is easy, just check the accounts authorized to run :
Drive:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ WebDev.WebServer.EXE
Right-click that file and select the "Properties" and then the "Security" tab.
The ASPNET account should be one of them.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<rogers...@gmail.comwrote in
messagenews:11*********************@k78g2000cwa.go oglegroups.com...I did this and it states that
ASPNET is running under
<computername>\aspnet. However, when Visual Studio tries to create
files under the Temporary Internet files folder it is using another
account...<DomainName>\generic user. I need to change this.
On Jan 26, 9:24 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Copy this little file I wrote and run it from any folder in your application:
identity.aspx:
------------------
<%@ Page Language="VB" %>
<%@ Import NameSpace = System.Security.Principal %>
<script runat="server">
Sub Page_Load()
Dim tmp As String = WindowsIdentity.GetCurrent.Name()
Label1.Text = "ASP.NET is running as the account : " & tmp
End Sub
</script>
<html>
<head>
<title>What account is ASP.NET running as ?</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" Runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
------------
Running that page will return the name of the account ASP.NET is running as.
*That* account is the one that needs full permissions to the Temporary Folders tree
( not just for the root... ).
You might as well make sure the same account has the
necessary permissions to the directories listed in this article :
"ASP.NET Required Access Control Lists (ACLs)" http://msdn2.microsoft.com/en-us/library/kwzs111e.aspx
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<rogers...@gmail.comwrote in
messagenews:11**********************@m58g2000cwm.g ooglegroups.com...
Some how, some way the account that creates folders under Temporary
Internet files has been changed to a domain account for VS 2003 and VS
2005. I recently installed VS 2005. All seemed to be ok afterwards.
I did no development for a couple of weeks, came back and I kept
receiving Access Denied to Microsoft.Net\Temporary Internet Files\...
Access is Denied. ASPNET had full access to that file and all
subfolders. The website I am working with is not impersonating. I7
gave the Network Service account full access as well even though I have
IIS 5.0. I downloaded a FileMon utility from the Microsoft website.
It showed me that a domain account was now being used by VS 2003 and VS
2005 when trying to create the temp files for processing. I am not
sure how this was changed but would like to get it set to another
account.
Thanks in advance.
RS- Hide quoted text -- Show quoted text -- Hide quoted text -- Show quoted text -
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: James_101 |
last post by:
My training piece is in Authorware. The user logs in with last name and a
four-digit number. Authorware sends this user identifier to an asp page
called db_read.asp. This file sends a SQL SELECT...
|
by: Web Webon |
last post by:
Hi everybody!
I wonder if this is possible?
I need to determine if a client is using "windows classic folders" or
anything else. If I instantiate a Shell ActiveX object is there a way
of...
|
by: Rosa |
last post by:
Hi,
I'm trying to clear the TIF on Windows XP programmatically with the
below code.
This code works fine on any folder but the TIF. For some reason the
atEnd() statements always defaults to true...
|
by: Jim |
last post by:
Is it possible to read the Temporary Internet Files folder using C#? I'm
messing with FileIO (newbie here) and everything seems to work fine until I
try to read the list of files in this Temporary...
|
by: VZUmar |
last post by:
Hi
I am using IWebBrowser2 in my VC++ windows Application, My application uses browser control to navigate through different web pages. IE of machine has Security setting "Empty Temporary Internet...
|
by: Norton |
last post by:
Hi all,
I would like to know if there is any method in asp or asp.net to direct the
browser to download a file into the Temporary Internet Files directory so
that i can make use of vb script to...
|
by: Nicolás Castagnet |
last post by:
Hi,
I write this post because I notice a strange behavior related with
"Temporary Internet Files" and maybe some of you can help me to understand
it.
I am working in a web application with...
|
by: JV |
last post by:
I'm trying to understand how ASP.NET creates web folders when it creates a
new ASP.NET project. I am experienced with DotNet development, but not an
expert on how IIS works. Or, this may be a...
|
by: =?Utf-8?B?Q2VzYXI=?= |
last post by:
Hello,
I started to use IIS 6.0 and created a web site (anonymous authentication
enabled with domain account). This web site contains several apps (web
services and "plain" web apps) and I want...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
| |