Start Killer exit.
Started by Krafter


Rate this topic
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5


2 posts in this topic
Krafter
Junior Member
**


0
1 posts 1 threads Joined: Feb 2011
02-16-2011, 09:53 AM -
#1
Hi,

I am working on a project that is crucial that the users do not shutdown the PC or get to any functions that is under the Start Menu or desktop. I came across this app while searching for ways to disable the Start Menu and I love it because I can lock them out of everything except the application I want them in. The only problem is when it comes time for an admin (someone besides me) to do normal maintenance or run an app they can't stop Start Killer without Ctrl+Shift+Alt+F12, select Show Icon in System Tray, right click the icon and exit. I tried writing a VB app that would just kill the process but when I do it crashes Windows Explorer and that is not good.

My question is, is there any other way to stop Start Killer without using the key combo?
Yuri Kobets
Posting Freak
*****


10
6,208 posts 429 threads Joined: Jan 2002
02-18-2011, 11:52 AM -
#2
It is very easy. Here is the code on C:
Code:
HWND wnd = FindWindow(L"STARTKILLER", NULL);
if(wnd)
{
    SendMessage(wnd, WM_CLOSE, 0, 0);
}
The TORDEX Team
http://www.tordex.com


Forum Jump:


Users browsing this thread: 1 Guest(s)