Ask a Question related to ASP.NET Security, Design and Development.
-
Paul #1
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
-
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. -
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... -
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... -
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 -
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... -
Shaun #2
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



Reply With Quote

