CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: installer

  1. #1
    Join Date
    Oct 2006
    Posts
    128

    installer

    HI All,
    I am trying to understand the concept of installer i.e i have a project which installs an application, i was trying to debug it and realised that it is not possible and Visualstudio uses a text file to install program. Can someone direct me to some link or tech knowledge base about how an installer works and why i can't debug it in the usual way? Couldn't find anything when i searched for it.
    Thanks

  2. #2
    Join Date
    Jul 2007
    Posts
    52

    Re: installer

    Maybe you cannot debug it because it is packed?

    An Exe-packer (like upx, execryptor or similar) is usually used to reduce exe's size and to prevent it from disassembling

    If you wanna continue debugging it you can try to unpack it (upx can be unpacked without problems) and continue your testing

  3. #3
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: installer

    Try to ask Google
    Best regards,
    Igor

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured