Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » begriff stuzig

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 < [ 2 ]
000
10.12.2006, 19:56 Uhr
Multi



ich weiß das es so ein ähnliches thema schon mal gab
bin aber nicht dahinter gekommen wie das geht
nämlich das mit dem admistrator und datum

ich brauch nur paar daten


user admistrator oder nicht
user name

tages datum
monat


bitte bei antworten kompletten quelltext aber nur diese anwendungen (die nötig sind)
--
Microschrott präsentiert
Windoof SE Natiol
jetzt sofort den Mega-Bundle bestellen
mit der stylischen 3Tasten Tastartur
(Strg, Alt, Entf)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
10.12.2006, 21:56 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


username: GetUserName
tagesdatum/monat: GetSystemTime

Die Gruppenzugehörigkeit wird relativ kompliziert, da musste mit LookupAccountName und Co rumspielen.

hier ist ein Codeschnipsel wie das z.B geht das vom aktuellen Prozess auszulesen:

www.winehq.com/pipermail/wine-cvs/2006-May/022802.html
--
class God : public ChuckNorris { };

Dieser Post wurde am 10.12.2006 um 21:58 Uhr von FloSoft editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
10.12.2006, 22:44 Uhr
Guybrush Threepwood
Gefürchteter Pirat
(Operator)


und nächstes mal einen vernünftigen Threadtitel wählen der zum Thema passt
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
11.12.2006, 11:43 Uhr
J-jayz-Z
Perl Crack ala Carte
(Operator)



Zitat von Multi:
ibitte bei antworten kompletten quelltext aber nur diese anwendungen (die nötig sind)

Und sowas nicht vorraussetzen, sonst coden hier noch welche für dich und schreiben dir dann ne Rechnung, die du nicht bereit bist zu zahlen. Dann geht der Programmierer vor Gericht und gewinnt. Dann gehst du Pleite, dein PC wird gepfändet und du wirst mit dem Stück Code eh nie wieder was anfangen können, weils im Obdachlosenheim kein Internet gibt ... Im schlimmsten Falle ...

Coden musst du schon selbst, ein Forum ist nur eine Hilfestellung...
--
perl -Mstrict -Mwarnings -e 'package blub; sub new { bless {} } sub bar {my $self=shift; $self->{bla}="66756e2d736f66742e6465"; return $self->{bla};} my $foo=blub->new();print "Hallo ";print pack("H*",$foo->bar()); print "\n"'
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
11.12.2006, 12:27 Uhr
Bruder Leif
dances with systems
(Operator)


Bring mich nicht auf Ideen...
--
Mit 40 Fieber sitzt man nicht mehr vor dem PC.
Man liegt im Bett.
Mit dem Notebook.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
11.12.2006, 12:29 Uhr
J-jayz-Z
Perl Crack ala Carte
(Operator)


Tue ich aber, jetzt ist nur noch eins zu klären -> Wer ist schneller ?
--
perl -Mstrict -Mwarnings -e 'package blub; sub new { bless {} } sub bar {my $self=shift; $self->{bla}="66756e2d736f66742e6465"; return $self->{bla};} my $foo=blub->new();print "Hallo ";print pack("H*",$foo->bar()); print "\n"'
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
006
11.12.2006, 14:37 Uhr
Multi



den code schreib ich selber bloß is ncht gut wenn man nit weiß wie
--
Microschrott präsentiert
Windoof SE Natiol
jetzt sofort den Mega-Bundle bestellen
mit der stylischen 3Tasten Tastartur
(Strg, Alt, Entf)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
007
11.12.2006, 14:50 Uhr
Multi



The GetUserName function retrieves the user name of the current thread. This is the name of the user currently logged onto the system.

BOOL GetUserName(

LPTSTR lpBuffer, // address of name buffer
LPDWORD nSize // address of size of name buffer
);


Parameters

lpBuffer

Points to the buffer to receive the null-terminated string containing the user's logon name. If this buffer is not large enough to contain the entire user name, the function fails.

nSize

Pointer to a DWORD that, on input, specifies the maximum size, in characters, of the buffer specified by the lpBuffer parameter. If this buffer is not large enough to contain the entire user name, the function fails. If the function succeeds, it will place the number of characters copied to the buffer into the DWORD that nSize points to.



Return Values

If the function succeeds, the return value is nonzero, and the variable pointed to by nSize contains the number of characters copied to the buffer specified by lpBuffer, including the terminating null character.



versteht das einer?

--
Microschrott präsentiert
Windoof SE Natiol
jetzt sofort den Mega-Bundle bestellen
mit der stylischen 3Tasten Tastartur
(Strg, Alt, Entf)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
008
11.12.2006, 15:26 Uhr
FloSoft
Medialer Over-Flow
(Administrator)



Zitat von Multi:

Zitat:
The GetUserName function retrieves the user name of the current thread. This is the name of the user currently logged onto the system.

BOOL GetUserName(

LPTSTR lpBuffer, // address of name buffer
LPDWORD nSize // address of size of name buffer
);


Parameters

lpBuffer

Points to the buffer to receive the null-terminated string containing the user's logon name. If this buffer is not large enough to contain the entire user name, the function fails.

nSize

Pointer to a DWORD that, on input, specifies the maximum size, in characters, of the buffer specified by the lpBuffer parameter. If this buffer is not large enough to contain the entire user name, the function fails. If the function succeeds, it will place the number of characters copied to the buffer into the DWORD that nSize points to.

Return Values

If the function succeeds, the return value is nonzero, and the variable pointed to by nSize contains the number of characters copied to the buffer specified by lpBuffer, including the terminating null character.




versteht das einer?


Ja, Englisch sollte man schon können
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
009
11.12.2006, 15:37 Uhr
Multi



^^ witzig

habs versucht anzuwenden ging aber nit
--
Microschrott präsentiert
Windoof SE Natiol
jetzt sofort den Mega-Bundle bestellen
mit der stylischen 3Tasten Tastartur
(Strg, Alt, Entf)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 < [ 2 ]     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: