Назад | Перейти на главную страницу

Получение настраиваемых разделов web.config и их содержимого в Powershell

У меня установлено веб-приложение в c:\inetpub\wwwroot_Site1\AppName который имеет настраиваемую группу разделов и раздел, как показано ниже:

<configSections>
  <sectionGroup name="Libraries">
    <section name="Custom.Section.Name" type="System.Configuration.NameValueSectionHandler,system, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null"/>
    <section name="Custom.Section.Name2" type="System.Configuration.NameValueSectionHandler,system, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null"/>
  </sectionGroup>
</configSections>

Я написал следующий фрагмент Powershell:

Import-Module WebAdministration

Get-WebConfiguration //Libraries IIS:\Sites\Site1\AppName

Что правильно возвращает:

Название Разделы Группы

==== ======== ===========

Библиотеки Custom.Section.Name

Custom.Section.Name2

Я не могу понять, как это сделать Get-WebConfiguration или Get-WebConfigurationProperty получить доступ к <add key="x" value="y" /> элементы, которые являются прямыми дочерними элементами CustomSectionName в фактическом «теле» файла конфигурации.

Так уж случилось, что я недавно поместил эту функцию в веб-фреймворк PowerShell, который я пишу.

Вот три строки, которые вам понадобятся:

Add-Type -AssemblyName System.Web
$webConfigStore = [Web.Configuration.WebConfigurationManager]::OpenWebConfiguration($path)              
$customSetting = $webConfigStore.AppSettings.Settings["$Setting"];   

Третий вариант будет несколько отличаться в зависимости от того, что вы пытаетесь получить.

Надеюсь это поможет

Если веб-приложение относится к разновидности SharePoint 2007, вы можете выбрать один appSetting из его web.config через:

param ( [string] $url='http://contso.com')

[System.Reflection.Assembly]::LoadWithPartialName('System.Web') | Out-Null
[System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SharePoint') | Out-Null

[Microsoft.SharePoint.SPSite] $site = New-Object -TypeName  'Microsoft.SharePoint.SPSite' -ArgumentList $url

[System.Configuration.Configuration] $config = [System.Web.Configuration.WebConfigurationManager]::OpenWebConfiguration('/', $site.WebApplication.Name)

<p># pull the one appSetting string we're interested in 

[string] $appSettingKey = 'avalidkey'

[string] $appSettingValue = $config.AppSettings.Settings[$appSettingKey].Value

Write-Host ("<appSetting> Key={0}, Value={1}" -f $appSettingKey, $appSettingValue)

$config = $null

$site.Dispose()

$site = $null