How to detect, from browser, if user is running in Remote Desktop session?
问题 Is there a ways to check inside a browser (e.g. javascript) if the user is running inside a Remote Desktop session? If the user is running their browser inside a Remote Desktop (i.e. Terminal Services), i want to disable animations on the web-site. If this were a native application, as opposed to a web-site, i could perform this checking using: //Native code isRemoteSession = GetSystemMetrics( SM_REMOTESESSION ); or //Managed Code: isRemoteSession = System.Windows.Forms.SystemInformation