Exetools  

Go Back   Exetools > General > General Discussion

Notices

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 07-12-2004, 06:43
babar0ga
 
Posts: n/a
Quote:
Originally Posted by sTfN0X
So, if I understand you right the %1 is the name of the exe I right click on that gets passed as a parameter?
that's right...

about retreiveing that parameter... it's allready passed to your loader.
you just need to call olly with that same param.

in case you don't know how to read it... should be something like this

C like
Code:
int main(int argc, char *argv[])
{
  int i;

  for (i = 1; i < argc; i++) printf("%s ", argv[i]);
  printf("\n");

  return 0;
}
delphi
Code:
procedure TForm1.FormCreate(Sender: TObject);
Var
    I : Integer;
begin
    Memo1.Lines.Clear;
    Memo1.Lines.Add('Parameters Count : '+IntToStr(ParamCount));
    { ParamCount - Returns the number of parameters passed on
    the command line. }
    If ParamCount>0 Then
        For I:=1 To ParamCount Do
        { ParamStr - Returns a specified parameter from the command-line. }
        Memo1.Lines.Add('Parameter '+IntToStr(I)+' : '+ParamStr(I))
end;
vb
Code:
Sub Main()
Debug.Print Command$
End Sub
hope this helps
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Ollydbg v1 to v2 porting question sendersu General Discussion 0 09-02-2014 13:29
Another Ollydbg question DLL loading in Program hobferret General Discussion 9 06-19-2005 23:32
Quick OllyDbg Question lilmeanman General Discussion 8 06-06-2005 08:13
PELOCK Question again--.w.--Ollydbg boya General Discussion 0 06-10-2004 12:38
OllyDbg question butter General Discussion 2 05-07-2004 10:30


All times are GMT +8. The time now is 17:42.


Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX, chessgod101
( Since 1998 )