CredentialRetriever.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
<# .SYNOPSIS .DESCRIPTION .EXAMPLE .INPUTS .OUTPUTS .NOTES .LINK #> [CmdletBinding()] param( [bool]$DotSourceModule = $false ) #Get function files Get-ChildItem $PSScriptRoot\ -Recurse -Include "*.ps1" | ForEach-Object { if ($DotSourceModule) { . $_.FullName } else { $ExecutionContext.InvokeCommand.InvokeScript( $false, ( [scriptblock]::Create( [io.file]::ReadAllText( $_.FullName, [Text.Encoding]::UTF8 ) ) ), $null, $null ) } } #Read config and make available in script scope $ConfigFile = "$env:USERPROFILE\AIMConfiguration.xml" If (Test-Path $ConfigFile) { Write-Verbose "Importing Settings: $ConfigFile" $config = Import-Clixml -Path $ConfigFile Set-Variable -Name AIM -Value $config -Scope Script } |