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
[WF4] PASSAGE D'ARGUMENTS LITERAL, VISUALBASICVALUE OU LAMBDAVALUE?[WF4] PASSAGE D'ARGUMENTS LITERAL, VISUALBASICVALUE OU LAMBDAVALUE? par JeremyJeanson
Avec la sortie de la RC de Visual Studio 2010, Microsoft a mis un peu les points sur leS i en ce qui concernait le passage d'arguments. Mais nous somme un certain nombre à avoir pris ce changement comme un coup dur. Pour résumer la situation : à la sortie...
Cliquez pour lire la suite de l'article par JeremyJeanson [RIA SERVICES] INCLUDE ET DOMAINDATASOURCE[RIA SERVICES] INCLUDE ET DOMAINDATASOURCE par Audrey
Dans un de mes articles précédents , j'avais parlé des DomainDataSource avec RIA Services dans le cas d'une interface Maître - Détail. Dans le même principe, je vais parler d'une autre manière de mettre en forme ce cas d'interface avec RIA Services. Et po...
Cliquez pour lire la suite de l'article par Audrey ZUNE : VERSION ZUNE SOFTWARE V 4.2 ET LA SOCIALISATIONZUNE : VERSION ZUNE SOFTWARE V 4.2 ET LA SOCIALISATION par ROMELARD Fabrice
Une des nouveautés de la version V 3.0 était l'apparition de l'onglet Social qui ne fonctionnait que si le MarketPlace était activé sur son poste. Cela limitait donc son intérêt, car hors du cadre commercial USA-CANADA, peu de monde trouva...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice PRATIQUE DE SILVERLIGHT PAR ERIC AMBROSIPRATIQUE DE SILVERLIGHT PAR ERIC AMBROSI par MPOWARE
Je viens de finir la lecture du dernier livre d'
Eric Ambrosi
éditions PEARSON
Son livre donne une approche pratique de Silverlight qui sera aussi bien comprise par le développeur que par le designeur.
Tous les aspects du développement RIA sont abor...
Cliquez pour lire la suite de l'article par MPOWARE APPRENDRE à DéVELOPPER POUR LES MOBILES AVEC LA NOUVELLE GéNéRATION .NETAPPRENDRE à DéVELOPPER POUR LES MOBILES AVEC LA NOUVELLE GéNéRATION .NET par odewit
2 déclinaisons de Silverlight et 2 déclinaisons de Mono permettent dorénavant (ou permettront prochainement) de développer des applications .NET mobiles pour les principales plates-formes du marché :
Silverlight pour Symbian, basé sur Silverlight 2...
Cliquez pour lire la suite de l'article par odewit
Forum
RE : DELPHIRE : DELPHI par overtaker
Cliquez pour lire la suite par overtaker
Logiciels
Academy System (10.9.4.0)ACADEMY SYSTEM (10.9.4.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Xilisoft Convertisseur Vidéo Ultimate (5.1.39.0305)XILISOFT CONVERTISSEUR VIDéO ULTIMATE (5.1.39.0305)Xilisoft Convertisseur Vidéo Ultimate est un outil puissant de conversion vidéo, facile à utilise... Cliquez pour télécharger Xilisoft Convertisseur Vidéo Ultimate Xilisoft DVD Ripper Ultimate (5.0.64.0304)XILISOFT DVD RIPPER ULTIMATE (5.0.64.0304)Xilisoft DVD Ripper Ultimate est un logiciel excellent pour copier et convertir DVD vers presque ... Cliquez pour télécharger Xilisoft DVD Ripper Ultimate Rigs of Rods (63.3)RIGS OF RODS (63.3)c'est un jeu de multi-simulation camions,autobus voitures, avions, bateaux, hélicoptère avec défo... Cliquez pour télécharger Rigs of Rods
|