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 2010 : PLEINIèRE DERNIER JOURTECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOUR par ROMELARD Fabrice
Cette session est la dernière pleinière de ces 3 jours de TechDays Paris 2010. Généralement, cette troisième journée est plus axée sur l'avenir vu par Microsoft. Après un retour sur l'avenir vu par la Science Fiction ou par ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice UNE JOLIE-HORLOGE ET PAS QU'UN PEU !UNE JOLIE-HORLOGE ET PAS QU'UN PEU ! par neodante
Pour les possesseurs d'iPhone, ça y est Bijin Tokei - qui se traduit littéralement en Français par " Jolie Horloge " - est arrivé et GRATUITEMENT s'il vous plaît ! Après la version Tokyo, Hokkaido, night club, racing, Gal, "pour les mademoiselles'", . voi...
Cliquez pour lire la suite de l'article par neodante TECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICESTECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICES par ROMELARD Fabrice
Animé par: Gaetan Bouveret et Julien Chomarat Business Connectivity Services (BCS) est dans SharePoint 2010 la version 2 de Business Data Catalog (BDC dans SharePoint 2007). Il s'agit de la solution permettant de visualiser des données provenan...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice [DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE[DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE par orion
Comme de nombreux geek, je suis un grand amateur de série TV et je rate régulièrement des épisodes de mes séries préférés. Une solution s'offre à vous avec ce merveilleux site : Tv Gorge - www.tvgorge.com Moteur de recherche à l'appui, vous pouvez ...
Cliquez pour lire la suite de l'article par orion TECHDAYS PARIS 2010 : LA BI DANS SHAREPOINT 2010TECHDAYS PARIS 2010 : LA BI DANS SHAREPOINT 2010 par ROMELARD Fabrice
Animé par: Vincent Bellet et Baptiste Giraudier La BI dans SharePoint 2010, Les nouveaux services d'application dans SP2010 et SQL Server Reporting services 2008 R2. La BI dans SharePoint est généralisée pour tous afin de permettre à tous les coll...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Forum
RE : SAVEDIALOGRE : SAVEDIALOG par JulioDelphi
Cliquez pour lire la suite par JulioDelphi
Logiciels
DB-MAIN (9.1.0)DB-MAIN (9.1.0)DB-MAIN is a data-modeling and data-architecture tool. It is designed to help developers and anal... Cliquez pour télécharger DB-MAIN Xilisoft DPG Convertisseur (5.1.37.0120)XILISOFT DPG CONVERTISSEUR (5.1.37.0120)Xilisoft DPG Convertisseur offre aux fans de Nintendo DS une bonne solution leur permettant de dé... Cliquez pour télécharger Xilisoft DPG Convertisseur GraphicsGale (2.01.01)GRAPHICSGALE (2.01.01)GraphicsGale est un logiciel de PixelArt avec de nombreuse fonctionnalités permettant de réalisé ... Cliquez pour télécharger GraphicsGale Architecte 3D (Platinum 2010)ARCHITECTE 3D (PLATINUM 2010)Architecte 3D Platinium vous permet de concevoir facilement les plans votre future maison, de l'é... Cliquez pour télécharger Architecte 3D TeamViewer 5 (TeamViewer 5)TEAMVIEWER 5 (TEAMVIEWER 5)Dépanner un ami,expliquer une manipulation devient un jeu d'enfant.
Prise en main d'un autre ord... Cliquez pour télécharger TeamViewer 5
|