Thread: Stelth Execution

  1. #1
    Registered User
    Join Date
    Jul 2002
    Posts
    24

    Lightbulb Stelth Execution

    How can I execute a file in stealth mode so that it is not visible on the task bar ?

  2. #2
    ¡Amo fútbol!
    Join Date
    Dec 2001
    Posts
    2,138
    Why would you wanna do this???

  3. #3
    Seven years? civix's Avatar
    Join Date
    Jul 2002
    Posts
    605
    [sarcastic]
    fullscreen applications arent visible in the taskbar...until you minimize them..
    [/sarcastic]
    .

  4. #4
    Registered User
    Join Date
    Jul 2002
    Posts
    24

    Lightbulb Reason

    Well I wish to make a small reminder programme for me, where the programme will execute every time the computer switches on and will check for the date and if it matches the once in its records will remind me to do certain work, like taking backups or send birthday greetings etc.
    But I do not want the dos window to open up on the screen or be visible on the task bar every time I switch on my computer.
    Can anyone advise me how to proceed.

  5. #5
    Registered User
    Join Date
    Dec 2001
    Posts
    194
    A very simple windows program would work.

    You would NOT have to create a window, and then you could use message box's to display information.

    int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR CommandLine, int ShowCmd)
    {
    MessageBox(NULL,"Caption","Text", MB_OK);
    return 0;
    }

    there, that is a very simple win32 program

  6. #6
    Registered User
    Join Date
    Jul 2002
    Posts
    24

    Lightbulb Sorry

    Thanx RPIMatty
    but I an very new to C++ and do not know WinAPI, I can write small programmes that run in DOS window only
    So is there any other way ?

  7. #7
    Incorrect Thesis
    Guest
    i would be interested in making a program that when minimized goes to the tray and not the tool bar, that would be handy for server type application or pretty much any app you wanna run 24/7

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Execution Time - Rijandael encryption
    By gamer4life687 in forum C++ Programming
    Replies: 5
    Last Post: 09-20-2008, 09:25 PM
  2. Replies: 0
    Last Post: 10-06-2007, 01:25 PM
  3. What is the best way to record a process execution time?
    By hanash in forum Linux Programming
    Replies: 7
    Last Post: 03-15-2006, 07:17 AM
  4. Parallel execution
    By Panopticon in forum C++ Programming
    Replies: 2
    Last Post: 01-27-2003, 01:57 AM
  5. Initiating command prompt execution
    By bluecoder in forum Windows Programming
    Replies: 2
    Last Post: 07-26-2002, 07:00 PM