Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: [Batch] Hide program from taskbar ?  (Read 16594 times)

0 Members and 1 Guest are viewing this topic.

CaTaLinU

    Topic Starter


    Rookie

    • Experience: Beginner
    • OS: Unknown
    [Batch] Hide program from taskbar ?
    « on: May 09, 2012, 12:40:22 PM »
    i have this ..

    Code: [Select]
    start /min /low hlds.exe -console -game cstrike %IPARG% +sys_ticrate 150 +fps_max 200 -heapsize 15000 -port %port_add% -noipx +exec server%sv_add%.cfg

    What code i need to make that the hlds.exe to be hidden in taskbar but in process list to be shown ?

    Salmon Trout

    • Guest
    Re: [Batch] Hide program from taskbar ?
    « Reply #1 on: May 09, 2012, 01:12:37 PM »
    You got some really good answers on MSFN just 2 days ago, didn't you like them? Hstart looks quite useful.





    « Last Edit: May 09, 2012, 01:26:50 PM by Salmon Trout »

    Squashman



      Specialist
    • Thanked: 134
    • Experience: Experienced
    • OS: Other
    Re: [Batch] Hide program from taskbar ?
    « Reply #2 on: May 09, 2012, 03:50:02 PM »
    I thought there was a quick and dirty way to do it with Vbscript from what I have seen in the past on the forums.
    But here is another option.
     http://www.joeware.net/freetools/tools/quiet/index.htm

    CaTaLinU

      Topic Starter


      Rookie

      • Experience: Beginner
      • OS: Unknown
      Re: [Batch] Hide program from taskbar ?
      « Reply #3 on: May 10, 2012, 05:31:55 AM »
      I have tried what they have given to me
      but it didn't work with that vbs .....


      @ How can i use "Quiet"
      can you make me an example for

      start /min /low hlds.exe -console -game cstrike %IPARG% +sys_ticrate 150 +fps_max 200 -heapsize 15000 -port %port_add% -noipx +exec server%sv_add%.cfg

      please?

      Squashman



        Specialist
      • Thanked: 134
      • Experience: Experienced
      • OS: Other
      Re: [Batch] Hide program from taskbar ?
      « Reply #4 on: May 10, 2012, 06:07:08 AM »
      Looks like Hstart would be the correct program to use because Quiet does not have an option for Priority.

      CaTaLinU

        Topic Starter


        Rookie

        • Experience: Beginner
        • OS: Unknown
        Re: [Batch] Hide program from taskbar ?
        « Reply #5 on: May 10, 2012, 06:11:50 AM »
        i don't know how to use hstart ...

        Squashman



          Specialist
        • Thanked: 134
        • Experience: Experienced
        • OS: Other
        Re: [Batch] Hide program from taskbar ?
        « Reply #6 on: May 10, 2012, 06:47:30 AM »
        i don't know how to use hstart ...
        Wow! Must be hard to follow these instructions.
        http://www.ntwind.com/software/hstart.html

        CaTaLinU

          Topic Starter


          Rookie

          • Experience: Beginner
          • OS: Unknown
          Re: [Batch] Hide program from taskbar ?
          « Reply #7 on: May 10, 2012, 06:58:28 AM »
          and will works only if i have hstart installed ?

          If i convert .bat to .exe and i give it to somenone, he must install hstart too ?

          LE: i have tested HStart
          it only let me to make another shortcut , then to launch it to hide that program ....

          god ... i have maked it
          thant i have added in .bat file "start x.lnk"
          but it still show the program in taskbar ..
          « Last Edit: May 10, 2012, 07:41:00 AM by CaTaLinU »

          Salmon Trout

          • Guest
          Re: [Batch] Hide program from taskbar ?
          « Reply #8 on: May 10, 2012, 10:34:39 AM »
          Hmmm.... asking how to run an exe silently...

          CaTaLinU

            Topic Starter


            Rookie

            • Experience: Beginner
            • OS: Unknown
            Re: [Batch] Hide program from taskbar ?
            « Reply #9 on: May 10, 2012, 12:25:51 PM »
            i have finaly made it
            it hiddens all opening consoles
            but now how can i set it to be visible

            with
            cmdow Console /vis
            sets visible only 1 console ....

            patio

            • Moderator


            • Genius
            • Maud' Dib
            • Thanked: 1769
              • Yes
            • Experience: Beginner
            • OS: Windows 7
            Re: [Batch] Hide program from taskbar ?
            « Reply #10 on: May 10, 2012, 06:06:00 PM »
            Hmmm.... asking how to run an exe silently...


            Yepper
            " Anyone who goes to a psychiatrist should have his head examined. "

            CaTaLinU

              Topic Starter


              Rookie

              • Experience: Beginner
              • OS: Unknown
              Re: [Batch] Hide program from taskbar ?
              « Reply #11 on: May 13, 2012, 06:02:40 AM »
              Next vbs code is for starting a process hidden

              Code: [Select]
              CreateObject("Wscript.Shell").Run("hlds.exe -console -game cstrike %IPARG% +sys_ticrate 150 -heapsize 15000 -port %port_add% -noipx +exec server%sv_add%.cfg"), 0,False
              but what is the code for hide the process hlds.exe if he is already opened ?

              Salmon Trout

              • Guest
              Re: [Batch] Hide program from taskbar ?
              « Reply #12 on: May 13, 2012, 06:15:40 AM »
              You already have cmdow, so use cmdow to

              1. get the hex handle to the hlds.exe window and
              2. hide the window with the /HID switch



              CaTaLinU

                Topic Starter


                Rookie

                • Experience: Beginner
                • OS: Unknown
                Re: [Batch] Hide program from taskbar ?
                « Reply #13 on: May 13, 2012, 07:19:33 AM »
                i have given this program to 3 friend
                on 1 of them didn't work to hide
                and now i want to make with vbs ..