Public/Get-Config.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<# .SYNOPSIS Returns the current configuration for accessing the salesforce org and cdr/pds instance .INPUTS None. You cannot pipe objects to Convert-CsvToMessages. .OUTPUTS The current configuration #> function Get-Config { Get-Variable -Name __config -Scope Script -ValueOnly -ErrorAction SilentlyContinue } |