PowerShell 5 AppSettings Bug?

时间:2016-04-25 16:25:43

标签: windows powershell app-config powershell-v5.0

我已升级到PowerShell v5.0.10586.117,现在我无法从app.config文件访问AppSettings。该代码适用于PowerShell v4(我已经在安装了v4的其他计算机上尝试过,它从AppSettings返回数据)。

我在PowerShell中设置了App Config

[System.AppDomain]::CurrentDomain.SetData("APP_CONFIG_FILE", $AppConfigPath)

我可以验证当前域是否具有应用程序设置

[System.AppDomain]::CurrentDomain.GetData("APP_CONFIG_FILE")

返回PATH\App.config 但是当我跑

[System.Configuration.ConfigurationManager]::AppSettings.count

PowerShell v5返回:0

但是在PowerShell v4(Windows 7,Windows Server 2008 R2 Enterprise等)上返回:5

为什么PowerShell 5与PowerShell 4的行为会有所不同?这是一个错误吗?知道如何解决App Settings问题吗?

[更多信息]

我尝试过解决方法

      $configFile = System.Configuration.ConfigurationManager]::OpenExeConfiguration([System.Configuration.ConfigurationUserLevel]::None)
      $settings = $configFile.AppSettings.Settings
      $retVal = $settings[$keyName].Value
      $configFile.Save([System.Configuration.ConfigurationSaveMode]::Modified)
      [System.Configuration.ConfigurationManager]::RefreshSection($configFile.AppSettings.SectionInformation.Name)

使用$ retVal这个work -round,我可以从我期望的AppSettings中获取数据,但是稍后在我导入的.dll上失败,期望App Config数据存在。

[更新1]: 我在Windows 8,Windows 8.1和Server 2012上升级到PowerShell 5并遇到了同样的问题。更新了标题并发布说明,以反映它在我测试的所有PowerShell 5实例上。

[更新2]:

根据@PetSerAl,我发现如果在设置配置文件之前尝试获取AppSetting,我将在PowerShell v4中遇到同样的问题

[System.Configuration.ConfigurationManager]::AppSettings
[System.AppDomain]::CurrentDomain.SetData("APP_CONFIG_FILE", $AppConfigPath)
[System.Configuration.ConfigurationManager]::AppSettings.Count

在PowerShell v4中返回0

如果我将我的应用配置文件移动到C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe.config,那么我在返回数据时没有问题,我也没有遇到我正在加载的外部dll的问题,这些外部dll需要在app config中获取信息< / p>

1 个答案:

答案 0 :(得分:1)

这似乎是早期版本的PowerShell 5中的一个错误。我已经升级到PowerShell 5.1.14409.1005并且问题已经解决。