Can't find IISROOTFOLDER on Windows Server 2008 -


I am using installshield to install my website to IIS, it works fine on Windows Server 2003, But while running on a Windows Server 2008, there is an error in saying:

Error 1606. Network location {IISROOTFOLDER} could not be used .

How can I fix this problem?

You must first check your iisrootfolder. Check the appropriate home page in the default website - Local Path Sometimes due to its unavailable changes you can try vbscript custom operation to get the "true" root directory: Dim objIIsWebService set objIIsWebService = GetObject ("IIS: // localhost / W3SVC / 1 / root ") MsgBox objIIsWebService.Path


Comments