Check whether IIS is installed or not?

go to Start->Run type inetmgr and press OK. If you get an IIS configuration screen. It is installed, otherwise it isn’t. You can also check ControlPanel->Add Remove Programs, Click Add Remove Windows Components and look for IIS in the list of installed components. EDIT To Reinstall IIS. Control Panel -> Add Remove Programs -> Click … Read more

IIS sc-win32-status codes [closed]

Here’s the list of all Win32 error codes. You can use this page to lookup the error code mentioned in IIS logs: http://msdn.microsoft.com/en-us/library/ms681381.aspx You can also use command line utility net to find information about a Win32 error code. The syntax would be: net helpmsg Win32_Status_Code

How to specify application pool identity user and password from PowerShell

You would do this as follows: Import-Module WebAdministration Set-ItemProperty IIS:\AppPools\app-pool-name -name processModel -value @{userName=”user_name”;password=”password”;identitytype=3} See this document here for an explanation, and a reference of the indentity type numeric for the user type you will run the app pool under: http://www.iis.net/configreference/system.applicationhost/applicationpools/add/processmodel

tech