On Windows 10, I want to run an OpenGL application via Remote Desktop. This limitation is well-known for Nvidia GeForce cards, and the workaround is to use a BAT script to transfer the session to the console before launching the app like this:
tscon 1 /dest:console
start “myapp.exe”
This disconnects the RDP session, then the user must reconnect. I am trying to think of a way to do this while leaving the user connected. I think it could work like this:
- Create "virtual" RDP session #2
- Connect session 2 to current session 1
- Connect session 1 to console (session 0)
- Launch application in console
- Connect console to session 2
- Kill session 1
Is this possible? I can't find any commands for creating a virtual session.