Website is not getting created in IIS - limited edition of InstallShield

↘锁芯ラ 提交于 2019-11-25 20:06:19

Nice effort to create a comprehensible question, but I am afraid you forgot the most important part: what does the log file say? Please update your question with details.

I am adding this as an answer, and I will "evolve" it once we get more information.

Here is my standard blurb on logging for you for a start:

Logging your MSI-Install

Here is how to log your install (silent install):

msiexec.exe /I "C:\Installer.msi" /QN /L*V "C:\msilog.log"

or for a setup.exe:

Setup.exe /v"/l*v C:\msilog.log /QN"

Quick Parameter Explanation:

/I = run regular installation sequence
/QN = run completely silently
/L*V "C:\My.log" = verbose logging at specified path

If this is confusing try installsite.org's logging FAQ - how to create a log file for your installation.


Some Links:

This issue has been resolved by adding a Application inside Website.

Seems like just having Website in Configure the Target System->Internet Information Services is not enough.

Reason: InstallShield Limited Version does not support creating website outside default web sites.

I created another website outside default website in InstallShield Evaluation version 2010. I changed the TCP Port Number to 8080.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!