Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/batzen/batzendev.remotedesktoplockprevent
https://github.com/batzen/batzendev.remotedesktoplockprevent
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/batzen/batzendev.remotedesktoplockprevent
- Owner: batzen
- License: mit
- Created: 2014-07-30T21:44:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-06-26T08:31:03.000Z (over 3 years ago)
- Last Synced: 2024-10-11T14:29:41.483Z (25 days ago)
- Language: C#
- Size: 15.6 KB
- Stars: 5
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Batzendev.RemoteDesktopLockPrevent
==================================Windows service which prevents a workstation/virtual machine from being locked when an RDP (remote desktop protocol) connection is disconnected. This is achieved by making use of tscon.exe which is able to tranfser/attach a session to a different session. In this case we attach the disconnecting remote session to the console session.
You should only use this service when you really know why you need it and never on a physically accessible machine as it renders such a machine unprotected after your RDP connection is disconnected.
# Motivation to build this
My use case for this service is a third party QA (Quality assurance) UI (User interface) automation application which, sadly, works with SendKeys/SendWait and is used as part of CI (continuous integration) builds.As SendKeys/SendWait does NOT work when the machine is locked, but people are allowed to connect via RDP, i have to ensure that the virtual machine stays unlocked.
# Workflow
- Detect remote session disconnect (before it is completly disconnected)
- call tscon.exe with the current session id and attach it to the console session (tscon.exe $sessionId /dest:console)# Installation instructions
- Download the binary from the release section
- InstallUtil.exe LOCATION_OF_BINARY\Batzendev.RemoteDesktopLockPrevent.exe
- **Please note that InstallUtil.exe has to be run as administrator**
- Start the service "Batzendev.RemoteDesktopLockPrevent" by hand or reboot the machine you installed the service on## How to find InstallUtil
> This tool is installed with the .NET Framework to the folder %WINDIR%\Microsoft.NET\Framework[64]\framework_version. For example, the default path for the 32-bit version of the .NET Framework 4, 4.5, 4.5.1, and 4.5.2 is C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe.Taken from http://msdn.microsoft.com/en-us/library/zt39148a(v=vs.110).aspx which also describes how to uinstall the service.