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 2257 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



      Sage

      Thanked: 647
      • Yes
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 7
    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 »

    Proud to be European

    Squashman



      Apprentice
    • Thanked: 44
      • 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



          Apprentice
        • Thanked: 44
          • 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



              Apprentice
            • Thanked: 44
              • 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



                  Sage

                  Thanked: 647
                  • Yes
                • Computer: Specs
                • Experience: Experienced
                • OS: Windows 7
                Re: [Batch] Hide program from taskbar ?
                « Reply #8 on: May 10, 2012, 10:34:39 AM »
                Hmmm.... asking how to run an exe silently...

                Proud to be European

                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


                  • Specialist
                  • Maud' Dib
                  • Thanked: 1231
                    • 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
                     
                  "
                  All generalizations are false, including this one.  "

                  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



                      Sage

                      Thanked: 647
                      • Yes
                    • Computer: Specs
                    • Experience: Experienced
                    • OS: Windows 7
                    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



                    Proud to be European

                    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 ..

                      Salmon Trout



                        Sage

                        Thanked: 647
                        • Yes
                      • Computer: Specs
                      • Experience: Experienced
                      • OS: Windows 7

                      Proud to be European

                      CaTaLinU

                        Topic Starter


                        Rookie

                        • Experience: Beginner
                        • OS: Unknown
                        Re: [Batch] Hide program from taskbar ?
                        « Reply #15 on: May 13, 2012, 07:36:42 AM »
                        exact code please :X?

                        thx :D

                        Salmon Trout



                          Sage

                          Thanked: 647
                          • Yes
                        • Computer: Specs
                        • Experience: Experienced
                        • OS: Windows 7
                        Re: [Batch] Hide program from taskbar ?
                        « Reply #16 on: May 13, 2012, 07:39:51 AM »
                        exact code please :X?

                        You sound like a clever guy, I bet you can work it out.

                        Proud to be European