1. 4:32 PM 7/28/2010 2. 3 Day 3. MC9090 4. WM 5.0 BSP 43 5. 2185189 Customer has issue where in Terminal Services to Windows 2003/2008 server Function + T key does not send "-". Instead, takes Function + N key to do this. 53 Key keyboard, and on the keyboard it says Function + T gives you "-" so end users confused. I have verified this here. How can I remap Function + T to send "-" instead of Function + N? Do I have to modify tscscan.txt in the \Windows directory and if so how?
MC9090 - Function + T Not Sending - In Terminal Services |
1 Replies
Per Hiro change the tscscan.txt as follows:
From 0x00 0x00 // 0x6d - VK_SUBTRACT
To 0x4a 0x2d // 0x6d - VK_SUBTRACT
1. Search VK_XXXX in the right comment field, where xxx is the character you want to send. For the last example, it was VK_SUBTRACT.
2. Replace the first number with SC_xxxx in hex (get it from scancode.h) of the character you want to send. For the last example, it was SC_MINUSKEY
3. Replace the seconds number with the character in hex you want to send. For the last example, it was “-“ character, or 0x2d (note. This is not VK_SUBTRACT, which was wrong).