diff --git a/Scripts/enable-ssh-client.ps1 b/Scripts/enable-ssh-client.ps1 index 8776a36a..cfd0a0ce 100755 --- a/Scripts/enable-ssh-client.ps1 +++ b/Scripts/enable-ssh-client.ps1 @@ -14,9 +14,12 @@ #Requires -RunAsAdministrator try { + $StopWatch = [system.diagnostics.stopwatch]::startNew() + Add-WindowsCapability -Online -Name OpenSSH.Client* - write-host -foregroundColor green "OK - SSH client enabled" + [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds + "✔️ enabled SSH client in $Elapsed sec" exit 0 } catch { write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" diff --git a/Scripts/enable-ssh-server.ps1 b/Scripts/enable-ssh-server.ps1 index ef85c67c..d44c49d4 100755 --- a/Scripts/enable-ssh-server.ps1 +++ b/Scripts/enable-ssh-server.ps1 @@ -14,11 +14,14 @@ #Requires -RunAsAdministrator try { + $StopWatch = [system.diagnostics.stopwatch]::startNew() + Add-WindowsCapability -Online -Name OpenSSH.Server* Start-Service sshd Set-Service -Name sshd -StartupType 'Automatic' - write-host -foregroundColor green "OK - SSH server enabled" + [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds + "✔️ installed SSH server in $Elapsed sec" exit 0 } catch { write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"