Zitat von
malo:
Ich hab heute 'nen Tipp gekriegt, wie man das mit WinExec macht.
Winexec('Shutdown.exe -s', 1
Das geht aber auch ohne WinExec():
Delphi-Quellcode:
uses
Windows;
//...
begin
InitiateSystemShutdown(nil, nil, 120, false, true);
end;
Und:
AbortSystemShutdown(nil);