我安装了一个 Web 应用程序,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
自定义.部分.名称2
我无法理解的是如何通过Get-WebConfiguration
或Get-WebConfigurationProperty
获取对<add key="x" value="y" />
配置文件实际“主体”中 CustomSectionName 的直接子元素的访问权限。
答案1
碰巧的是,我最近将这个函数放入了我编写的 PowerShell Web 框架中。
以下是您需要的三行:
Add-Type -AssemblyName System.Web
$webConfigStore = [Web.Configuration.WebConfigurationManager]::OpenWebConfiguration($path)
$customSetting = $webConfigStore.AppSettings.Settings["$Setting"];
第三个会有所不同,取决于您想要获得什么。
希望这可以帮助
答案2
如果 Web 应用程序属于 SharePoint 2007 类型,则可以通过以下方式从其 web.config 中挑选一个 appSetting:
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