├── .github └── workflows │ └── techtobangla.yml └── README.md /.github/workflows/techtobangla.yml: -------------------------------------------------------------------------------- 1 | name: techtobangla 2 | 3 | on: workflow_dispatch 4 | 5 | jobs: 6 | 7 | build: 8 | 9 | runs-on: windows-latest 10 | 11 | timeout-minutes: 9999 12 | 13 | steps: 14 | 15 | - name: Download Ngrok & NSSM 16 | 17 | run: | 18 | Invoke-WebRequest https://github.com/avgchamara/WindowsRDP/raw/main/ngrok.exe -OutFile ngrok.exe 19 | Invoke-WebRequest https://github.com/avgchamara/WindowsRDP/raw/main/nssm.exe -OutFile nssm.exe 20 | - name: Copy NSSM & Ngrok to Windows Directory. 21 | 22 | run: | 23 | copy nssm.exe C:\Windows\System32 24 | copy ngrok.exe C:\Windows\System32 25 | - name: Connect your NGROK account 26 | 27 | run: .\ngrok.exe authtoken $Env:NGROK_AUTH_TOKEN 28 | 29 | env: 30 | 31 | NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} 32 | 33 | - name: Download Important Files. 34 | 35 | run: | 36 | Invoke-WebRequest https://github.com/avgchamara/WindowsRDP/raw/main/NGROK-AP.bat -OutFile NGROK-AP.bat 37 | Invoke-WebRequest https://github.com/avgchamara/WindowsRDP/raw/main/NGROK-CHECK.bat -OutFile NGROK-CHECK.bat 38 | Invoke-WebRequest https://github.com/avgchamara/WindowsRDP/raw/main/loop.bat -OutFile loop.bat 39 | - name: Make YML file for NGROK. 40 | 41 | run: start NGROK-AP.bat 42 | 43 | - name: Enable RDP Access. 44 | 45 | run: | 46 | Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0 47 | Enable-NetFirewallRule -DisplayGroup "Remote Desktop" 48 | Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "UserAuthentication" -Value 1 49 | - name: Create Tunnel 50 | 51 | run: sc start ngrok 52 | 53 | - name: Connect to your RDP 2core-7GB Ram. 54 | 55 | run: cmd /c NGROK-CHECK.bat 56 | 57 | - name: All Done! You can close Tab now! Maximum VM time:6h. 58 | 59 | run: cmd /c loop.bat 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Join Tech To Bangla YouTube Channel For Latest Videos And Secret Tech Trick For Free. https://www.youtube.com/c/TechToBangla1 2 | 3 | RDP Windows 4 | 5 | Create RDP Windows Ram 7GB 2 Core Cpu With Github 6 | 7 | Press the Fork Button to create RDP (For Android/HP Users Please Use Desktop Mode). visit https://dashboard.ngrok.com to get NGROK_AUTH_TOKEN Inside this Repo Go to Settings > Secrets > New repository secret contents Name: Enter NGROK_AUTH_TOKEN Contents Value: Visit https://dashboard.ngrok.com/auth/your-authtoken Copy And Paste in value Press Add secret Go to Action > FREE RDP > Run Refresh Web workflow and go to FREE RDP > build Press Down arrow key "RDP INFO LOGIN" To Get IP, User, Password. 8 | --------------------------------------------------------------------------------