2026-02-23 18:28:56 -06:00
|
|
|
---
|
2026-04-17 09:04:35 -05:00
|
|
|
title: "OpenSSH Server - Enable"
|
2026-02-23 18:28:56 -06:00
|
|
|
description: ""
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
```powershell {filename="functions/public/Invoke-WPFSSHServer.ps1",linenos=inline,linenostart=1}
|
|
|
|
|
function Invoke-WPFSSHServer {
|
|
|
|
|
<#
|
|
|
|
|
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Invokes the OpenSSH Server install in a runspace
|
|
|
|
|
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
Invoke-WPFRunspace -ScriptBlock {
|
|
|
|
|
|
|
|
|
|
Invoke-WinUtilSSHServer
|
|
|
|
|
|
|
|
|
|
Write-Host "======================================="
|
|
|
|
|
Write-Host "-- OpenSSH Server installed! ---"
|
|
|
|
|
Write-Host "======================================="
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|