mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-12-17 17:55:28 +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 "======================================="
|
||
|
|
}
|
||
|
|
}
|