FRPSUGModule.psm1

#Generated at 03/22/2019 08:59:43 by Laurent LIENHARD
#region <New-FRPSUGModule>
function New-FRPSUGModule {
    [CmdletBinding(SupportsShouldProcess)]
    param (
        [ValidateScript( {Test-Path $_})]
        [String]$DestinationPath
    )

    begin {
        $Current = $PSScriptRoot
        $TemplatePath = $Current + "\Ressources\FRPSUGModuleTemplate"
        Write-Verbose "The Template Path use is : $TemplatePath"
    }

    process {
        Invoke-Plaster -TemplatePath $TemplatePath -DestinationPath $DestinationPath
    }

    end {
    }
}
#endregion