Delphi-PRAXiS
Seite 2 von 2     12   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi welche rechte für open process unter xp? (https://www.delphipraxis.net/22165-welche-rechte-fuer-open-process-unter-xp.html)

Meflin 14. Mai 2004 14:39

Re: welche rechte für open process unter xp?
 
Zitat:

Zitat von Dax
Schau mal in Assarbads PView2 nach, da ist eine Funktion, die die benötigten Privilegien setzt.

auch auf eingeschränkten konten?

Meflin 20. Mai 2004 18:07

Re: welche rechte für open process unter xp?
 
gemeint ist wohl diese :
Delphi-Quellcode:
FUNCTION SetPrivilege(sPrivilegeName: STRING; bEnabled: boolean): boolean;
VAR
  TPPrev, TP: TTokenPrivileges;
  Token: THandle;
  dwRetLen: DWord;
BEGIN
  Result := False;
  OpenProcessToken(GetCurrentProcess, TOKEN_ADJUST_PRIVILEGES OR TOKEN_QUERY, Token);
  TP.PrivilegeCount := 1;
  IF LookupPrivilegeValue(NIL, PChar(sPrivilegeName), TP.Privileges[0].LUID) THEN BEGIN
    IF (bEnabled) THEN
      TP.Privileges[0].Attributes := SE_PRIVILEGE_ENABLED
    ELSE
      TP.Privileges[0].Attributes := 0;
    dwRetLen := 0;
    Result := AdjustTokenPrivileges(Token, False, TP, SizeOf(TPPrev), TPPrev, dwRetLen);
  END;
  CloseHandle(Token);
END;
aber welche strings muss ich dem teil übergeben? die PROCESS_ALL_ACCESS etc?

Meflin 21. Mai 2004 16:11

Re: welche rechte für open process unter xp?
 
[push] :roll:

Luckie 21. Mai 2004 16:33

Re: welche rechte für open process unter xp?
 
Zitat:

Zitat von Meflin
Zitat:

Zitat von Dax
Schau mal in Assarbads PView2 nach, da ist eine Funktion, die die benötigten Privilegien setzt.

auch auf eingeschränkten konten?

Wenn du die Rechte nicht hast, kannst du sie auch nicht aktivieren. Überleg doch mal, das wäre ja eine Katastrophe.

Meflin 21. Mai 2004 16:37

Re: welche rechte für open process unter xp?
 
kommt drauf an aus welcher sicht. aber es hätte mich auch gewundert!


Alle Zeitangaben in WEZ +1. Es ist jetzt 16:29 Uhr.
Seite 2 von 2     12   

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz