0 down vote favorite
I have a Windows 7 kiosk, which is supplied with screen keyboard enabled. I am making a kiosk software, and I don't want the screen keyboard autostarted. I will not be able to configure all kiosks manually via control panel, because there will be a bunch of them and I will not have the access. So I am writing an installer, which will install my software and turn off the screen keyboard.
I looked for osk.exe in registry (HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/Current version/Run), but it is not there, and not in HKEY_CURRENT_USER so it should be started from somewhere else. I also tried renaming osk.exe, but the installer (NSIS installer), even with RequestExecutionLevel admin command does not rename the file.
What can be possible workaround for removing the screen keyboard from autostart using installer?
Thanks!