Last active
November 12, 2024 15:59
-
-
Save darkoperator/6152630 to your computer and use it in GitHub Desktop.
Install Posh-SSH Dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$webclient = New-Object System.Net.WebClient | |
$url = "https://github.com/darkoperator/Posh-SSH/archive/master.zip" | |
Write-Host "Downloading latest version of Posh-SSH from $url" -ForegroundColor Cyan | |
$file = "$($env:TEMP)\Posh-SSH.zip" | |
$webclient.DownloadFile($url,$file) | |
Write-Host "File saved to $file" -ForegroundColor Green | |
$targetondisk = "$($env:USERPROFILE)\Documents\WindowsPowerShell\Modules" | |
New-Item -ItemType Directory -Force -Path $targetondisk | out-null | |
$shell_app=new-object -com shell.application | |
$zip_file = $shell_app.namespace($file) | |
Write-Host "Uncompressing the Zip file to $($targetondisk)" -ForegroundColor Cyan | |
$destination = $shell_app.namespace($targetondisk) | |
$destination.Copyhere($zip_file.items(), 0x10) | |
Write-Host "Renaming folder" -ForegroundColor Cyan | |
Rename-Item -Path ($targetondisk+"\Posh-SSH-master") -NewName "Posh-SSH" -Force | |
Write-Host "Module has been installed" -ForegroundColor Green | |
Import-Module -Name posh-ssh | |
Get-Command -Module Posh-SSH |
I am getting below error while importing the module, Could you Please help me.
supported. (Exception from HRESULT: 0x80131515)
At line:1 char:1
+ Import-Module 'C:\Program Files\WindowsPowerShell\Modules\Posh-SSH\As ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Import-Module], FileLoadException
+ FullyQualifiedErrorId : System.IO.FileLoadException,Microsoft.PowerShell.Commands.ImportModuleCommand
You should install from the PowerShell gallery and not use the gist. I will delete it today. Thanks for letting me know
…Sent from my iPhone
On Nov 29, 2020, at 10:58 AM, rama2412 ***@***.***> wrote:
***@***.*** commented on this gist.
I am getting below error while importing the module, Could you Please help me.
supported. (Exception from HRESULT: 0x80131515)
At line:1 char:1
+ Import-Module 'C:\Program Files\WindowsPowerShell\Modules\Posh-SSH\As ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Import-Module], FileLoadException
+ FullyQualifiedErrorId : System.IO.FileLoadException,Microsoft.PowerShell.Commands.ImportModuleCommand
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Thanks for the reply, My server is in a restricted environment with no internet access. So i can't proceed with PowerShell gallery, Could you Please help on this.
You need to download, right click on the zip and unprotect, copy the internal folder to the location for PS to see it and load it
https://docs.microsoft.com/en-us/powershell/scripting/developer/module/installing-a-powershell-module?view=powershell-7.1 <https://docs.microsoft.com/en-us/powershell/scripting/developer/module/installing-a-powershell-module?view=powershell-7.1>
… On Nov 30, 2020, at 2:32 PM, rama2412 ***@***.***> wrote:
@rama2412 commented on this gist.
Thanks for the reply, My server is in a restricted environment with no internet access. So i can't proceed with PowerShell gallery, Could you Please help on this.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <https://gist.github.com/6152630#gistcomment-3545187>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAD7IHTUUOITBKAAVKV6ONTSSPQNVANCNFSM4UGR3UEQ>.
Thanks a lot
I get...
algorithm not found
New-SSHSession : Server HMAC algorithm not found
At line:1 char:1
- New-SSHSession -ComputerName "10.91.0.105" -Credential (Get-Credentia ...
-
+ CategoryInfo : SecurityError: (Renci.SshNet.SshClient:SshClient) [New-SSHSession], SshConnectionException + FullyQualifiedErrorId : SSH.NewSshSession
how to I enable the algorithms missing to make the connection. of identify the algorithms available.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I noticed there is a small issue when running this script upon upgrade.
Your rename-item command fails if you try to renamed over an existing module.
Once alternative would be to cleanup the posh-ssh folder, by adding this before line 14-15
Remove-Item -Path ($targetondisk+"\Posh-SSH") -Force