2

我正在尝试在 Azure 中部署的网站的根目录中配置 Web 应用程序的 serviceAutoStartEnabled 和 serviceAutoStartProvider 属性。如果我了解自动启动过程,可以为单个网站下的特定 Web 应用程序设置这些属性。

我在 web 角色启动期间(在启动任务中获得提升的权限之后)执行一个 powershell 脚本来执行 web 管理任务,如下所示:

write-host "Begin RoleStart.ps1"

import-module WebAdministration

Add-WindowsFeature NET-WCF-HTTP-Activation45,NET-WCF-TCP-Activation45,NET-WCF-Pipe-Activation45

$listenerService = Get-WmiObject win32_service -filter "name='NetPipeActivator'"
$listenerService.ChangeStartMode("Automatic")
$listenerService.StartService()

$WebRoleSite = (Get-WebSite "*web*")
$WebRoleSiteName = $WebRoleSite.Name
$WebRoleAppPool = $WebRoleSite.ApplicationPool

New-ItemProperty "IIS:/Sites/$WebRoleSiteName" -name bindings -value @{protocol="net.pipe";bindingInformation="*"}
Set-ItemProperty "IIS:/Sites/$WebRoleSiteName" -Name EnabledProtocols 'http,net.pipe'

Set-ItemProperty -Path "IIS:\AppPools\$WebRoleAppPool" -Name startMode -Value AlwaysRunning

write-host "End RoleStart.ps1"

这会根据需要使用 AlwaysRunning 属性设置应用程序池,但我仍然需要为应用程序特定的 serviceAutoStartEnabled 和 serviceAutoStartProvider 属性提供新值。

我知道我可以使用 Get-WebApplication 来获取应用程序并设置这两个属性,但是当我运行以下 powershell 命令时,我没有看到根 ("/") 应用程序的应用程序:

(Get-WebApplication "*") | format-list *

那么如何使用 webadministration cmdlet 为根应用程序设置这两个属性呢?

4

2 回答 2

1

Set-ItemProperty您可以使用通用cmdlet设置这些。例如:

Set-ItemProperty "IIS:\Sites\Default Web Site\Test\" -name serviceAutoStartEnabled -Value $true
Set-ItemProperty "IIS:\Sites\Default Web Site\Test\" -name serviceAutoStartProvider -Value ???

其中“测试”是一个 Web 应用程序。抱歉,我不知道什么是有效值serviceAutoStartProvider。有时即使将Get-ItemProperty它们显示为字符串,它们也是整数。

您可以通过以下方式查看值:

Get-ItemProperty "IIS:\Sites\Default Web Site\Test\" -name serviceAutoStartEnabled

您还可以在对象上查看它,例如:

Get-WebApplication "*" | % { Write-Output "Path: $($_.Path), AutoStartEnabled: `
  $($_.Attributes["serviceAutoStartEnabled"].Value) AutoStartProvider: `
  $($_.Attributes["serviceAutoStartProvider"].Value)" }

但是,如果你尝试设置Value你会得到一个错误,因为它是只读的。

最后,您可以使用Get-WebConfigurationPropertyandSet-WebConfigurationProperty和一些非常丑陋的 xpath 获取和设置值。例如:

Get-WebConfigurationProperty "/system.applicationHost/sites/site[@name='Default Web Site' and @id='1']/application[@path='/Test']" -Name serviceAutoStartEnabled
Set-WebConfigurationProperty "/system.applicationHost/sites/site[@name='Default Web Site' and @id='1']/application[@path='/Test']" -Name serviceAutoStartEnabled -Value $true

请注意,这两个 cmdlet 更灵活,Get/Set-ItemProperty因为它们支持配置的所有部分,而Get/Set-ItemProperty仅支持 IIS:提供程序公开的内容。

于 2014-09-24T22:02:10.357 回答
1

我知道这已经相当老了,但是,对于像我这样在搜索过程中遇到这种情况的人来说,这就是我最终这样做的方式:

Import-Module WebAdministration;

$WebSiteName = "My Web Site";
$WebAppName = "MyWebApp";
$ProviderName = "PreWarmMyWebApp";
$ProviderType = "MyNamespace.MyClass, MyAssembly";

Add-WebConfiguration -PSPath 'IIS:\' -Filter '/system.applicationHost/serviceAutoStartProviders' -Value @{ name=$ProviderName; type=$ProviderType };
Set-WebConfigurationProperty -PSPath 'IIS:\' -Filter "/system.applicationHost/sites/site[@name='$WebSiteName']/application[@path='/$WebAppName']" -Name "serviceAutoStartEnabled" -Value "true";
Set-WebConfigurationProperty -PSPath 'IIS:\' -Filter "/system.applicationHost/sites/site[@name='$WebSiteName']/application[@path='/$WebAppName']" -Name "ServiceAutoStartProvider" -Value $ProviderName;

我从 Swoogan 的帖子中获得了 Set-WebConfigurationProperty 位,但是当我自己弄清楚 serviceAutoStartProviders 部分时,我想我会发布一个完整的解决方案:)

于 2016-02-15T19:58:30.143 回答