Reputation: 11
I tried to deployee my application in one server (windows 7 ultimate 32 bit) and share the application via network to access in other systems.
(this web site is running perfectly in cloud server window Server 2008 i have used same webconfig file)
My server, web site and application pool all are running but when i browse it show Service Unavailable Http Error 503
Shall i missed any steps please help me out last two days i have tried. thanks in advance.
Upvotes: 0
Views: 2022
Reputation: 1402
Here is a script to fix that:
start-service w3svc
remove-item -recurse -force C:\inetpub\temp\appPools\*
stop-service -force WAS
Probably your windows was updated recently.
Upvotes: 0