使用appcmd添加新网站问题
我使用的是 VSTS 2008 + C# + .Net 3.5 + IIS 7.0。我想使用appcmd添加一个新网站,我的场景是这样的。
- 我的所有网站文件都位于文件夹 c:\template 下;
- 我想将我的新网站添加为默认网站下的虚拟目录,该虚拟目录名为“testsite1”;
- 我想使用默认应用程序池(或默认网站正在使用的应用程序池)。
我研究了appcmd很长一段时间,但无法弄清楚。也许要么是我太笨,要么是因为IIS 7.0/appcmd是新的,帮助信息有限。 :-)
如果有人能让我知道如何使用 appcmd 完成部署任务,我将不胜感激?
提前致谢, 乔治
I am using VSTS 2008 + C# + .Net 3.5 + IIS 7.0. I want to using appcmd to add a new web site, my scenario is like this.
- All my web site files are under folder c:\template;
- I want to add my new web site as a virtual directory under default web site, the virtual directory is called "testsite1";
- I want to use the default application pool (or the application pool which default web site is using).
I have stuied appcmd for quite some time, but cannot figure out. Maybe either I am too stupid or because IIS 7.0/appcmd is new, help information is limited. :-)
Appreciate if anyone could let me know how to complete my deployment task using appcmd?
thanks in advance,
George
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行以下操作:
我是如何发现这一点的?我做了以下操作:
并且有这个例子:
所以我刚刚添加了
physicalPath
也检查一下。
Execute the following:
How I found this out? I did the following:
and there was this example:
so I just added
physicalPath
check this also.