Entrinsec.Powershell.Template/Entrinsec.Powershell.Template.psm1

function Show-EntrinsecTEMPLATEInfo {
    # Get the name of the current module (the module this function is part of)
    $PackageName = $MyInvocation.MyCommand.ModuleName

    # Get the currently installed module version
    $installedVersion = (Get-Module -Name $PackageName -ListAvailable).Version
    Write-HostAndLog -Message ""
    Write-HostAndLog -Message "$PackageName $installedVersion imported." -ForegroundColor Blue
    Write-HostAndLog -Message "All official MIT licensed Powershell modules can be found at https://www.entrinsec.com" -ForegroundColor Blue
    Write-HostAndLog -Message ""
}

# Show-EntrinsecTEMPLATEInfo