public/Get-AppVentiXModuleVariable.ps1
<#
.SYNOPSIS Retrieves the variables from the AppVentiX module. .DESCRIPTION This function retrieves the variables from the AppVentiX module and returns them. .EXAMPLE Get-AppVentiXModuleVariable Retrieves the variables from the AppVentiX module and returns them. .NOTES Function : Get-AppVentiXModuleVariable Author : John Billekens Copyright: Copyright (c) AppVentiX Version : 1.0 #> function Get-AppVentiXModuleVariable { [CmdletBinding()] Param() $output = $Script:AppVentix return $output } |