#RustDesk 最有用的一集 —— 调试 #GitHub #Actions
- name: Install RustDesk for Debug
  shell: powershell
  run: |
    choco install rustdesk.install
    cd "C:\Program Files\RustDesk\"
    ./rustdesk.exe --install-service
    ./rustdesk.exe --get-id | Out-String
    ./rustdesk.exe --password AWeakpASSword
- name: Block for remote control
  run: sleep 10000000
 
 
Back to Top