My ASP.Net web service cannot run because the application pool is unable to start due to the identity crisis it\'s experiencing.
The user I\'m using in the app pool is a
Another minor thing worth mentioning might be that, if it is a new user account created by an administrator, a default policy might apply like 'change your password at first logon'. If that is the case and that logon has not yet happened, this will also effectively block the user account from running your service.
This does not apply to the OP's case since he mentions he can login interactively using the account, but I ran into this today and somebody else might too.
Make sure there's a folder called c:\inetpub\temp\apppools. If not, create it.
After following all of the other suggestions:
Remember to restart the IIS admin service!
After trying all of the above and nothing worked, I noticed the event data in the event log error was 80070700. googling for this error yielded "An attempt was made to logon, but the network logon service was not started."
I found the NetLogon service wasn't started, started it and bingo - it sprung into life. hope this helps someone else one day