Config/ToolkitConfig.psd1
|
@{ # Copy this file to ToolkitConfig.local.psd1 and replace the example values # before connecting to a Horizon environment. The local file is ignored by Git. Horizon = @{ ConnectionServers = @( 'horizon.example.com' ) DefaultConnectionServer = 'horizon.example.com' # Do not store an Export-Clixml credential file in source control. # Leave null to use Get-Credential, or set an environment-local path. CredentialPath = $null ConnectionTimeout = 30 } Session = @{ IdleThresholdMinutes = 240 DisconnectedThresholdMinutes = 360 } Logging = @{ Path = '.\\Logs' FileName = 'Enterprise-HorizonToolkit.log' LogLevel = 'Information' } Reporting = @{ OutputPath = '.\\Reports' } Exclusions = @{ Users = @() Pools = @() } } |