mirror of
https://github.com/1Remote/1Remote.git
synced 2026-04-25 05:26:04 +03:00
[GH-ISSUE #658] Keyboard shortcut for reconnecting as a way to fix locking RDP session #3456
Labels
No labels
area-configuration
area-ct-app
area-ct-rdp
area-ct-remoteapp
area-ct-ssh
area-ct-vnc
area-launcher
area-list
area-tags
area-teamwork
bug
chore
dependencies
general-build/ci
general-performance
general-refactor
general-security
general-supportive
general-ux
meta-documentation
meta-enhancement
meta-enhancement
meta-feature
meta-help-wanted
meta-unknown-error
priority-hi
priority-low
pull-request
question
resolution-duplicate
resolution-invalid
resolution-wontfix
stale
task-put-off
task-still-considering
task-working-in-progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/1Remote#3456
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rafi-d on GitHub (May 3, 2024).
Original GitHub issue: https://github.com/1Remote/1Remote/issues/658
Hi,
Is there a list of key shortcuts available for 1remote manager?
Specifically, I like the shortcut for "reconnect" menu item (for the selected PC[s]), for my frequent use case:
The remote is locking the session into the login screen, and re-connect is the easiest way to re-login...
...and If possible - for "connect" too?
There was an old request here for user-definable hot keys, but the above is the minimum for me :) ...
There was also a request of mine for preventing lock timeout ( #629 ) which this can be a semi work-around to ... BTW, emulating key/mouse input/juggle option might work for preventing timeouts if you can generate such inputs
@majkinetor commented on GitHub (May 3, 2024):
There is also #405.
@majkinetor commented on GitHub (May 3, 2024):
Good idea, it never occurred to me. Emulating keys is IMO too intrusive, as that can influence the remote. Moving a mouse, though, slightly, then moving it in the opposite direction could work.
@rafi-d commented on GitHub (May 3, 2024):
Right, possibly for a "timeout" duration... It might work, but needs testing, since it is not clear if a mouse move by itself, without any action (like click+scroll) will count as an "activity" ...
A key pressed is always an activity, so maybe some "harmless" key-code can be found ..
Yeah, I was referring to this one...
@majkinetor commented on GitHub (May 3, 2024):
I doubt the harmless key exists - you could have a keyloger for example.
You can check out if mouse works by using Autohotkey on the remote host:
Save this as mouse.ahk and doubleclick it to run it, after you install AHK (portable version can be used too). You can see the script running in the tray.
This will move mouse 1 pixel left then right every 60s, making it keep its previous position. Its good enough for PoC.
If this works, I guess 1remote can simulate this as background task based on configuration option, but @VShawn will know more about it.
@majkinetor commented on GitHub (May 3, 2024):
BTW, I think reconnect hotkey might not be possible - once remote grabs input, its AFAIK not possible to execute some hotkeys on the local host, since after locking you out, remote will still keep keyboard focus on the login UI, and those hotkeys would finish on remote (see #40)