WIndows 10: mulitple logins via RDP and "direct"?

0

1

I think the answer is "no, it's not possible", but...

I have a Windows 10 system on a quad core NUC that I log into via Microsoft Remote Desktop -- it makes a great compilation environment for my work.

Recently, my son asked if he could log in using the keyboard and mouse to play Minecraft. Seemed simple enough, but as far as I can tell, Windows 10 only allows one user to be logged in at a time.

So my question: is there a way for my son to log in directly to play Minecraft while I log in remotely via Microsoft Remote Desktop to compile code? I'm not interested in hacking .dll files to circumvent the Microsoft license; I want to know if there's a legitimate way to do this.

fearless_fool

Posted 2019-09-22T20:05:29.760

Reputation: 103

Answers

2

You practically answered your own question; Microsoft's licensing does not allow multiple active graphical sessions for "client" (consumer) operating systems.

You would need Windows Server to make this work in general, plus RDS client licenses if you wanted non-admin users and/or more than 2 sessions.

That said: the restriction only applies to Remote Desktop (Terminal Services). You can still log in over the network as long as it's non-graphical, e.g. run your compilation through SSH or through PowerShell Remoting. Most build systems will run from the command line.

(Besides having Enter-PSSession, Windows 10 now comes with OpenSSH server as an official add-on, and for earlier versions there are options such as Bitvise WinSSHd.)

user1686

Posted 2019-09-22T20:05:29.760

Reputation: 283 655

Super helpful: I did not know you could have multiple non-graphical sessions. Now if I can figure out how to run my IDE / build environment from the command line... – fearless_fool – 2019-09-23T04:25:37.220

The build environment likely can run without the IDE – being able to do automated builds (e.g. for CI) is usually a standard feature for most programming languages. – user1686 – 2019-09-23T04:34:54.907

You're right -- even the IDE I use has a CLI: https://www.iar.com/support/tech-notes/general/build-from-the-command-line/ -- many thanks.

– fearless_fool – 2019-09-23T19:47:56.100