Differntt Shells/Users Question

  • Thread starter Thread starter PJC
  • Start date Start date
P

PJC

Afternoon All!

Quick question about different shells for different users.

Currently, this functionality works fine for me except that when I exit
my custom shell, my system sists at a very nice light blue screen (a
default background I think). Cntrl-Alt-Del brings up the Task Manager
(this is OK). What I would like to happen, is if you exit the custome
shell application using Cntrl-F4, I would like the system to reboot.

My custom shell is actually an IE browser window.

Any thoughts?

Thanks!!
 
PJC said:
Afternoon All!

Quick question about different shells for different users.

Currently, this functionality works fine for me except that when I
exit my custom shell, my system sists at a very nice light blue
screen (a default background I think). Cntrl-Alt-Del brings up the
Task Manager (this is OK). What I would like to happen, is if you
exit the custome shell application using Cntrl-F4, I would like the
system to reboot.

My custom shell is actually an IE browser window.

Any thoughts?

Thanks!!

You could write your own shell (just an app) that hosts an IE browser window
that has the functionality of causing a shutdown (ExitWindowsEx) when the
application exits.
 
Quick question about different shells for different users.
You could write your own shell (just an app) that hosts an IE browser window that has the functionality of causing a shutdown
(ExitWindowsEx) when the application exits.

And even easier than WebBrowser/IE hosting. From the small shell app, just launch IE and wait on the process handle until it
signals. This way you know when use closes IE process and at this point you can do whatever you want to do - reboot, shutdown, etc.
 
Back
Top