Logeto.psm1

<#
    Get-LogetoUpdateInfo Function
#>

function Get-LogetoUpdateInfo {

    Param(
        [parameter(Mandatory=$true)]
        [String]
        $Produt,

        [parameter(Mandatory=$false)]
        [String]
        $Scope,

        [parameter(Mandatory=$false)]
        [String]
        $Version
    )

    Write-Verbose "The module should be now installed! Get-LogetoUpdateInfo"
}

<#
    Get-LogetoTerminalUpdateInfo Function
#>

function Get-LogetoTerminalUpdateInfo {

    Write-Verbose "The module should be now installed! Get-LogetoTerminalUpdateInfo"
}

<#
    Get-LogetoTerminalServiceUpdateInfo Function
#>

function Get-LogetoTerminalServiceUpdateInfo {

    Write-Verbose "The module should be now installed! Get-LogetoTerminalServiceUpdateInfo"
}

<#
    Install-LogetoTerminal Function
#>

function Install-LogetoTerminal {

    Param(
        [parameter(Mandatory=$true)]
        $UpdateInfo
    )

    Write-Verbose "The module should be now installed! Install-LogetoTerminal"
}

<#
    Install-LogetoTerminalService Function
#>

function Install-LogetoTerminalService {

    Param(
        [parameter(Mandatory=$true)]
        $UpdateInfo
    )

    Write-Verbose "The module should be now installed! Install-LogetoTerminalService"
}