How can I run my application when windows session is disconnected?

3.3k Views Asked by At

I have made a simple application in C# and WHITE, which click on a button to clear the logs. I use to connect to my test machine using Remote Desktop Connection and execute that application. It works fine when my session is connected but whenever i disconnect my session, it stops working.

Is there any way to execute that application when windows session is disconnected?

4

There are 4 best solutions below

2
On

You could write a Windows Service.

0
On

You could also use the task scheduler. You may not need the C# wrapper, you can add yourself the required entry within the scheduler.

1
On

It works fine when my session is connected but whenever i disconnect my session, it stops working.

This is by design. When you disconnect your session, it is locked. When your session is locked, UI automation won't work.

You could hack around this by never locking the session, possibly via different remote desktop tools (VNC/PcAnywhere). But this is definitely a hack.

Instead I suggest a different approach. I recommend avoiding UI automation whenever possible. I have always found UI automation to be flaky and unreliable.

In the comments on your question you said your app is simply UI automation to click a button to clear a log. The logs are generated by the DebugView application.

I suggest you log to a file instead. This feature is mentioned on the web site for DebugView:

http://technet.microsoft.com/en-us/sysinternals/bb896647

You could also look into using remote monitoring.

If size is an issue, you can also look into the "Log file wrapping" and "log-file rollover" features.

1
On

Taken from https://www.ranorex.com/help/latest/ranorex-remote/remote-faq#c13444

Create a batch file on your remote machine and insert the code below:

for /f "skip=1 tokens=3 usebackq" %%s in (
  `query user %username%`
) do (
 %windir%\System32\tscon.exe %%s /dest:console
)

Save this batch file on the desktop of your remote machine and name it: 'KeepSessionOpen.bat'. If you need to disconnect the RDP session, you can now simply run this batch file using administrator privileges and your remote machine will remain unlocked.