Access Denied w/Impersonate=true

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Re: Access Denied w/Impersonate=true

    The error says that the user doesn't have permission to access to the temp
    folder. Using impersonate=true the user identity is the identity of the user
    that opens the browser.
    Please, check this article
    [url]http://support.microsoft.com/default.aspx?kbid=317012#4[/url] in order to check
    the permission needed.
    Probably you may solve your problem setting for Everyone Full control on the
    Temp folder.

    HtH,
    --
    This posting is provided "AS IS" with no warranties, and confers no rights.

    "Rich Yadach" <ryadach@travelers.com> wrote in message
    news:u0delWoQEHA.1160@TK2MSFTNGP09.phx.gbl...
    > Does anyone have any ideas or comments on this?
    >
    >
    >
    > The problem seems to stem from having Impersonate=True set in our
    web.config
    > files (Version 1.1).
    >
    >
    >
    > Here is the error we encountered .
    >
    >
    >
    > The actual filename changes every time you try to load the page:
    >
    > An error has occurred: Access to the path
    > "C:\DOCUME~1\servername\ASPNET\LOCALS~1\Temp\olvtg 0lf.0.vb" is denied.
    >
    >
    >
    > This is what I grabbed from the server's event viewer:
    >
    > 1) Exception Information
    >
    > *********************************************
    >
    > Exception Type: System.UnauthorizedAccessException
    >
    > Message: Access to the path
    > "C:\DOCUME~1\servername\ASPNET\LOCALS~1\Temp\olvtg 0lf.0.vb" is denied.
    >
    > TargetSite: Void WinIOError(Int32, System.String)
    >
    > HelpLink: NULL
    >
    > Source: mscorlib
    >
    >
    >
    > StackTrace Information
    >
    > *********************************************
    >
    > at System.IO.__Error.WinIOError(Int32 errorCode, String str)
    >
    > at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
    > access, FileShare share, Int32 bufferSize, Boolean useAsync, String
    msgPath,
    > Boolean bFromProxy)
    >
    > at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
    > access, FileShare share)
    >
    > at System.CodeDom.Compiler.CodeCompiler.FromDomBatch( CompilerParameters
    > options, CodeCompileUnit[] ea)
    >
    > at System.CodeDom.Compiler.CodeCompiler.FromDom(Compi lerParameters
    > options, CodeCompileUnit e)
    >
    > at
    >
    System.CodeDom.Compiler.CodeCompiler.System.CodeDo m.Compiler.ICodeCompiler.C
    > ompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit e)
    >
    > at System.Xml.Xsl.Compiler.CompileAssembly(ScriptingL anguage lang,
    > Hashtable typeDecls, String nsName, Evidence evidence)
    >
    > at System.Xml.Xsl.Compiler.CompileScript(Evidence evidence)
    >
    > at System.Xml.Xsl.Compiler.Compile(NavigatorInput input, XmlResolver
    > xmlResolver, Evidence evidence)
    >
    > at System.Xml.Xsl.XslTransform.Compile(XPathNavigator stylesheet,
    > XmlResolver resolver, Evidence evidence)
    >
    > at System.Xml.Xsl.XslTransform.Load(String url, XmlResolver resolver)
    >
    > at System.Xml.Xsl.XslTransform.Load(String url)
    >
    > at UI.Sitemap.PortalSiteMap.TransformXML()
    >
    >
    >
    > Here is what the code is doing.simply trying to load an XSL file
    >
    >
    >
    > Dim resultsXSLT As New Xsl.XslTransform()
    >
    > Dim xslFile As new String = "somexslfile..xsl"
    >
    > resultsXSLT.Load(xslFile) ß Exception Occurs Here
    >
    >
    >
    > The xsl file has imbedded within it VBScript.
    >
    >
    >
    >
    > My theory on what is causing the error.
    >
    >
    >
    > Since the application code is loading the XSL
    file,
    > which contains VBScript, I think the CLR is trying to JIT compile the code
    > at runtime, and since Impersonate=True, is
    doing
    > this under the security context of the end user. This user does not have
    > access rights to the c:\documents and Setting. directory
    > listed above. When we turn Impersonate off everything works because the
    > security context is now ASPNET and for version 1.1 of the
    > frameworks this account was granted full control of the above mentioned
    > directory (see link below). The reason I think the CLR is trying to JIT
    the
    > VBScript is when we did some testing I noticed the CLR JIT perfmon
    counters
    > being incremented when traversing thru this code.
    >
    >
    >
    > Here is a link to an identical problem (bet he had impersonate=true):
    >
    > [url]http://www.dotnet247.com/247reference/msgs/46/231289.aspx[/url]
    >
    >
    >
    > Not the same situation but does talk about impersonate=true and the
    > Documents and Settings Folder:
    >
    > [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;827190[/url]
    >
    >
    >
    > Question:
    >
    >
    >
    > Can anyone confirm my theory and more importantly is there a
    way
    > to configure the location of the temp files used for JIT compiles? I'd
    > rather not have to grant our end users full control to the C:\documents
    and
    > settings. folder when Impersonate=true is set.
    >
    >

    Andrea D'Onofrio [MSFT] Guest

  2. Similar Questions and Discussions

    1. Web Service + Anon Access, but getting 401 Access Denied Error
      I have a simple webservice that just returns a string. The security for this is set to windows authentication in IIS (XP Professional) and anonymous...
    2. Impersonate, Windows Authentication and Database Access
      Hi everyone, I am having problems in my Intranet web site. I recently changed the authentication mode from forms to windows. I turned "OFF" the...
    3. DirectoryEntry Impersonate or WindowsIdentity Impersonate?
      Another security question. Our project interfaces with the Active Directory. To satisfy the security issues, we have a couple options when we talk...
    4. Access denied when creating Access application object
      In an ASP file I am running the following in VBScript in order to extract data from an Access 2002 MDB file which is physically located in the...
    5. <identity impersonate> and NETWORK ACCESS DB-HELP
      Hi folks. got a problem: i want to connect to an access db which is located on a network drive (seperate server). The server's name, where the...
  3. #2

    Default Re: Access Denied w/Impersonate=true

    Thanks for the reply.

    I agree, this is a potential solution, however, our company does not allow
    ANYONE access (not even read) to the C: drive. Is there was a way to
    configure the temp folder (and drive) that would be best. Is that possible?

    "Andrea D'Onofrio [MSFT]" <andreado@online.microsoft.com> wrote in message
    news:u2pEqJzQEHA.964@TK2MSFTNGP10.phx.gbl...
    > The error says that the user doesn't have permission to access to the temp
    > folder. Using impersonate=true the user identity is the identity of the
    user
    > that opens the browser.
    > Please, check this article
    > [url]http://support.microsoft.com/default.aspx?kbid=317012#4[/url] in order to check
    > the permission needed.
    > Probably you may solve your problem setting for Everyone Full control on
    the
    > Temp folder.
    >
    > HtH,
    > --
    > This posting is provided "AS IS" with no warranties, and confers no
    rights.
    >
    > "Rich Yadach" <ryadach@travelers.com> wrote in message
    > news:u0delWoQEHA.1160@TK2MSFTNGP09.phx.gbl...
    > > Does anyone have any ideas or comments on this?
    > >
    > >
    > >
    > > The problem seems to stem from having Impersonate=True set in our
    > web.config
    > > files (Version 1.1).
    > >
    > >
    > >
    > > Here is the error we encountered .
    > >
    > >
    > >
    > > The actual filename changes every time you try to load the page:
    > >
    > > An error has occurred: Access to the path
    > > "C:\DOCUME~1\servername\ASPNET\LOCALS~1\Temp\olvtg 0lf.0.vb" is denied.
    > >
    > >
    > >
    > > This is what I grabbed from the server's event viewer:
    > >
    > > 1) Exception Information
    > >
    > > *********************************************
    > >
    > > Exception Type: System.UnauthorizedAccessException
    > >
    > > Message: Access to the path
    > > "C:\DOCUME~1\servername\ASPNET\LOCALS~1\Temp\olvtg 0lf.0.vb" is denied.
    > >
    > > TargetSite: Void WinIOError(Int32, System.String)
    > >
    > > HelpLink: NULL
    > >
    > > Source: mscorlib
    > >
    > >
    > >
    > > StackTrace Information
    > >
    > > *********************************************
    > >
    > > at System.IO.__Error.WinIOError(Int32 errorCode, String str)
    > >
    > > at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
    > > access, FileShare share, Int32 bufferSize, Boolean useAsync, String
    > msgPath,
    > > Boolean bFromProxy)
    > >
    > > at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
    > > access, FileShare share)
    > >
    > > at
    System.CodeDom.Compiler.CodeCompiler.FromDomBatch( CompilerParameters
    > > options, CodeCompileUnit[] ea)
    > >
    > > at System.CodeDom.Compiler.CodeCompiler.FromDom(Compi lerParameters
    > > options, CodeCompileUnit e)
    > >
    > > at
    > >
    >
    System.CodeDom.Compiler.CodeCompiler.System.CodeDo m.Compiler.ICodeCompiler.C
    > > ompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit e)
    > >
    > > at System.Xml.Xsl.Compiler.CompileAssembly(ScriptingL anguage lang,
    > > Hashtable typeDecls, String nsName, Evidence evidence)
    > >
    > > at System.Xml.Xsl.Compiler.CompileScript(Evidence evidence)
    > >
    > > at System.Xml.Xsl.Compiler.Compile(NavigatorInput input, XmlResolver
    > > xmlResolver, Evidence evidence)
    > >
    > > at System.Xml.Xsl.XslTransform.Compile(XPathNavigator stylesheet,
    > > XmlResolver resolver, Evidence evidence)
    > >
    > > at System.Xml.Xsl.XslTransform.Load(String url, XmlResolver resolver)
    > >
    > > at System.Xml.Xsl.XslTransform.Load(String url)
    > >
    > > at UI.Sitemap.PortalSiteMap.TransformXML()
    > >
    > >
    > >
    > > Here is what the code is doing.simply trying to load an XSL file
    > >
    > >
    > >
    > > Dim resultsXSLT As New Xsl.XslTransform()
    > >
    > > Dim xslFile As new String = "somexslfile..xsl"
    > >
    > > resultsXSLT.Load(xslFile) ß Exception Occurs Here
    > >
    > >
    > >
    > > The xsl file has imbedded within it VBScript.
    > >
    > >
    > >
    > >
    > > My theory on what is causing the error.
    > >
    > >
    > >
    > > Since the application code is loading the XSL
    > file,
    > > which contains VBScript, I think the CLR is trying to JIT compile the
    code
    > > at runtime, and since Impersonate=True, is
    > doing
    > > this under the security context of the end user. This user does not
    have
    > > access rights to the c:\documents and Setting. directory
    > > listed above. When we turn Impersonate off everything works because the
    > > security context is now ASPNET and for version 1.1 of the
    > > frameworks this account was granted full control of the above mentioned
    > > directory (see link below). The reason I think the CLR is trying to JIT
    > the
    > > VBScript is when we did some testing I noticed the CLR JIT perfmon
    > counters
    > > being incremented when traversing thru this code.
    > >
    > >
    > >
    > > Here is a link to an identical problem (bet he had impersonate=true):
    > >
    > > [url]http://www.dotnet247.com/247reference/msgs/46/231289.aspx[/url]
    > >
    > >
    > >
    > > Not the same situation but does talk about impersonate=true and the
    > > Documents and Settings Folder:
    > >
    > > [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;827190[/url]
    > >
    > >
    > >
    > > Question:
    > >
    > >
    > >
    > > Can anyone confirm my theory and more importantly is there a
    > way
    > > to configure the location of the temp files used for JIT compiles? I'd
    > > rather not have to grant our end users full control to the C:\documents
    > and
    > > settings. folder when Impersonate=true is set.
    > >
    > >
    >
    >

    yadman Guest

  4. #3

    Default Re: Access Denied w/Impersonate=true

    Is giving Everyone Full Control a sound solution? Isn't this bypassing
    pinning down the appropriate permission settings and setting access rights
    appropriately?

    "Andrea D'Onofrio [MSFT]" <andreado@online.microsoft.com> wrote in message
    news:u2pEqJzQEHA.964@TK2MSFTNGP10.phx.gbl...
    > The error says that the user doesn't have permission to access to the temp
    > folder. Using impersonate=true the user identity is the identity of the
    user
    > that opens the browser.
    > Please, check this article
    > [url]http://support.microsoft.com/default.aspx?kbid=317012#4[/url] in order to check
    > the permission needed.
    > Probably you may solve your problem setting for Everyone Full control on
    the
    > Temp folder.
    >
    > HtH,
    > --
    > This posting is provided "AS IS" with no warranties, and confers no
    rights.
    >
    > "Rich Yadach" <ryadach@travelers.com> wrote in message
    > news:u0delWoQEHA.1160@TK2MSFTNGP09.phx.gbl...
    > > Does anyone have any ideas or comments on this?
    > >
    > >
    > >
    > > The problem seems to stem from having Impersonate=True set in our
    > web.config
    > > files (Version 1.1).
    > >
    > >
    > >
    > > Here is the error we encountered .
    > >
    > >
    > >
    > > The actual filename changes every time you try to load the page:
    > >
    > > An error has occurred: Access to the path
    > > "C:\DOCUME~1\servername\ASPNET\LOCALS~1\Temp\olvtg 0lf.0.vb" is denied.
    > >
    > >
    > >
    > > This is what I grabbed from the server's event viewer:
    > >
    > > 1) Exception Information
    > >
    > > *********************************************
    > >
    > > Exception Type: System.UnauthorizedAccessException
    > >
    > > Message: Access to the path
    > > "C:\DOCUME~1\servername\ASPNET\LOCALS~1\Temp\olvtg 0lf.0.vb" is denied.
    > >
    > > TargetSite: Void WinIOError(Int32, System.String)
    > >
    > > HelpLink: NULL
    > >
    > > Source: mscorlib
    > >
    > >
    > >
    > > StackTrace Information
    > >
    > > *********************************************
    > >
    > > at System.IO.__Error.WinIOError(Int32 errorCode, String str)
    > >
    > > at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
    > > access, FileShare share, Int32 bufferSize, Boolean useAsync, String
    > msgPath,
    > > Boolean bFromProxy)
    > >
    > > at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess
    > > access, FileShare share)
    > >
    > > at
    System.CodeDom.Compiler.CodeCompiler.FromDomBatch( CompilerParameters
    > > options, CodeCompileUnit[] ea)
    > >
    > > at System.CodeDom.Compiler.CodeCompiler.FromDom(Compi lerParameters
    > > options, CodeCompileUnit e)
    > >
    > > at
    > >
    >
    System.CodeDom.Compiler.CodeCompiler.System.CodeDo m.Compiler.ICodeCompiler.C
    > > ompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit e)
    > >
    > > at System.Xml.Xsl.Compiler.CompileAssembly(ScriptingL anguage lang,
    > > Hashtable typeDecls, String nsName, Evidence evidence)
    > >
    > > at System.Xml.Xsl.Compiler.CompileScript(Evidence evidence)
    > >
    > > at System.Xml.Xsl.Compiler.Compile(NavigatorInput input, XmlResolver
    > > xmlResolver, Evidence evidence)
    > >
    > > at System.Xml.Xsl.XslTransform.Compile(XPathNavigator stylesheet,
    > > XmlResolver resolver, Evidence evidence)
    > >
    > > at System.Xml.Xsl.XslTransform.Load(String url, XmlResolver resolver)
    > >
    > > at System.Xml.Xsl.XslTransform.Load(String url)
    > >
    > > at UI.Sitemap.PortalSiteMap.TransformXML()
    > >
    > >
    > >
    > > Here is what the code is doing.simply trying to load an XSL file
    > >
    > >
    > >
    > > Dim resultsXSLT As New Xsl.XslTransform()
    > >
    > > Dim xslFile As new String = "somexslfile..xsl"
    > >
    > > resultsXSLT.Load(xslFile) ß Exception Occurs Here
    > >
    > >
    > >
    > > The xsl file has imbedded within it VBScript.
    > >
    > >
    > >
    > >
    > > My theory on what is causing the error.
    > >
    > >
    > >
    > > Since the application code is loading the XSL
    > file,
    > > which contains VBScript, I think the CLR is trying to JIT compile the
    code
    > > at runtime, and since Impersonate=True, is
    > doing
    > > this under the security context of the end user. This user does not
    have
    > > access rights to the c:\documents and Setting. directory
    > > listed above. When we turn Impersonate off everything works because the
    > > security context is now ASPNET and for version 1.1 of the
    > > frameworks this account was granted full control of the above mentioned
    > > directory (see link below). The reason I think the CLR is trying to JIT
    > the
    > > VBScript is when we did some testing I noticed the CLR JIT perfmon
    > counters
    > > being incremented when traversing thru this code.
    > >
    > >
    > >
    > > Here is a link to an identical problem (bet he had impersonate=true):
    > >
    > > [url]http://www.dotnet247.com/247reference/msgs/46/231289.aspx[/url]
    > >
    > >
    > >
    > > Not the same situation but does talk about impersonate=true and the
    > > Documents and Settings Folder:
    > >
    > > [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;827190[/url]
    > >
    > >
    > >
    > > Question:
    > >
    > >
    > >
    > > Can anyone confirm my theory and more importantly is there a
    > way
    > > to configure the location of the temp files used for JIT compiles? I'd
    > > rather not have to grant our end users full control to the C:\documents
    > and
    > > settings. folder when Impersonate=true is set.
    > >
    > >
    >
    >

    Raymond Lewallen Guest

  5. #4

    Default Re: Access Denied w/Impersonate=true

    I'm sorry but I didn't mean use MUST use Everyone full control to to solve
    your issue.
    The best things to do is to set the appropriate permission settings, this is
    because I've sent the article link: specifically for the temp folder you
    must have the read/write access for the process account. This is
    configuration dependent: the default is aspnet, but if you use impersonation
    and Windows Integrated/Basic/Digest Authentication all the requester users
    MUST have this grant. In this this case you can create a domain group and
    grant the read/write access to this group.
    If you use the Anonymous authentication you must grant the read/write access
    to this account configured in IIS (default is IUSR_MachineName).

    HtH,
    Andrea

    --
    This posting is provided "AS IS" with no warranties, and confers no rights.

    "Raymond Lewallen" <Raymond.CTR.Lewallen@nospam.faa.gov> wrote in message
    news:%23opfwx0QEHA.3616@TK2MSFTNGP09.phx.gbl...
    > Is giving Everyone Full Control a sound solution? Isn't this bypassing
    > pinning down the appropriate permission settings and setting access rights
    > appropriately?
    >
    > "Andrea D'Onofrio [MSFT]" <andreado@online.microsoft.com> wrote in message
    > news:u2pEqJzQEHA.964@TK2MSFTNGP10.phx.gbl...
    > > The error says that the user doesn't have permission to access to the
    temp
    > > folder. Using impersonate=true the user identity is the identity of the
    > user
    > > that opens the browser.
    > > Please, check this article
    > > [url]http://support.microsoft.com/default.aspx?kbid=317012#4[/url] in order to
    check
    > > the permission needed.
    > > Probably you may solve your problem setting for Everyone Full control on
    > the
    > > Temp folder.
    > >
    > > HtH,
    > > --
    > > This posting is provided "AS IS" with no warranties, and confers no
    > rights.
    > >
    > > "Rich Yadach" <ryadach@travelers.com> wrote in message
    > > news:u0delWoQEHA.1160@TK2MSFTNGP09.phx.gbl...
    > > > Does anyone have any ideas or comments on this?
    > > >
    > > >
    > > >
    > > > The problem seems to stem from having Impersonate=True set in our
    > > web.config
    > > > files (Version 1.1).
    > > >
    > > >
    > > >
    > > > Here is the error we encountered .
    > > >
    > > >
    > > >
    > > > The actual filename changes every time you try to load the page:
    > > >
    > > > An error has occurred: Access to the path
    > > > "C:\DOCUME~1\servername\ASPNET\LOCALS~1\Temp\olvtg 0lf.0.vb" is denied.
    > > >
    > > >
    > > >
    > > > This is what I grabbed from the server's event viewer:
    > > >
    > > > 1) Exception Information
    > > >
    > > > *********************************************
    > > >
    > > > Exception Type: System.UnauthorizedAccessException
    > > >
    > > > Message: Access to the path
    > > > "C:\DOCUME~1\servername\ASPNET\LOCALS~1\Temp\olvtg 0lf.0.vb" is denied.
    > > >
    > > > TargetSite: Void WinIOError(Int32, System.String)
    > > >
    > > > HelpLink: NULL
    > > >
    > > > Source: mscorlib
    > > >
    > > >
    > > >
    > > > StackTrace Information
    > > >
    > > > *********************************************
    > > >
    > > > at System.IO.__Error.WinIOError(Int32 errorCode, String str)
    > > >
    > > > at System.IO.FileStream..ctor(String path, FileMode mode,
    FileAccess
    > > > access, FileShare share, Int32 bufferSize, Boolean useAsync, String
    > > msgPath,
    > > > Boolean bFromProxy)
    > > >
    > > > at System.IO.FileStream..ctor(String path, FileMode mode,
    FileAccess
    > > > access, FileShare share)
    > > >
    > > > at
    > System.CodeDom.Compiler.CodeCompiler.FromDomBatch( CompilerParameters
    > > > options, CodeCompileUnit[] ea)
    > > >
    > > > at System.CodeDom.Compiler.CodeCompiler.FromDom(Compi lerParameters
    > > > options, CodeCompileUnit e)
    > > >
    > > > at
    > > >
    > >
    >
    System.CodeDom.Compiler.CodeCompiler.System.CodeDo m.Compiler.ICodeCompiler.C
    > > > ompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit e)
    > > >
    > > > at System.Xml.Xsl.Compiler.CompileAssembly(ScriptingL anguage lang,
    > > > Hashtable typeDecls, String nsName, Evidence evidence)
    > > >
    > > > at System.Xml.Xsl.Compiler.CompileScript(Evidence evidence)
    > > >
    > > > at System.Xml.Xsl.Compiler.Compile(NavigatorInput input,
    XmlResolver
    > > > xmlResolver, Evidence evidence)
    > > >
    > > > at System.Xml.Xsl.XslTransform.Compile(XPathNavigator stylesheet,
    > > > XmlResolver resolver, Evidence evidence)
    > > >
    > > > at System.Xml.Xsl.XslTransform.Load(String url, XmlResolver
    resolver)
    > > >
    > > > at System.Xml.Xsl.XslTransform.Load(String url)
    > > >
    > > > at UI.Sitemap.PortalSiteMap.TransformXML()
    > > >
    > > >
    > > >
    > > > Here is what the code is doing.simply trying to load an XSL file
    > > >
    > > >
    > > >
    > > > Dim resultsXSLT As New Xsl.XslTransform()
    > > >
    > > > Dim xslFile As new String = "somexslfile..xsl"
    > > >
    > > > resultsXSLT.Load(xslFile) ß Exception Occurs Here
    > > >
    > > >
    > > >
    > > > The xsl file has imbedded within it VBScript.
    > > >
    > > >
    > > >
    > > >
    > > > My theory on what is causing the error.
    > > >
    > > >
    > > >
    > > > Since the application code is loading the XSL
    > > file,
    > > > which contains VBScript, I think the CLR is trying to JIT compile the
    > code
    > > > at runtime, and since Impersonate=True, is
    > > doing
    > > > this under the security context of the end user. This user does not
    > have
    > > > access rights to the c:\documents and Setting.
    directory
    > > > listed above. When we turn Impersonate off everything works because
    the
    > > > security context is now ASPNET and for version 1.1 of the
    > > > frameworks this account was granted full control of the above
    mentioned
    > > > directory (see link below). The reason I think the CLR is trying to
    JIT
    > > the
    > > > VBScript is when we did some testing I noticed the CLR JIT perfmon
    > > counters
    > > > being incremented when traversing thru this code.
    > > >
    > > >
    > > >
    > > > Here is a link to an identical problem (bet he had impersonate=true):
    > > >
    > > > [url]http://www.dotnet247.com/247reference/msgs/46/231289.aspx[/url]
    > > >
    > > >
    > > >
    > > > Not the same situation but does talk about impersonate=true and the
    > > > Documents and Settings Folder:
    > > >
    > > > [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;827190[/url]
    > > >
    > > >
    > > >
    > > > Question:
    > > >
    > > >
    > > >
    > > > Can anyone confirm my theory and more importantly is there
    a
    > > way
    > > > to configure the location of the temp files used for JIT compiles?
    I'd
    > > > rather not have to grant our end users full control to the
    C:\documents
    > > and
    > > > settings. folder when Impersonate=true is set.
    > > >
    > > >
    > >
    > >
    >
    >

    Andrea D'Onofrio [MSFT] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139