Skip to content

Update start.bat

Update start.bat #18

Workflow file for this run

name: WINDOWS 2019 RDP
on:
workflow_dispatch:
inputs:
increment:
type: string
description: "Enter Your NGROK TOKEN"
required: true
default: ""
jobs:
build:
runs-on: windows-2019
timeout-minutes: 9999
steps:
- name: Download Ngrok.
run: |
Invoke-WebRequest https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-windows-amd64.zip -OutFile ngrok.zip
Invoke-WebRequest https://raw.githubusercontent.com/Riders004/rdp/master/start.bat -OutFile start.bat
Invoke-WebRequest https://raw.githubusercontent.com/Riders004/rdp/master/download1.jpeg -OutFile wallpaper.bat
Invoke-WebRequest https://raw.githubusercontent.com/Vip3rLi0n/Ngrok-RDPs/main/resources/loop.ps1 -OutFile loop.ps1
- name: Extract ngrok
run: Expand-Archive ngrok.zip

Check failure on line 23 in .github/workflows/window-2019.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/window-2019.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
- name: Connect Ngrok.
run: |
./ngrok/ngrok.exe authtoken $Env:NGROK_AUTH
echo ${{ github.event.inputs.increment }}
echo $Env:NGROK_AUTH
env:
NGROK_AUTH: ${{ github.event.inputs.increment }}
- name: Windows10 RDP.
run: |
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDenyTSConnections" -Value 0
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "UserAuthentication" -Value 1
copy wallpaper.bat D:\a\wallpaper.bat
- name: Tunnel.
run: ./ngrok/ngrok.exe tcp --region ap 3389
- name: Connect Rdp.
run: cmd /c start.bat
- name: win10 RDP.
run: ./loop.ps1