mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
SSH server option (#2745)
* Squashed commit of the following:
commit c674d5eb605b549d8d8b247749954a98197277b4
Author: Saksham Singh <sakshamsingh.93502@gmail.com>
Date: Wed Sep 11 19:34:44 2024 +0530
desc update
commit 3d8bf2bdc9c382a9f087b9ac6e63cb8604c99698
Author: Saksham Singh <sakshamsingh.93502@gmail.com>
Date: Wed Sep 11 19:30:23 2024 +0530
Added Razer Block
Added the razer block by chris titus under the Fixes Section
* Moved razer-block from features to tweaks
* Updated tweaks.json
* Added option to enable ssh server under config tab
* Revert "Added option to enable ssh server under config tab"
This reverts commit ade414284d
.
* Added Option to enable ssh server under config tab
* updated docs
* Removed #2715 from this PR
* update variable name
* Fixed authorized_keys file creation issue
auth key file was not being created due to incomplete file path from the $env:HOMEPATH and also corrected the ssh directory to .ssh
This commit is contained in:
parent
db26666f97
commit
f012064574
@ -313,5 +313,13 @@
|
|||||||
"Order": "a083_",
|
"Order": "a083_",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300"
|
"ButtonWidth": "300"
|
||||||
}
|
},
|
||||||
|
"WPFWinUtilSSHServer": {
|
||||||
|
"Content": "Enable OpenSSH Server",
|
||||||
|
"category": "Remote Access",
|
||||||
|
"panel": "2",
|
||||||
|
"Order": "a084_",
|
||||||
|
"Type": "Button",
|
||||||
|
"ButtonWidth": "300"
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
@ -142,6 +142,10 @@ Open old-school Windows panels directly from WinUtil. Following Panels are avail
|
|||||||
* System Properties
|
* System Properties
|
||||||
* User Accounts
|
* User Accounts
|
||||||
|
|
||||||
|
### Remote Access
|
||||||
|
|
||||||
|
Enables OpenSSH server on your windows machine.
|
||||||
|
|
||||||
## Updates
|
## Updates
|
||||||
---
|
---
|
||||||
|
|
||||||
|
81
functions/private/Invoke-WinUtilSSHServer.ps1
Normal file
81
functions/private/Invoke-WinUtilSSHServer.ps1
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
function Invoke-WinUtilSSHServer {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Enables OpenSSH server to remote into your windows device
|
||||||
|
#>
|
||||||
|
|
||||||
|
# Get the latest version of OpenSSH Server
|
||||||
|
$FeatureName = Get-WindowsCapability -Online | Where-Object { $_.Name -like "OpenSSH.Server*" }
|
||||||
|
|
||||||
|
# Install the OpenSSH Server feature if not already installed
|
||||||
|
if ($FeatureName.State -ne "Installed") {
|
||||||
|
Write-Host "Enabling OpenSSH Server"
|
||||||
|
Add-WindowsCapability -Online -Name $FeatureName.Name
|
||||||
|
}
|
||||||
|
|
||||||
|
# Sets up the OpenSSH Server service
|
||||||
|
Write-Host "Starting the services"
|
||||||
|
Start-Service -Name sshd
|
||||||
|
Set-Service -Name sshd -StartupType Automatic
|
||||||
|
|
||||||
|
# Sets up the ssh-agent service
|
||||||
|
Start-Service 'ssh-agent'
|
||||||
|
Set-Service -Name 'ssh-agent' -StartupType 'Automatic'
|
||||||
|
|
||||||
|
# Confirm the required services are running
|
||||||
|
$SSHDaemonService = Get-Service -Name sshd
|
||||||
|
$SSHAgentService = Get-Service -Name 'ssh-agent'
|
||||||
|
|
||||||
|
if ($SSHDaemonService.Status -eq 'Running') {
|
||||||
|
Write-Host "OpenSSH Server is running."
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
Write-Host "OpenSSH Server is not running. Attempting to restart..."
|
||||||
|
Restart-Service -Name sshd -Force
|
||||||
|
Write-Host "OpenSSH Server has been restarted successfully."
|
||||||
|
} catch {
|
||||||
|
Write-Host "Failed to restart OpenSSH Server: $_"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($SSHAgentService.Status -eq 'Running') {
|
||||||
|
Write-Host "ssh-agent is running."
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
Write-Host "ssh-agent is not running. Attempting to restart..."
|
||||||
|
Restart-Service -Name sshd -Force
|
||||||
|
Write-Host "ssh-agent has been restarted successfully."
|
||||||
|
} catch {
|
||||||
|
Write-Host "Failed to restart ssh-agent : $_"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#Adding Firewall rule for port 22
|
||||||
|
Write-Host "Setting up firewall rules"
|
||||||
|
$firewallRule = (Get-NetFirewallRule -Name 'sshd').Enabled
|
||||||
|
if ($firewallRule) {
|
||||||
|
Write-Host "Firewall rule for OpenSSH Server (sshd) already exists."
|
||||||
|
} else {
|
||||||
|
New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
|
||||||
|
Write-Host "Firewall rule for OpenSSH Server created and enabled."
|
||||||
|
}
|
||||||
|
|
||||||
|
# Check for the authorized_keys file
|
||||||
|
$sshFolderPath = "$env:HOMEDRIVE\$env:HOMEPATH\.ssh"
|
||||||
|
$authorizedKeysPath = "$sshFolderPath\authorized_keys"
|
||||||
|
|
||||||
|
if (-not (Test-Path -Path $sshFolderPath)) {
|
||||||
|
Write-Host "Creating ssh directory..."
|
||||||
|
New-Item -Path $sshFolderPath -ItemType Directory -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
if (-not (Test-Path -Path $authorizedKeysPath)) {
|
||||||
|
Write-Host "Creating authorized_keys file..."
|
||||||
|
New-Item -Path $authorizedKeysPath -ItemType File -Force
|
||||||
|
Write-Host "authorized_keys file created at $authorizedKeysPath."
|
||||||
|
} else {
|
||||||
|
Write-Host "authorized_keys file already exists at $authorizedKeysPath."
|
||||||
|
}
|
||||||
|
Write-Host "OpenSSH server was successfully enabled."
|
||||||
|
Write-Host "The config file can be located at C:\ProgramData\ssh\sshd_config "
|
||||||
|
Write-Host "Add your public keys to this file -> $authorizedKeysPath"
|
||||||
|
}
|
@ -58,5 +58,6 @@ function Invoke-WPFButton {
|
|||||||
"WPFCloseButton" {Invoke-WPFCloseButton}
|
"WPFCloseButton" {Invoke-WPFCloseButton}
|
||||||
"MicrowinScratchDirBT" {Invoke-ScratchDialog}
|
"MicrowinScratchDirBT" {Invoke-ScratchDialog}
|
||||||
"WPFWinUtilPSProfile" {Invoke-WinUtilpsProfile}
|
"WPFWinUtilPSProfile" {Invoke-WinUtilpsProfile}
|
||||||
|
"WPFWinUtilSSHServer" {Invoke-WinUtilSSHServer}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user