Public/Get-Remoting.ps1

function Get-Remoting {

    Get-IntroRem

    Write-Host "Remoting Functions"                                                                        -ForegroundColor green
    Write-Host "Connect-SSH ..Connects to SSH Server"                                       -ForegroundColor cyan
    Write-Host "Get-TerminalSessions ..Get Terminal Server User Sessions"                            -ForegroundColor cyan
    Write-Host "Enable-PSRemoting ..Enables PSRemoting on local endpoint"                         -ForegroundColor cyan
    Write-Host "Enable-Remoting ..Enables PSRemoting on remote endpoint"                        -ForegroundColor cyan
    Write-Host "Install-SSH ..Installs OpenSSH Features"                                    -ForegroundColor cyan
    Write-Host "Invoke-ServiceRecovery ..Invokes a Service Restart on all Endpoints"                   -ForegroundColor cyan
    Write-Host "Remove-TerminalSessions ..Removes Terminal Server User Sessions"                        -ForegroundColor cyan
    Write-Host " "
}