create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| # There is no facility to replace passwords in RDCMan once they are stored. The only way is to create a new custom credential. | |
| # If you open your *.rdg file in a text editor, locate the stored <password>, you can then decrypt it using this script. | |
| # This script can also encrypt a plain text password in rdg format which can be used to overwrite an existing one in the xml. | |
| Add-Type -AssemblyName System.Security; | |
| Function EncryptPassword { | |
| [CmdletBinding()] | |
| param([String]$PlainText = $null) | |
| # convert to RDCMan format: (null terminated chars) |
| # The default is High. Setting it here for clarity. | |
| # https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-5.1 | |
| $ConfirmPreference = 'High' | |
| [CmdletBinding(SupportsShouldProcess=$true)] | |
| param( | |
| [switch]$Force | |
| ) | |
| # Use this to prompt the user by default. Use the -Force parameter to disable prompting. |
| # Monitoring HAProxy via CSV stats | |
| # For detailed instructions visit http://lazic.info/josip/post/monitor-haproxy-via-prtg/ | |
| # Josip Lazic | |
| param( | |
| [string]$url, | |
| [string]$monitor | |
| ); | |
| $templates =@{ |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"