Functions/Get-WSToolsConfig.ps1
|
function Get-WSToolsConfig { <# .NOTES Author: Skyler Hart Created: 2020-05-23 12:27:36 Last Edit: 2020-08-20 11:18:58 Keywords: .LINK https://wanderingstag.github.io #> [Diagnostics.CodeAnalysis.SuppressMessageAttribute( "PSAvoidGlobalVars", "", Justification = "Have tried other methods and they do not work consistently." )] [CmdletBinding()] [Alias('Import-WSToolsConfig','WSToolsConfig')] param() $Global:WSToolsConfig } |