get-website / get-webapplication相关目录

时间:2015-05-27 16:34:26

标签: powershell iis

如果我想找到与IIS站点或应用程序关联的目录,我该怎么做?

我似乎无法在Get-WebsiteGet-WebApplication的任何属性上找到任何允许我这样做的内容。

1 个答案:

答案 0 :(得分:11)

只需查看网站成员:

get-website -Name "Default Web Site" | Get-Member

返回:

...
password                   NoteProperty          System.String password=
physicalPath               NoteProperty          System.String physicalPath=%SystemDrive%\inetpub\wwwroot
serverAutoStart            NoteProperty          System.Boolean  serverAutoStart=True
...

这对我来说非常明显:

(Get-Website -Name "Default Web Site").PhysicalPath

相同的应用程序:

(get-webapplication foo).PhysicalPath