Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disable/Hide control panel,Run,CtrlAltDel 1

Status
Not open for further replies.

meydz

Programmer
Jun 29, 2003
31
PH
Hello,

I am about to develop a software for computer gaming rentals. I want to limit access to the following : control panel; Run; CtrlAltDel. If you have any idea, please tell me how to do this in C#.

Thanks.
 
A lot depends on the version of Windows that you're running on. If Win9x, you can disable the Ctrl-Alt-Del secure attention sequence fairly easily via some API calls (do a search in the VB6 forum, it's been covered there alot).

If on WinNT, Win2K, WinXP, Win2K03, you'll need to fire up Visual C/C++ and write a Win32 DLL called a GINA dll, which acts as a authentication filter. A simple keyboard hook will not do it, as that key sequence never shows up in the hook methods.

Don't know about hiding control panel, etc.

Microsoft used to sell a version of Windows that could be customized by an OEM, and is designed for use in a kiosk environment. Take a look at the hardware OEM part of their site.

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top