After updated the certificate on the IIS web server today, we found that the web farm replication stopped working. And gave us an error message: I googled and tried the following two solutions, but neither of them worked for me. http://phaq.phunsites.net/2010/12/09/binding-ssl-in-iss-causes-a-specified-logon-session-does-not-exist-it-may-already-have-been-terminated-error/ http://social.technet.microsoft.com/Forums/en-US/winserversecurity/thread/4a2bcc5b-8845-4bda-a6ae-70a0503e9a6f Then I poked around and to my surprise I found the ‘SSL certificate’ … Continue reading IIS Error: A specified logon session does not exist
Author: Jackie Chen
HP Thin Client Working Notes
1) In the new HP thin client (e.g T610), to allow the normal user to see the USB storage, you have to do: Local Computer Policy -> User Configuration -> Administrative Templates -> Windows Components -> Windows Explorer –> Disable 'Hide these specified drives in My Computer' 2) Windows Embedded 7 32bits does not support … Continue reading HP Thin Client Working Notes
WMIC Examples
I did not get many chances to use WMIC (Windows Management Instrumentation Command-line) before, but recently I have used it twice and found it is really handy! Example 1: Get local user SID wmic useraccount get name,sid Example 2: Set a local user’s password never expire wmic useraccount where "Name='user01'" set Passwordexpires=false
Windows Style Ubuntu Desktop
For those users who have already gotten used to the Windows desktop style (e.g. Start button, Taskbar at the bottom, minimize/maximize/close button at the right top). Here is how to make the Ubuntu Gnome desktop work in the similar style. 1) Super + Left Alt + Right click the panel that you want to edit, … Continue reading Windows Style Ubuntu Desktop
Create Linux instance in AWS
Follow the same process described in Create Windows instance in AWS to build the Linux instance. The only two differences are the security group settings and the remote connection method. 1) Create a new security group to allow the SSH (and VNC) inbound traffic. 2) There are 3 ways to connect to the remote Linux … Continue reading Create Linux instance in AWS