如何将配置文件引入Powershell脚本?

时间:2012-12-04 07:41:47

标签: .net xml powershell configuration app-config

假设我有一个名为Foo.ps1的Powershell脚本

我想介绍一个名为Foo.ps1.config

的XML配置文件

我可以在其中指定我的环境设置:

<FunctionsDirectory>
     $ScriptDirectory\Functions
</FunctionsDirectory>
<ModulesDirectory>
     $ScriptDirectory\Modules
</ModulesDirectory>

然后我想在Foo.ps1的开头加载这个配置,这样我就可以导入我的模块并点到函数目录。

我如何在Powershell中实现这一目标?

4 个答案:

答案 0 :(得分:11)

可能更简单的解决方案.... 假设您的配置文件名称为“Confix.xml”,请尝试以下操作:

PS Testing> [xml]$configFile= get-content .\Config=.xml
PS Testing> $configFile
xml                                  configuration
---                                  -------------
version="1.0"                        configuration

从新变量中读取数据:

PS Testing> $configFile.configuration.appsettings
#comment                             add
--------                             ---
Vars                                 {add, add}

PS Testing> $configFile.configuration.appsettings.add
key                                  value
---                                  -----
var1                                 variableValue1
var2                                 variableValue2

PS Testing> $configFile.configuration.appsettings.add[0].value
variableValue2

长话短说:将变量转换为XML,然后执行get-content。

在这种情况下,Config.xml如下所示:

<?xml version="1.0"?>
<configuration>
  <startup>
  </startup>
  <appSettings>
    <!--Vars -->
    <add key="var1" value="variableValue1"/>
    <add key="var2" value="variableValue2"/>
  </appSettings>
</configuration>

答案 1 :(得分:8)

基于Keith's solution ...加载XML的代码:

   $configFile = "c:\Path2Config"
    if(Test-Path $configFile) {
        Try {
            #Load config appsettings
            $global:appSettings = @{}
            $config = [xml](get-content $configFile)
            foreach ($addNode in $config.configuration.appsettings.add) {
                if ($addNode.Value.Contains(‘,’)) {
                    # Array case
                    $value = $addNode.Value.Split(‘,’)
                        for ($i = 0; $i -lt $value.length; $i++) { 
                            $value[$i] = $value[$i].Trim() 
                        }
                }
                else {
                    # Scalar case
                    $value = $addNode.Value
                }
            $global:appSettings[$addNode.Key] = $value
            }
        }
        Catch [system.exception]{
        }
    }

从XML值填充变量:

            $variable1 = $appSettings["var1"]
            $variable2 = $appSettings["var2"]

以及相关的XML:

<?xml version="1.0"?>
<configuration>
  <startup>
  </startup>
  <appSettings>
<!--Vars -->
    <add key="var1" value="variableValue1"/>
    <add key="var2" value="variableValue2"/>
  </appSettings>
</configuration>

答案 2 :(得分:8)

对于XML配置的替代方案,如果您可以灵活地使用其他类型的配置。我建议使用全局PS配置文件,具体如下:

创建一个Powershell配置文件(例如Config.ps1),然后将所有配置作为全局变量并作为第一步启动它以便配置值应该在脚本上下文中可用。

这种方法的好处是可以在Config.ps1 PS文件中使用各种类型的数据结构,如标量变量,集合和散列,并在PS代码中轻松引用。

以下是一个实例:

enter image description here

这是C:\ Config \ Config.ps1文件:

$global:config = @{   
    Var1 = "Value1"

    varCollection = @{       
        item0     = "colValue0"
        item1   = "colValue1"
        item2  = "colValue2"
    }       
}

然后从此模块C:\ Module \ PSModule.psm1中的Config.ps1文件中加载函数/变量,如下所示:

$scriptFiles = Get-ChildItem "$PSScriptRoot\Config\*.ps1" -Recurse

foreach ($script in $scriptFiles)
{
    try
    {       
        . $script.FullName 
    }
    catch [System.Exception]
    {
        throw
    }
}

最后,初始化脚本包含以下一行:(C:\ Init.ps1)。

Import-Module $PSScriptRoot\Module\PSModule.psm1 -Force

运行Init.ps1之后。 global:config变量将在您的脚本上下文中可用。这是输出:
enter image description here

答案 3 :(得分:1)

另一种解决方案(类似于@yantaq的解决方案)只是具有一个单独的脚本并加载该脚本。

所以config.ps1包含:

$Environment = $Environment.ToUpper()
$GDriveUNC = "\\servername.domain.net\Data"
$BinLocation = "$pwd\bin-$Environment"

请注意,在这种情况下,$Environment是主脚本的参数,您可以执行任何所需的操作。

然后在主脚本中,只需运行以下“ config”脚本,如下所示:

. $PSScriptRoot\config.ps1