Accueil > > > UTILITAIRE POUR LANCER UN PROGRAMME DEPUIS UN AUTRE COMPTE (RUN AS)
UTILITAIRE POUR LANCER UN PROGRAMME DEPUIS UN AUTRE COMPTE (RUN AS)
Information sur la source
Description
J'avoue que ce n'est guère innovant mais si comme moi vous êtes un parano de la sécurité et que vous utilisez un compte à droits limités dans votre vie de tous les jours il peut être utile d'avoir ce petit utilitaire pour lancer un programme en tant qu'utilisateur d'un autre compte. Il est prévu pour fonctionner en ligne de commande, typiquement dans un batch, pour lancer des programmes qui nécessitent des privilèges administrateurs sans avoir à se fatiguer à ouvrir une session admin. Voici la grammaire d'usage (les arguments entre crochets sont optionnels): RunAs [---U Username] [---D Domain] [---P Password] [---W WorkingDirectory] Command [Params] Exemple, pour lancer une défragmentation depuis un compte restreint (cette solution demande explicitement le mot de passe puisqu'il n'est pas spécifié avec ---P): C:\Delphi\Sources\RunAs.exe ---U Administrateur "C:\Program Files\Defraggler\Defraggler.exe" Tous les arguments situés après le nom de la commande sont passés en arguments à la commande. Par exemple, pour lancer une invite de commande sur le disque D: RunAs ---U Administrateur ---P MotDePasse cmd /K d: Si on ne précise ni le username, ni le password ils seront demandés (le password sera masqué, puisque vraisemblablement c'est le but recherché dans ce cas-là). Pour les feignants j'ai mis l'exe compilé, il faudra bien sûr changer son extension.
Source
- program RunAs;
-
- {$APPTYPE CONSOLE}
-
- uses
- SysUtils,Windows,StrUtils;
-
- const
- LOGON_WITH_PROFILE=$00000001;
-
- function CreateProcessWithLogon(lpUsername :PWideChar;
- lpDomain :PWideChar;
- lpPassword :PWideChar;
- dwLogonFlags :DWORD;
- lpApplicationName :PWideChar;
- lpCommandLine :PWideChar;
- dwCreationFlags :DWORD;
- lpEnvironment :Pointer;
- lpCurrentDirectory:PWideChar;
- var lpStartupInfo :TStartupInfo;
- var lpProcessInfo :TProcessInformation):BOOL;stdcall;external 'advapi32.dll' name 'CreateProcessWithLogonW';
-
- function CreateEnvironmentBlock(var lpEnvironment:Pointer;hToken:THandle;bInherit:BOOL):BOOL;stdcall;external 'userenv.dll';
- function DestroyEnvironmentBlock(pEnvironment:Pointer):BOOL;stdcall;external 'userenv.dll';
-
- function TextOut(var t:TTextRec):Integer;
- (*
- Hack to fix the standard TextOut proc shipped with Delphi, that correctly handles non-standard character sets
- for console output (eg 'é' 'ç' etc...)
- *)
- var
- Dummy:Cardinal;
- begin
- CharToOem(t.Buffer,t.Buffer);
- if t.BufPos=0 then
- Result:=0
- else begin
- if WriteFile(t.Handle,t.BufPtr^,t.BufPos,Dummy,nil) then
- Result:=0
- else
- Result:=GetLastError;
- t.BufPos:=0;
- end;
- end;
-
- procedure FixupConsoleCharset;
- (*
- Activate console hack for non-standard characters
- *)
- begin
- Write('');
- TTextRec(Output).FlushFunc:=@TextOut;
- end;
-
- procedure Error(s:string);
- begin
- raise Exception.Create(s);
- end;
-
- procedure OSError(s:string);
- (*
- Raise the last system error with an additional prefix message
- *)
- begin
- raise Exception.Create(s+#13#10+SysErrorMessage(GetLastError));
- end;
-
- function FormatParam(s:string):string;
- (*
- Enclose into quotes (if not already) the string if it contains white space and return it, otherwise return the string itself.
- *)
- var
- a:Integer;
- t:Boolean;
- begin
- Result:=s;
- t:=False;
- for a:=Length(s) downto 1 do
- if s[a] in [' ',#32] then begin
- t:=True;
- Break;
- end;
- if t and not (s[1] in ['''','"']) then
- Result:='"'+s+'"';
- end;
-
- function RunProcessAs(Command:string;Parameters:array of string;Username,Password:string;Domain:string='';WorkingDirectory:string='';Wait:Boolean=False):Cardinal;
- (*
- Execute the Command with the given Parameters, Username, Domain, Password and Working Directory. Parameters containing white spaces are
- automatically embraced into quotes before being sent to avoid having them splitted by the system. If either Domain or Working Directory
- are empty the current one will be used instead.
-
- If Wait is specified the function will wait till the command is completely executed and will return the exit code of the process,
- otherwise zero.
-
- Suitable Delphi exceptions will be thrown in case of API failure.
- *)
- var
- a:Integer;
- n:Cardinal;
- h:THandle;
- p:Pointer;
- PI:TProcessInformation;
- SI:TStartupInfo;
- t:array[0..MAX_PATH] of WideChar;
- wUser,wDomain,wPassword,wCommandLine,wCurrentDirectory:WideString;
- begin
- ZeroMemory(@PI,SizeOf(PI));
- ZeroMemory(@SI,SizeOf(SI));
- SI.cb:=SizeOf(SI);
- if not LogonUser(PChar(Username),nil,PChar(Password),LOGON32_LOGON_INTERACTIVE,LOGON32_PROVIDER_DEFAULT,h) then
- OSError('Could not log user in');
- try
- if not CreateEnvironmentBlock(p,h,True) then
- OSError('Could not access user environment');
- try
- wUser:=Username;
- wPassword:=Password;
- wCommandLine:=Command;
- for a:=Low(Parameters) to High(Parameters) do
- wCommandLine:=wCommandLine+' '+FormatParam(Parameters[a]);
- if Domain='' then begin
- n:=SizeOf(t);
- if not GetComputerNameW(t,n) then
- OSError('Could not get computer name');
- wDomain:=t;
- end else
- wDomain:=Domain;
- if WorkingDirectory='' then
- wCurrentDirectory:=GetCurrentDir
- else
- wCurrentDirectory:=WorkingDirectory;
- if not CreateProcessWithLogon(PWideChar(wUser),PWideChar(wDomain),PWideChar(wPassword),LOGON_WITH_PROFILE,nil,PWideChar(wCommandLine),CREATE_UNICODE_ENVIRONMENT,p,PWideChar(wCurrentDirectory),SI,PI) then
- OSError('Could not create process');
- try
- if Wait then begin
- WaitForSingleObject(PI.hProcess,INFINITE);
- if not GetExitCodeProcess(PI.hProcess,Result) then
- OSError('Could not get process exit code');
- end else
- Result:=0;
- finally
- CloseHandle(PI.hProcess);
- CloseHandle(PI.hThread);
- end;
- finally
- DestroyEnvironmentBlock(p);
- end;
- finally
- CloseHandle(h);
- end;
- end;
-
- function FindStr(s:string;t:array of string):Integer;
- (*
- Return the (case-insensitive) index of s into the array t, otherwise -1
- *)
- var
- a:Integer;
- begin
- Result:=-1;
- for a:=Low(t) to High(T) do
- if AnsiUpperCase(t[a])=AnsiUpperCase(s) then begin
- Result:=a;
- Exit;
- end;
- end;
-
- function WaitChar:Char;
- (*
- Wait till a character is typed in the console, and return its value
- *)
- var
- h:THandle;
- n:Cardinal;
- r:TInputRecord;
- begin
- h:=GetStdHandle(STD_INPUT_HANDLE);
- repeat
- ReadConsoleInput(h,r,1,n);
- until (n=1) and (r.EventType=KEY_EVENT) and (r.Event.KeyEvent.bKeyDown);
- Result:=r.Event.KeyEvent.AsciiChar;
- end;
-
- function ReadlnMasked(var s:string):Boolean;
- (*
- Read a string from the console input with masked characters, till either ENTER or ESCAPE is given. Return True if that was ENTER.
- *)
- var
- c:Char;
- const
- EndChars:set of char=[#13,#27];
- begin
- s:='';
- repeat
- c:=WaitChar;
- if not (c in EndChars) then begin
- s:=s+c;
- Write('*');
- end;
- until c in EndChars;
- Result:=c=#13;
- WriteLn;
- end;
-
- procedure Main;
- (*
- Main program, parse and process arguments, print usage if no arguments, ask for username or password if not specified and launch the
- desired process
- *)
- var
- a,b:Integer;
- t:array of string;
- Username,Password,Domain,WorkingDir:string;
-
- function ExtractNext:string;
- (*
- Extract the next command-line argument, in respect of the previous flag
- *)
- begin
- Inc(b);
- if b>ParamCount then
- raise Exception.Create('Missing argument after '+ParamStr(b-1));
- Result:=ParamStr(b);
- end;
-
- procedure Parse;
- (*
- Parse the command-line flags
- *)
- var
- t:Boolean;
- begin
- t:=True;
- while t and (b<=ParamCount) do begin
- case FindStr(ParamStr(b),['---U','---P','---D','---W']) of
- 0:Username:=ExtractNext;
- 1:Password:=ExtractNext;
- 2:Domain:=ExtractNext;
- 3:WorkingDir:=ExtractNext;
- else
- t:=False;
- end;
- if t then
- Inc(b);
- end;
- if b>ParamCount then
- raise Exception.Create('Missing command name');
- end;
-
- begin
- if ParamCount=0 then begin
- WriteLn('Usage: ',ChangeFileExt(ExtractFileName(ParamStr(0)),''),' [---U Username] [---D Domain] [---P Password] [---W WorkingDirectory] Command [Params]');
- ExitCode:=0;
- Exit;
- end;
- b:=1;
- Username:='';
- Password:='';
- Domain:='';
- WorkingDir:='';
- Parse;
- if Username='' then begin
- Write('Username: ');
- ReadLn(Username);
- end;
- if Password='' then begin
- Write('Password for ',Username,': ');
- if not ReadLnMasked(Password) then
- Error('Aborted');
- end;
- SetLength(t,ParamCount-b);
- try
- for a:=b+1 to ParamCount do
- t[a-b-1]:=ParamStr(a);
- ExitCode:=RunProcessAs(ParamStr(b),t,Username,Password,Domain,WorkingDir);
- finally
- SetLength(t,0);
- end;
- end;
-
- begin
- ExitCode:=-1;
- try
- FixupConsoleCharset;
- Main;
- except
- on e:Exception do begin
- WriteLn('Error: ',e.Message);
- WriteLn('(Press any key to continue)');
- WaitChar;
- end;
- end;
- end.
program RunAs;
{$APPTYPE CONSOLE}
uses
SysUtils,Windows,StrUtils;
const
LOGON_WITH_PROFILE=$00000001;
function CreateProcessWithLogon(lpUsername :PWideChar;
lpDomain :PWideChar;
lpPassword :PWideChar;
dwLogonFlags :DWORD;
lpApplicationName :PWideChar;
lpCommandLine :PWideChar;
dwCreationFlags :DWORD;
lpEnvironment :Pointer;
lpCurrentDirectory:PWideChar;
var lpStartupInfo :TStartupInfo;
var lpProcessInfo :TProcessInformation):BOOL;stdcall;external 'advapi32.dll' name 'CreateProcessWithLogonW';
function CreateEnvironmentBlock(var lpEnvironment:Pointer;hToken:THandle;bInherit:BOOL):BOOL;stdcall;external 'userenv.dll';
function DestroyEnvironmentBlock(pEnvironment:Pointer):BOOL;stdcall;external 'userenv.dll';
function TextOut(var t:TTextRec):Integer;
(*
Hack to fix the standard TextOut proc shipped with Delphi, that correctly handles non-standard character sets
for console output (eg 'é' 'ç' etc...)
*)
var
Dummy:Cardinal;
begin
CharToOem(t.Buffer,t.Buffer);
if t.BufPos=0 then
Result:=0
else begin
if WriteFile(t.Handle,t.BufPtr^,t.BufPos,Dummy,nil) then
Result:=0
else
Result:=GetLastError;
t.BufPos:=0;
end;
end;
procedure FixupConsoleCharset;
(*
Activate console hack for non-standard characters
*)
begin
Write('');
TTextRec(Output).FlushFunc:=@TextOut;
end;
procedure Error(s:string);
begin
raise Exception.Create(s);
end;
procedure OSError(s:string);
(*
Raise the last system error with an additional prefix message
*)
begin
raise Exception.Create(s+#13#10+SysErrorMessage(GetLastError));
end;
function FormatParam(s:string):string;
(*
Enclose into quotes (if not already) the string if it contains white space and return it, otherwise return the string itself.
*)
var
a:Integer;
t:Boolean;
begin
Result:=s;
t:=False;
for a:=Length(s) downto 1 do
if s[a] in [' ',#32] then begin
t:=True;
Break;
end;
if t and not (s[1] in ['''','"']) then
Result:='"'+s+'"';
end;
function RunProcessAs(Command:string;Parameters:array of string;Username,Password:string;Domain:string='';WorkingDirectory:string='';Wait:Boolean=False):Cardinal;
(*
Execute the Command with the given Parameters, Username, Domain, Password and Working Directory. Parameters containing white spaces are
automatically embraced into quotes before being sent to avoid having them splitted by the system. If either Domain or Working Directory
are empty the current one will be used instead.
If Wait is specified the function will wait till the command is completely executed and will return the exit code of the process,
otherwise zero.
Suitable Delphi exceptions will be thrown in case of API failure.
*)
var
a:Integer;
n:Cardinal;
h:THandle;
p:Pointer;
PI:TProcessInformation;
SI:TStartupInfo;
t:array[0..MAX_PATH] of WideChar;
wUser,wDomain,wPassword,wCommandLine,wCurrentDirectory:WideString;
begin
ZeroMemory(@PI,SizeOf(PI));
ZeroMemory(@SI,SizeOf(SI));
SI.cb:=SizeOf(SI);
if not LogonUser(PChar(Username),nil,PChar(Password),LOGON32_LOGON_INTERACTIVE,LOGON32_PROVIDER_DEFAULT,h) then
OSError('Could not log user in');
try
if not CreateEnvironmentBlock(p,h,True) then
OSError('Could not access user environment');
try
wUser:=Username;
wPassword:=Password;
wCommandLine:=Command;
for a:=Low(Parameters) to High(Parameters) do
wCommandLine:=wCommandLine+' '+FormatParam(Parameters[a]);
if Domain='' then begin
n:=SizeOf(t);
if not GetComputerNameW(t,n) then
OSError('Could not get computer name');
wDomain:=t;
end else
wDomain:=Domain;
if WorkingDirectory='' then
wCurrentDirectory:=GetCurrentDir
else
wCurrentDirectory:=WorkingDirectory;
if not CreateProcessWithLogon(PWideChar(wUser),PWideChar(wDomain),PWideChar(wPassword),LOGON_WITH_PROFILE,nil,PWideChar(wCommandLine),CREATE_UNICODE_ENVIRONMENT,p,PWideChar(wCurrentDirectory),SI,PI) then
OSError('Could not create process');
try
if Wait then begin
WaitForSingleObject(PI.hProcess,INFINITE);
if not GetExitCodeProcess(PI.hProcess,Result) then
OSError('Could not get process exit code');
end else
Result:=0;
finally
CloseHandle(PI.hProcess);
CloseHandle(PI.hThread);
end;
finally
DestroyEnvironmentBlock(p);
end;
finally
CloseHandle(h);
end;
end;
function FindStr(s:string;t:array of string):Integer;
(*
Return the (case-insensitive) index of s into the array t, otherwise -1
*)
var
a:Integer;
begin
Result:=-1;
for a:=Low(t) to High(T) do
if AnsiUpperCase(t[a])=AnsiUpperCase(s) then begin
Result:=a;
Exit;
end;
end;
function WaitChar:Char;
(*
Wait till a character is typed in the console, and return its value
*)
var
h:THandle;
n:Cardinal;
r:TInputRecord;
begin
h:=GetStdHandle(STD_INPUT_HANDLE);
repeat
ReadConsoleInput(h,r,1,n);
until (n=1) and (r.EventType=KEY_EVENT) and (r.Event.KeyEvent.bKeyDown);
Result:=r.Event.KeyEvent.AsciiChar;
end;
function ReadlnMasked(var s:string):Boolean;
(*
Read a string from the console input with masked characters, till either ENTER or ESCAPE is given. Return True if that was ENTER.
*)
var
c:Char;
const
EndChars:set of char=[#13,#27];
begin
s:='';
repeat
c:=WaitChar;
if not (c in EndChars) then begin
s:=s+c;
Write('*');
end;
until c in EndChars;
Result:=c=#13;
WriteLn;
end;
procedure Main;
(*
Main program, parse and process arguments, print usage if no arguments, ask for username or password if not specified and launch the
desired process
*)
var
a,b:Integer;
t:array of string;
Username,Password,Domain,WorkingDir:string;
function ExtractNext:string;
(*
Extract the next command-line argument, in respect of the previous flag
*)
begin
Inc(b);
if b>ParamCount then
raise Exception.Create('Missing argument after '+ParamStr(b-1));
Result:=ParamStr(b);
end;
procedure Parse;
(*
Parse the command-line flags
*)
var
t:Boolean;
begin
t:=True;
while t and (b<=ParamCount) do begin
case FindStr(ParamStr(b),['---U','---P','---D','---W']) of
0:Username:=ExtractNext;
1:Password:=ExtractNext;
2:Domain:=ExtractNext;
3:WorkingDir:=ExtractNext;
else
t:=False;
end;
if t then
Inc(b);
end;
if b>ParamCount then
raise Exception.Create('Missing command name');
end;
begin
if ParamCount=0 then begin
WriteLn('Usage: ',ChangeFileExt(ExtractFileName(ParamStr(0)),''),' [---U Username] [---D Domain] [---P Password] [---W WorkingDirectory] Command [Params]');
ExitCode:=0;
Exit;
end;
b:=1;
Username:='';
Password:='';
Domain:='';
WorkingDir:='';
Parse;
if Username='' then begin
Write('Username: ');
ReadLn(Username);
end;
if Password='' then begin
Write('Password for ',Username,': ');
if not ReadLnMasked(Password) then
Error('Aborted');
end;
SetLength(t,ParamCount-b);
try
for a:=b+1 to ParamCount do
t[a-b-1]:=ParamStr(a);
ExitCode:=RunProcessAs(ParamStr(b),t,Username,Password,Domain,WorkingDir);
finally
SetLength(t,0);
end;
end;
begin
ExitCode:=-1;
try
FixupConsoleCharset;
Main;
except
on e:Exception do begin
WriteLn('Error: ',e.Message);
WriteLn('(Press any key to continue)');
WaitChar;
end;
end;
end.
Conclusion
Rien de compliqué au niveau de la programmation, niveau débutant.
Si ça intéresse quelqu'un il y a une fonction équivalente à Readln pour les strings, mais qui affiche des étoiles à la place des caractères tapés.
Historique
- 23 juillet 2008 19:01:54 :
- No comment
- 24 juillet 2008 11:30:10 :
- Rajout de l'extension '.dll' au nom de librairie des fonctions importées, pour fonctionner sous Win 2000.
- 24 juillet 2008 21:02:31 :
- Ajout d'une astuce amusante que je viens de trouver, pour que la console gère correctement les caractères accentués (ce que Delphi ne fait pas par défaut).
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
Administrateur BDE & Access [ par Vinch ]
Salut à tous,J'ai créer une BD sous Access2002 (XP) et je l'ai convertie au format 97, puis j'ai créer un alias avec un driver natif MSACCESS. Tout s'
A propos du Intraweb & Delphi 7 [ par cboulhrouz ]
Bonjour, J'ai un problème, je developpe un site en utilisant le composant Intraweb du Delphi 7 en utilisant une base de données MS Access, j'ai d
administrateur bde [ par yoghisan ]
Voulant m'initier aux bases de donnees, j'ai trop par hazard un site faisant une initiation.http://www.iglooduhack.com/delphi_bdd_conn_bde.phpEt je su
interaction entre la console de commande et une appli Delphi [ par emmanuelgo ]
salut à tous.je souhaite créer une application en delphi qui lance une commade dans la console de commande...jusque là tou va bien grac
administrateur BDE [ par koaiz ]
Salut les mecs Peut-on utiliser une application qui comporte des table de base de donnee sans avoire a installer l'administrateur BDE dans la machinep
Administrateur BDE [ par trezeled ]
Bonjour,Je dois installer une application utilisant des bases Paradox à des utilisateurs, pour ces bases j'utilise des alias défini dans l'administrat
réseau [ par zerouti ]
salut tous le monde, j'ai devlopper une appliaction de masterisation (elle mermet à l'administrateur de donnée les périphériques, ou bloquer, les appl
Session administrateur [ par PHIL63 ]
Bonsoir à tous et bonne année :)J'aurais aimé connaitre la méthode pour savoir si un utilisateur utilise une session administrateur ou bien si il util
Développement sur 2 comptes un administrateur l'autre utilisateur simple [ par yvessimon ]
Bonjour, J'ai pris l'habitude de développer sur le compte administrateur du PC. Je viens de créer un compte utilisateur pour d'autres développements.
Droits administrateur limités [ par AEC1 ]
Bonjours, j'ai installé une application base de données paradox7 sur une machine qui est reliée à un réseau Intranet d'entreprise. pas de problème pou
|
Derniers Blogs
TECHDAYS PARIS 2012 : COMMENT SHAREPOINT A SAUVé MES TECHDAYSTECHDAYS PARIS 2012 : COMMENT SHAREPOINT A SAUVé MES TECHDAYS par ROMELARD Fabrice
Speakers : Lionel Limozin et Alain Marty La session commence par une découverte de SharePoint à travers la mise en place d'un environnement SharePoint pour la gestion des Sessions animées par BeWise. Le besoin est très ba...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice PERSPECTIVE 3.0 POUR SILVERLIGHT 5.0PERSPECTIVE 3.0 POUR SILVERLIGHT 5.0 par odewit
Je viens de publier la version 3.0 de Perspective pour Silverlight, qui regroupe un portage sous Silverlight 5.0 des fonctionnalités de Perspective 2.0, le framework 3D de haut-niveau introduit récemment et de nouveaux exemples de code. En voici la li...
Cliquez pour lire la suite de l'article par odewit TECHDAYS PARIS 2012 : TOP 10 DES BEST PRACTICES POUR SQL SERVERTECHDAYS PARIS 2012 : TOP 10 DES BEST PRACTICES POUR SQL SERVER par ROMELARD Fabrice
Speaker : Nadia Ben El Kadi Configuration machine La session commence par la toute première question à se poser lors de la mise en place d'environnement SQL Server, la configuration des machines : Type de mac...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : KINECT + OFFICE 365 UN BON GESTE POUR VOTRE SITECHDAYS PARIS 2012 : KINECT + OFFICE 365 UN BON GESTE POUR VOTRE SI par ROMELARD Fabrice
Speakers : Fabrice Barbin, Samuel Blanchard, Julien Lo Presti Titre Prometteur et attractif invitant à voir comment lier le composant ludique Kinect dans le cadre d'une structure IT classique, notamment au travers de la plat...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : PLEINIèRE DU PREMIER JOURTECHDAYS PARIS 2012 : PLEINIèRE DU PREMIER JOUR par ROMELARD Fabrice
KeyNotes du premier jour pour les développeurs. La session est principalement axée sur une des principales directions prise par Microsoft à travers tous ses nouveaux produits : Cloud privé ou public (Solution Azure) ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Logiciels
Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning COLLECTOR PLUS (3.00B)COLLECTOR PLUS (3.00B)COLLECTOR PLUS version 3.00B est un logiciel utilisant une base de données alimentée par :
- L... Cliquez pour télécharger COLLECTOR PLUS PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO LettresFaciles 2011 (8.0.0.1)LETTRESFACILES 2011 (8.0.0.1)LettresFaciles est un logiciel facilitant la création et la rédaction de lettres types.
Son inte... Cliquez pour télécharger LettresFaciles 2011
|