我正在编写一个Power
Shell脚本来执行IIS 7.5中的某些管理功能.
import-module WebAdministration
在某些情况下,我知道我想要使用的Web应用程序的名称,但不知道它所在的网站.获取应用程序很容易:
$app = get-webapplication -name 'MyApp'
但是,我不知道如何获取给定该应用程序的网站的名称.它似乎不是webapplication对象的属性.最好我可以想出是试图通过测试路径得到它:
get-website | where {test-path "iis:\sites\$_.name\MyApp"}
由于某些原因,空的.有什么想法呢?提前致谢.