get-webbinding-like IIS:\ Sites \ $变量
我有一个脚本,它可以执行get-webbinding并且工作正常。不过,我需要做类似如下:
$Binding = Get-WebBinding -like $variable
因此,例如,$变量将是网站,但IIS站点将被称为website.com。我需要它做一个类似的比较,但无法弄清楚如何做到这一点。我很欣赏任何建议。
回答:
尝试......
$SiteName = 'SiteName' (Get-WebBinding |
Where bindingInformation -like "*$SiteName*").bindingInformation
以上是 get-webbinding-like IIS:\ Sites \ $变量 的全部内容, 来源链接: utcz.com/qa/267287.html