Cmdlet
Get-IntelligenceXConfig
Reads the effective app-server configuration with layer metadata.
Examples
Example 1
$config = Get-IntelligenceXConfig; $config.Config
Read effective config as structured output
Example 2
$config = Get-IntelligenceXConfig; $config.Origins["model"]
Inspect where a specific setting comes from
Example 3
Get-IntelligenceXConfig | Select-Object -ExpandProperty Layers | Select-Object Version, DisabledReason
Inspect active configuration layers
Example 4
Get-IntelligenceXConfig -Raw
Read raw JSON for custom handling
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
Get-IntelligenceXConfig [-Client <IntelligenceXClient>] [-Raw] [<CommonParameters>]#Parameters
- Client IntelligenceXClient
- App-server client instance to query. Defaults to the active client.
- Raw SwitchParameter
- Returns the raw JSON-RPC payload instead of typed config models.
Outputs
IntelligenceX.Json.JsonValue, IntelligenceX.OpenAI.AppServer.Models.ConfigReadResult