Problems when joining a domain

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

  1. #1

    Default Problems when joining a domain

    OK - here's the situation.
    We have a Win 2K Server running IIS and MSSQL with the .NET 1.1
    framework.
    Everything works just fine when the machine is not a member of a
    domain.
    Everything works just fine when we join the server to our test domain.
    However, when we join the machine to our production domain we get the
    following error:

    aspnet_wp.exe could not be started. The error code for the failure is
    80070545. This error can be caused when the worker process account has
    insufficient rights to read the .NET Framework files. Please ensure
    that the .NET Framework is correctly installed and that the ACLs on
    the installation directory allow access to the configured account.

    I've been through the solution outlined in KB article 315158
    [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;315158[/url]

    While interesting - I don't think this applies because the framework
    is not installed on either or the Active Directory machines.

    Could there be something in a group policy that is causing this
    behavior?

    thanks,
    -paul
    Paul Guest

  2. Similar Questions and Discussions

    1. save local profile when joining domain
      Is there a way to migrate the local user profile when the computer and user are added to new domain from workgroup.
    2. Joining a Domain from the Command-line
      I'm looking for a way to join a Domain from the command- line in windows XP. We are not using Active directory. Is there a dos command that...
    3. Profile settings when joining a domain
      I recently added a domain infrastructure to our network. I have a few XP Pro workstations that, prior to the domain addition, belonged to a...
    4. Joining a domain problem
      You may want to make sure NetBIOS over TCP/IP is enabled. Otherwise, try to fully qualify the domain name. keep
    5. Joining an NT domain with os10
      Hi, we've just upgraded to os10. When accessing our network the MACs are listed under 'local' and 'workgroup'. I would like them to join the actual...
  3. #2

    Default RE: Problems when joining a domain

    I had a similar problem a short time back and found I needed to changed the ACLs for the framework files etc for the domain account used for the process. Here's the batch file content I used (change domain and user as required), hope it helps ...


    cacls "C:\WINNT\Microsoft.NET" /T /E /C /P domain\user:R

    cacls "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Tempor ary ASP.NET Files" /T /E /C /P domain\user:C

    cacls "C:\WINNT\temp" /T /E /C /P domain\user:C

    cacls "C:\inetpub\wwwroot" /T /E /C /P domain\user:R

    cacls "e:\" /T /E /C /P domain\user:R

    cacls "C:\WINNT\assembly" /T /E /C /P domain\user:R





    --------------------------
    Shaun Venus

    emailid: sunevnuahs
    domain: hotmail.com
    --------------------------


    "Paul" wrote:
    > OK - here's the situation.
    > We have a Win 2K Server running IIS and MSSQL with the .NET 1.1
    > framework.
    > Everything works just fine when the machine is not a member of a
    > domain.
    > Everything works just fine when we join the server to our test domain.
    > However, when we join the machine to our production domain we get the
    > following error:
    >
    > aspnet_wp.exe could not be started. The error code for the failure is
    > 80070545. This error can be caused when the worker process account has
    > insufficient rights to read the .NET Framework files. Please ensure
    > that the .NET Framework is correctly installed and that the ACLs on
    > the installation directory allow access to the configured account.
    >
    > I've been through the solution outlined in KB article 315158
    > [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;315158[/url]
    >
    > While interesting - I don't think this applies because the framework
    > is not installed on either or the Active Directory machines.
    >
    > Could there be something in a group policy that is causing this
    > behavior?
    >
    > thanks,
    > -paul
    >
    Shaun 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