mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-04-02 17:32:09 +00:00
18 lines
414 B
PowerShell
18 lines
414 B
PowerShell
function Invoke-WPFSSHServer {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Invokes the OpenSSH Server install in a runspace
|
|
|
|
#>
|
|
|
|
Invoke-WPFRunspace -DebugPreference $DebugPreference -ScriptBlock {
|
|
|
|
Invoke-WinUtilSSHServer
|
|
|
|
Write-Host "======================================="
|
|
Write-Host "-- OpenSSH Server installed! ---"
|
|
Write-Host "======================================="
|
|
}
|
|
}
|