neutrinus / EC2SteamRemotePlay

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AWS EC2 Steam remote play Self Hosted Cloud Setup Script

This script sets up your cloud computer with a bunch of settings and drivers to make your life easier.

Based on:

Thanks for the fishes!

AWS security groups - network configuration - open ports

  • RDP (for initial configuration and deployment)
  • Steam streaming uses UDP(27031 and 27036) and TCP(27036 and 27037)

Instructions:

  1. Configure awc-cli with your credentials
  2. Create Spot instance on AWS EC2: ./create_aws_ec2_spot_req.sh
  3. Log in via RDP and make note of the password - you'll need it later
  4. Open Powershell on the cloud machine.
  5. Copy the below code and follow the instructions in the script:
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls"  
(New-Object System.Net.WebClient).DownloadFile("https://github.com/neutrinus/EC2SteamRemotePlay/archive/master.zip","$ENV:UserProfile\Downloads\EC2SteamRemotePlay.zip")  
New-Item -Path $ENV:UserProfile\Downloads\EC2SteamRemotePlay -ItemType Directory  
Expand-Archive $ENV:UserProfile\Downloads\EC2SteamRemotePlay.Zip -DestinationPath $ENV:UserProfile\Downloads\EC2SteamRemotePlay
CD $ENV:UserProfile\Downloads\EC2SteamRemotePlay\EC2SteamRemotePlay-master\  
Powershell.exe -File $ENV:UserProfile\Downloads\EC2SteamRemotePlay\EC2SteamRemotePlay-master\run.ps1
  1. Run Steam client, login and install games :)

About


Languages

Language:PowerShell 99.6%Language:Shell 0.4%