public/Get-OEM.ps1

function Get-OEM {
    <#
    .SYNOPSIS
        Placeholder function for OEM.
 
    .DESCRIPTION
        Placeholder function for OEM.
 
    .NOTES
        David Segura
    #>

    [CmdletBinding()]
    param ()
    #=================================================
    Write-Verbose "[$((Get-Date).ToString('HH:mm:ss'))][$($MyInvocation.MyCommand)] Start"
    $Error.Clear()
    #=================================================
    Write-Host -ForegroundColor DarkCyan "OEM PowerShell Module Team"
    Write-Host -ForegroundColor DarkGray "David Segura https://linkedin.com/in/davidsegura/"
    #=================================================
    Write-Verbose "[$((Get-Date).ToString('HH:mm:ss'))][$($MyInvocation.MyCommand)] End"
    #=================================================
}