SoFunction
Updated on 2025-03-10

Solution to the problem of not executing

Recently, IIS suddenly failed to run. Repeated reinstallation is useless. Check the system log report as follows:
aspnet_wp.exe could not be started. The error code for the failure is
80004005. 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.

Many methods are not effective. Finally, use this "medicine" to solve the problem. The prescription is presented to everyone for sharing:
Stop IIS service first
iisreset /stop 
Then delete the ASPNET account
net user ASPNET /delete 
Re-register and ASPNET account
aspnet_regiis -i 
Start IIS
iisreset /start