2024-10-01 21:59:47 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2024-10-14 11:38:09 +02:00
|
|
|
|
Enter another host via SSH
|
2024-10-01 21:59:47 +02:00
|
|
|
|
.DESCRIPTION
|
2024-10-04 21:13:53 +02:00
|
|
|
|
This PowerShell script logs into a remote host via secure shell (SSH).
|
2024-10-01 22:10:48 +02:00
|
|
|
|
.PARAMETER remoteHost
|
|
|
|
|
Specifies the remote hostname or IP address
|
2024-10-01 21:59:47 +02:00
|
|
|
|
.EXAMPLE
|
2024-10-14 11:38:09 +02:00
|
|
|
|
PS> ./enter-host.ps1 tux
|
2024-10-25 15:30:01 +02:00
|
|
|
|
⏳ Connecting to 'tux' as user 'markus' using OpenSSH_for_Windows_9.5p1, LibreSSL 3.8.2
|
|
|
|
|
markus@tux's password:
|
2024-10-14 11:38:09 +02:00
|
|
|
|
...
|
2024-10-01 21:59:47 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
2024-10-01 22:10:48 +02:00
|
|
|
|
param([string]$remoteHost = "")
|
2024-10-01 21:59:47 +02:00
|
|
|
|
|
|
|
|
|
try {
|
2024-10-25 15:30:01 +02:00
|
|
|
|
if ($remoteHost -eq "") {
|
|
|
|
|
$remoteHost = Read-Host "Enter the remote hostname or IP address"
|
|
|
|
|
$remoteUser = Read-Host "Enter the username at $remoteHost"
|
|
|
|
|
|
|
|
|
|
} elseif ($IsLinux) {
|
|
|
|
|
$remoteUser = $(whoami)
|
|
|
|
|
} else {
|
|
|
|
|
$remoteUser = $env:USERNAME
|
2024-10-30 12:58:00 +01:00
|
|
|
|
$remoteUser = $remoteUser.toLower()
|
2024-10-25 15:30:01 +02:00
|
|
|
|
}
|
2024-10-01 21:59:47 +02:00
|
|
|
|
|
2024-10-30 12:58:00 +01:00
|
|
|
|
Write-Host "⏳ Connecting to '$remoteHost' as user '$remoteUser' using " -noNewline
|
2024-10-01 21:59:47 +02:00
|
|
|
|
& ssh -V
|
2024-10-04 21:13:53 +02:00
|
|
|
|
if ($lastExitCode -ne "0") { throw "'ssh -V' failed with exit code $lastExitCode" }
|
|
|
|
|
|
2024-10-30 12:58:00 +01:00
|
|
|
|
& ssh "$($remoteUser)@$($remoteHost)"
|
2024-10-01 21:59:47 +02:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|