Steam telepítése
belépés
|
nyelv
简体中文 (egyszerűsített kínai)
繁體中文 (hagyományos kínai)
日本語 (japán)
한국어 (koreai)
ไทย (thai)
Български (bolgár)
Čeština (cseh)
Dansk (dán)
Deutsch (német)
English (angol)
Español - España (spanyolországi spanyol)
Español - Latinoamérica (latin-amerikai spanyol)
Ελληνικά (görög)
Français (francia)
Italiano (olasz)
Bahasa Indonesia (indonéz)
Nederlands (holland)
Norsk (norvég)
Polski (lengyel)
Português (portugáliai portugál)
Português - Brasil (brazíliai portugál)
Română (román)
Русский (orosz)
Suomi (finn)
Svenska (svéd)
Türkçe (török)
Tiếng Việt (vietnámi)
Українська (ukrán)
Fordítási probléma jelentése
An option in IHS to give the Host login credentials so it will automatically unlock>stream>re-lock would be great
Remotely Unlock a Windows Workstation
http://www.codeproject.com/Articles/16197/Remotely-Unlock-a-Windows-Workstation
or
Logon command line utility
http://www.softtreetech.com/24x7/archive/51.htm
TSCON <SessionIDNumber> /DEST:Console /PASSWORD:PasswordForUser
For example:
TSCON 3 /DEST:Console /Password:ThisIsThePasswordForTheUserLoggedIntoSession3
You can find out what your session ID is by opening up Task Manager and looking at the Users tab.
This will disconnect that user and attach that session to the console, which will also unlock the screen.
Of course WARNING: Using this method WILL unlock the remote machine, so anyone sitting in front of it will have full access.
Edit: I will investigate writing a quick small GUI tool that can automate this process in C# later tonight after work, if anyone is interested.
Also, you can try creating a shortcut with the following target:
C:\Windows\system32\TSCON.exe %sessionname% -DEST:Console
It *should* disconnect the RDP session you are currently in and attach it to the console (aka unlock the remote machine). I personally use this method most of the time.
NOTE: You have to right click and run the shortcut as administrator or else nothing will happen.