Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
/ CloudPC Public archive

Free Cloud PC by using GitHub workflows

Notifications You must be signed in to change notification settings

Sangwaniya/CloudPC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

34 Commits

Repository files navigation

Free CloudPC in 2 steps by GitHub workflow cloud

Network Speed: 5GB per sec, i5 latest gen and 8 gb ram

  1. Copy the github workflow file main.yaml
  • .github/workflows/main.yaml
name: CI
on: [push, workflow_dispatch]
jobs:
build:
runs-on: windows-latest
timeout-minutes: 360 # Set the timeout to 6 hours
steps:
- name: Download
run: Invoke-WebRequest https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-windows-amd64.zip -OutFile ngrok.zip
- name: Extract
run: Expand-Archive ngrok.zip
- name: Auth
run:.\ngrok\ngrok.exe authtoken $Env:NGROK_AUTH_TOKEN
env:
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
- name: Enable TS
run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0
- run: Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
- run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "UserAuthentication" -Value 1
- run: Set-LocalUser -Name "runneradmin" -Password (ConvertTo-SecureString -AsPlainText "Pass@1234" -Force)
- name: Create Tunnel
run:.\ngrok\ngrok.exe tcp 3389
  1. Set env variable value for NGROK_AUTH_TOKEN:
env:
NGROK_AUTH_TOKEN: 'Your Authtoken Value'

Your Authtoken you can get by sign in to ngrok website ->>Your Authtokenhttps://dashboard.ngrok /get-started/your-authtoken. Now after merging the code, go to ngrok ->> cloudEdge ->> Endpoints Now here you found the endpoint to connect with RDP, using Windows remote desktop connectionimage

Credentials: username - runneradmin password- Pass@1234

Enjoyyyyyyyyyyyy yourrrrrrr freeeeeee and secure RDPPPPPPP frommmmmmmmmm GitHubbbbbbbbbbbbb.

.github/workflows file

Releases

No releases published

Packages

No packages published