I have developed my own Softkeyboard that I user for programs running on Windows 7 in a touch-only environment. However, for User-Logon I'd like to use the Microsoft Onscreen Keyboard.
Is it possible to automatically enable the Windows Onscreen Keyboard when a user selects a user-icon, and has to enter a password? What settings need to be done to do this?
When the user has successfully logged on, I don't want the Onscreen Keyboard to be displayed anymore in any Windows program, I need it only for logon.
Is that possible, and how?
You can tryout this....
1) Copy Onscreen Board Option which is available in accessibility.
Start ->Programs -> Accessories -> Accessibility -> Right Click on On-Screen Board, Copy.
2) Paste this in Startup
Start -> Right click on Startup, Select Explore for all users, Paste it...
Alternatively you can come up with a .BAT file which will results in creating an instance of On-Screen Keyboard[Run command for on screen is OSK] then Using Scheduled Tasks which you can see in control panel options, make that batch file run when when computer tasks..
Steps to create .bat file 1. Open NotePad
2.Paste the below lines
@echo off
osk
Save that As [FileName].bat.
To Test Double click on [FileName].bat, you should be able to see on screen keyboard on your screen.
Detailed steps to use scheduled task
Select Scheduled Tasks in control panel
Add Scheduled task
Click on Next
Browse for the batch file which you created(Test The batch file, when you double click on that file, should be able to see On Screen Keyboard on your screen)
Click on Next
Select "When my computer starts"
Click on Next
Provide the Credentials[Better to provide administrative priviliges account credentials if you have Any Admin User Account in your machine].
Click on Finish...
Regards,
Anoop