mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-07 05:24:54 -06: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 "======================================="
|
|
}
|
|
}
|