Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I introduce a config file to Powershell scripts?

Assume that I have a Powershell script called Foo.ps1

I would like to introduce an XML configuration file called Foo.ps1.config

where I can specify my environment settings something like:

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

And then I would like to load this configuration in the begining of Foo.ps1 so that I can import my modules and dot notate to the Functions directory.

How can I achieve this in Powershell?

like image 804
pencilCake Avatar asked Dec 04 '12 07:12

pencilCake


People also ask

How do I read a configuration file in PowerShell?

After loading c:\app. config, we are displaying path of currently loaded configuration file, using CurrentDomain. GetData() method. By following the above steps, we can load and read a custom config file in current app domain within PowerShell script.

How do I create a PowerShell script config file?

I suggest using a global PS configuration file and here is how: Create a Powershell configuration file ( E.g. Config. ps1 ), then put all configuration as global variable and init it as a first step so that configuration values should be available in your script context.

Does PowerShell have a config file?

The powershell. config. json file contains configuration settings for PowerShell. PowerShell loads this configuration at startup.

How do I run a configuration file?

To open a CFG file using the native Notepad app, open Windows File Explorer at the location of the file. If Windows automatically recognizes the CFG file, double-click it to open it in Notepad. Alternatively, right-click the CFG file and select the Open With option.


4 Answers

Probably an easier solution.... Assuming your configuration file is names "Confix.xml", try this:

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

Reading data out of your new variable:

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 

Long story short: Cast your variable as XML, and do a get-content.

In this case, the Config.xml looks like this:

<?xml version="1.0"?> <configuration>   <startup>   </startup>   <appSettings>     <!--Vars -->     <add key="var1" value="variableValue1"/>     <add key="var2" value="variableValue2"/>   </appSettings> </configuration> 
like image 156
John Collins Avatar answered Sep 23 '22 02:09

John Collins


For an alternative to XML configuration, if you are flexible to use other type of configuration. I suggest using a global PS configuration file and here is how:

Create a Powershell configuration file ( E.g. Config.ps1 ), then put all configuration as global variable and init it as a first step so that configuration values should be available in your script context.

Benefit of this approach is that various type of data structure such as scalar variable, collections and hashes can be used in Config.ps1 PS file and referenced easily in the PS code.

the following is an example in action:

enter image description here

Here is the C:\Config\Config.ps1 file:

$global:config = @{        Var1 = "Value1"      varCollection = @{                item0     = "colValue0"         item1   = "colValue1"         item2  = "colValue2"     }        } 

Then load the functions/variables from Config.ps1 file in this module C:\Module\PSModule.psm1, like so:

$scriptFiles = Get-ChildItem "$PSScriptRoot\Config\*.ps1" -Recurse  foreach ($script in $scriptFiles) {     try     {                . $script.FullName      }     catch [System.Exception]     {         throw     } } 

Lastly, initialization script contains this one line below: ( C:\Init.ps1 ).

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

After running the Init.ps1. global:config variable will be available in your script context. Here is the output:
enter image description here

like image 45
yantaq Avatar answered Sep 26 '22 02:09

yantaq


Based on Keith's solution... Code to load 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]{
        }
    }

To populate variables from the XML values:

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

And the associated XML:

<?xml version="1.0"?>
<configuration>
  <startup>
  </startup>
  <appSettings>
<!--Vars -->
    <add key="var1" value="variableValue1"/>
    <add key="var2" value="variableValue2"/>
  </appSettings>
</configuration>
like image 26
nimizen Avatar answered Sep 27 '22 02:09

nimizen


Another solution (similar to @yantaq's) is just have a separate script and load that.

So config.ps1 contains:

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

Note that in this case $Environment is an argument to the main script, and you can do any manipulation you want.

Then in main script, just run this 'config' script, like so:

. $PSScriptRoot\config.ps1
like image 31
cjb110 Avatar answered Sep 24 '22 02:09

cjb110