CloudRemoting module provides an easy and scriptable way to connect to EC2, Azure or to other machines via RDP, PSRemoting and SSM sessions on top of the standard cmdlets by:
- Seamless EC2 Administrator Credential decryption for RDP and PSRemoting
- Credential pass-through for RDP Sessions
- Pipeline integrated SSM Run Command execution
CloudRemoting is available via PowerShellGallery and via PsGet, so you can simply install it with the following command:
# Install it from PowerShell Gallery with PS5 / psget.net for older PS versions
Install-Module CloudRemoting
# Or install it directly from this repository with psget.net
psget\Install-Module -ModuleUrl -ModuleUrl https://github.com/murati-hu/CloudRemoting/archive/latest.zip
Of course you can download and install the module manually too from Downloads
Import-Module CloudRemoting
AWS SSM Run-command allows us to execute scripts against EC2 Instances from anywhere
without direct network connectivity to the targets.
Invoke-SSMCommand
is an extension on top of the standard Send-SSMCommand
to make
this task even easier and fully integrate this feature to PowerShell pipelines.
# Execute scripts with SSM Run Command similarly as Invoke-Command
Get-Ec2Instance i-2492acfc | Invoke-SSMCommand { iisreset }
# Execute SSM alias, with a CLI serialized command via S3 output
Set-DefaultSSMOutput -BucketName 'ssm-outputs' -KeyPrefix 'logs/'
Get-Ec2Instance i-2492acfc | ssm { Get-WebSite } -EnableCliXml | Select Name,InstanceId
You can use the Enter-EC2RdpSession
cmdlet or its ec2rdp
alias to connect to any EC2 instance as an administrator via RDP.
Get-Ec2Instance i-2492acfc | Enter-EC2RdpSession -PemFile '~/.ssh/myprivatekey.pem'
Similarly to the native PSSession
cmdlets, you can use the New-EC2PSSession
and Enter-EC2RdpSession
commands to create or enter to any EC2 PSSession as an administrator:
# Enter to a single EC2 PSSession
Get-Ec2Instance i-2492acfc | Enter-EC2PSSession -PemFile '~/.ssh/myprivatekey.pem'
# Set Default EC2 PemFile and create multiple EC2 PSSessions
Set-DefaultEC2PemFile -PemFile '~/.ssh/myprivatekey.pem'
Get-Ec2Instance -Filter @{name='tag:env'; value='demo'} | New-EC2PSSession
Please note that all EC2 cmdlets rely on the official AWSPowershell
module.
It expects the module to be installed with valid AWS credentials setup.
In order to connect to any machine via RDP, you can simply call Enter-RdpSession
cmdlet or its rdp
alias.
# Connect an RDP Session to any machine
$c = Get-EC2Credential # Or retrieve from a persisted creds
Enter-RdpSession -ComputerName '207.47.222.251' -Credential $c
Cmdlets and functions for CloudRemoting have their own help PowerShell help, which
you can read with help <cmdlet-name>
.
CloudRemoting aims to adhere to Semantic Versioning 2.0.0.
In case of any issues, raise an issue ticket in this repository and/or feel free to contribute to this project if you have a possible fix for it.
- Source hosted at Github.com
- Report issues/questions/feature requests on Github Issues
Pull requests are very welcome! Make sure your patches are well tested. Ideally create a topic branch for every separate change you make. For example:
- Fork the repo
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Created and maintained by Akos Murati (akos@murati.hu).
Apache License, Version 2.0 (see LICENSE)