Functions/Scripting/Unblock-Modules.ps1

Function Unblock-Modules
{
    [cmdletbinding()]
    Param
    (
        # Path to Local Modules
        [Parameter(Mandatory=$false)]
        [String]
        $ModulePath = $Global:PS_ModulePath
    )
    Process
    {
        #$Children = Get-ChildItem -Path "$ModulePath\*.p*1" -Recurse | Unblock-File
    }
}