CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Feb 2010
    Posts
    42

    How to start applications more than once (ie. defeat a mutex)?

    I remember there used to be a game I'd play online but you could only launch one instance of the game, but there was a program where you would type in the location of the .exe of the game and it would launch it as many times as desired, taking up more and more memory with however many you launched.

    What does this consist of, if I want to make my own multi-launcher?

    Edit: I still have the application, and it works for anything, not just the game exe. I just opened 5 Windows Live Messenger applications and logged into 5 different accounts at once. I suspect it opens things in their own memory block, but I have no knowledge of memory editting, so don't mind me.
    Last edited by Craisins; February 22nd, 2010 at 01:12 AM.

  2. #2
    Join Date
    Feb 2010
    Posts
    42

    Re: How to start applications more than once (ie. defeat a mutex)?

    Any clues guys?

  3. #3
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: How to start applications more than once (ie. defeat a mutex)?

    Questions like these are in violation of the AUP which you signed when you joined the site.

    •You will not use these Posting Features for the purposes of sharing or distributing viruses, licenses, registration information, software keys, "cracks," or other information designed to do harm to or allow unlawful access to any computer hardware, software, networks, or any other systems.

  4. #4
    Join Date
    Feb 2010
    Posts
    42

    Re: How to start applications more than once (ie. defeat a mutex)?

    How is this is unlawful?

    I can launch multiple instances of a program just by switching users and opening a new application per user, this just makes it all possible on one user.

    I have no intensions of doing anything illegal with this (I also cant imagine why opening 2 Photoshops at once is illegal) but I just want to learn the concepts behind it.
    Last edited by Craisins; February 24th, 2010 at 06:38 PM.

  5. #5
    Join Date
    Feb 2010
    Posts
    42

    Re: How to start applications more than once (ie. defeat a mutex)?

    Anyone?

  6. #6
    Join Date
    May 2006
    Location
    beyond the pillars of hercules
    Posts
    295

    Re: How to start applications more than once (ie. defeat a mutex)?

    1 way is to hook CreateMutex() and give a random mutex value on each extra instance of the programm u open

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