Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2005.08.14;
Скачать: CL | DM;

Вниз

2 секунды   Найти похожие ветки 

 
dan   (2005-06-23 02:31) [0]

Всем привет, у меня вопрос на 2 секунды.
Как выключить комп в XP?
Заранее спасибо.


 
Kerk ©   (2005-06-23 07:57) [1]

ExitWindowSex

The ExitWindowsEx function either logs off the current user, shuts down the system, or shuts down and restarts the system. It sends the WM_QUERYENDSESSION message to all applications to determine if they can be terminated.


 
MS-MEN ©   (2005-06-23 09:52) [2]

> Kerk
Не забывай надо ещё иметь привилигий DEBUG  )

procedure NTShutdown;
var
 TokenHandle: Cardinal;
 RetLength: Cardinal;
 TP: TTokenPrivileges;
begin
 OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES
   or TOKEN_QUERY, TokenHandle);
 if LookupPrivilegeValue(nil, "SeShutdownPrivilege",
   TP.Privileges[0].Luid) then
 begin
   TP.PrivilegeCount := 1;
   TP.Privileges[0].Attributes := SE_PRIVILEGE_ENABLED;
   RetLength := 0;
   if AdjustTokenPrivileges(TokenHandle, FALSE, TP, 0, nil, RetLength) then
   begin
     if not SetProcessShutdownParameters($4FF, SHUTDOWN_NORETRY) then
     begin
       MessageBox(0, "Shutdown failed", nil, MB_OK or MB_ICONSTOP);
     end
     else
     begin
       ExitWindowsEx(EWX_FORCE or EWX_SHUTDOWN, 0);
     end;
     exit;
   end;
 end;
 MessageBox(0, "Access denied", nil, MB_OK or MB_ICONSTOP);
end;


 
Kerk ©   (2005-06-23 09:57) [3]

To shut down or restart the system, the calling process must use the AdjustTokenPrivileges function to enable the SE_SHUTDOWN_NAME privilege.


 
MS-MEN ©   (2005-06-23 10:03) [4]

:)



Страницы: 1 вся ветка

Текущий архив: 2005.08.14;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.047 c
3-1120455337
-=snoop=-
2005-07-04 09:35
2005.08.14
как определить - выделенна запись в таблице или нет


14-1121805487
radium
2005-07-20 00:38
2005.08.14
Update для D7 - кто ставил?


14-1121950650
аРТ
2005-07-21 16:57
2005.08.14
Как сделать 2 разные юридически и одинаковые функционально проги?


1-1122360818
Dust
2005-07-26 10:53
2005.08.14
GetLastError


3-1120648252
Apachi
2005-07-06 15:10
2005.08.14
Как в селекте можно возращать порядковый номер записи????