Public/Get-FSvcConfig.ps1
|
function Get-FSvcConfig { <# .SYNOPSIS Shows the effective fsvc configuration (stored values merged with FSVC_* environment variables). #> [CmdletBinding()] param() $cfg = Get-FSvcEffectiveConfig [pscustomobject]@{ Subdomain = $cfg.Subdomain BaseUrl = $cfg.BaseUrl SessionCookie = if ($cfg.SessionCookie) { '<set>' } else { $null } CsrfToken = if ($cfg.CsrfToken) { '<set>' } else { $null } TimeZoneId = $cfg.TimeZoneId UtcOffset = $cfg.UtcOffset LogPath = $cfg.LogPath } } |