Enable OpenSSH Server

functions/public/Invoke-WPFSSHServer.ps1
 1function Invoke-WPFSSHServer {
 2    <#
 3
 4    .SYNOPSIS
 5        Invokes the OpenSSH Server install in a runspace
 6
 7  #>
 8
 9    Invoke-WPFRunspace -ScriptBlock {
10
11        Invoke-WinUtilSSHServer
12
13        Write-Host "======================================="
14        Write-Host "--     OpenSSH Server installed!    ---"
15        Write-Host "======================================="
16    }
17}