How to change a process name in the task manager via batch











up vote
2
down vote

favorite












How can I start a program via batch and change it´s name in the Task Manger.
For example,



start "program" /HIGH "%~dp0program.bin"


In the Task Manager it shows program.bin, but can I change it to something else? For example, hideMe.bin










share|improve this question


























    up vote
    2
    down vote

    favorite












    How can I start a program via batch and change it´s name in the Task Manger.
    For example,



    start "program" /HIGH "%~dp0program.bin"


    In the Task Manager it shows program.bin, but can I change it to something else? For example, hideMe.bin










    share|improve this question
























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      How can I start a program via batch and change it´s name in the Task Manger.
      For example,



      start "program" /HIGH "%~dp0program.bin"


      In the Task Manager it shows program.bin, but can I change it to something else? For example, hideMe.bin










      share|improve this question













      How can I start a program via batch and change it´s name in the Task Manger.
      For example,



      start "program" /HIGH "%~dp0program.bin"


      In the Task Manager it shows program.bin, but can I change it to something else? For example, hideMe.bin







      batch cmd.exe






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Oct 25 '15 at 19:56









      James Notch

      1112




      1112






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          The process name in Task Manager is the name of the executable file ("image name"). So, to change that you will need to rename the file.






          share|improve this answer





















          • Yes, but I cannot rename the file name because it is set to execute with that name, so if I change it, it will not run.
            – James Notch
            Oct 25 '15 at 20:59












          • @JamesNotch you ever figure this out?
            – David Brierton
            Dec 7 '17 at 13:22










          • @DavidBrierton do you have that problem?
            – barlop
            Mar 17 at 2:24










          • @JamesNotch how about copying the exe file so it has the new name and executing that? Or so this idea. So you currently have your exe with the name you can't change.. say it's called blah.exe copy blah.exe blah2.exe then del blah.exe Then make your own blah.exe that calls blah2.exe And if you say oh but that will make blah.exe and blah2.exe in task manager, well if you don't want that you can have your blah.exe start blah2.exe in such a way that it starts it as its own independent thread.. And so blah.exe can terminate as soon as it spawns blah2.exe
            – barlop
            Mar 17 at 2:24












          • You should know one programming language that can compile EXE files and just find out how to do it in that. By do it in that I mean just executing an executable.
            – barlop
            Mar 17 at 2:28













          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f991689%2fhow-to-change-a-process-name-in-the-task-manager-via-batch%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          The process name in Task Manager is the name of the executable file ("image name"). So, to change that you will need to rename the file.






          share|improve this answer





















          • Yes, but I cannot rename the file name because it is set to execute with that name, so if I change it, it will not run.
            – James Notch
            Oct 25 '15 at 20:59












          • @JamesNotch you ever figure this out?
            – David Brierton
            Dec 7 '17 at 13:22










          • @DavidBrierton do you have that problem?
            – barlop
            Mar 17 at 2:24










          • @JamesNotch how about copying the exe file so it has the new name and executing that? Or so this idea. So you currently have your exe with the name you can't change.. say it's called blah.exe copy blah.exe blah2.exe then del blah.exe Then make your own blah.exe that calls blah2.exe And if you say oh but that will make blah.exe and blah2.exe in task manager, well if you don't want that you can have your blah.exe start blah2.exe in such a way that it starts it as its own independent thread.. And so blah.exe can terminate as soon as it spawns blah2.exe
            – barlop
            Mar 17 at 2:24












          • You should know one programming language that can compile EXE files and just find out how to do it in that. By do it in that I mean just executing an executable.
            – barlop
            Mar 17 at 2:28

















          up vote
          0
          down vote













          The process name in Task Manager is the name of the executable file ("image name"). So, to change that you will need to rename the file.






          share|improve this answer





















          • Yes, but I cannot rename the file name because it is set to execute with that name, so if I change it, it will not run.
            – James Notch
            Oct 25 '15 at 20:59












          • @JamesNotch you ever figure this out?
            – David Brierton
            Dec 7 '17 at 13:22










          • @DavidBrierton do you have that problem?
            – barlop
            Mar 17 at 2:24










          • @JamesNotch how about copying the exe file so it has the new name and executing that? Or so this idea. So you currently have your exe with the name you can't change.. say it's called blah.exe copy blah.exe blah2.exe then del blah.exe Then make your own blah.exe that calls blah2.exe And if you say oh but that will make blah.exe and blah2.exe in task manager, well if you don't want that you can have your blah.exe start blah2.exe in such a way that it starts it as its own independent thread.. And so blah.exe can terminate as soon as it spawns blah2.exe
            – barlop
            Mar 17 at 2:24












          • You should know one programming language that can compile EXE files and just find out how to do it in that. By do it in that I mean just executing an executable.
            – barlop
            Mar 17 at 2:28















          up vote
          0
          down vote










          up vote
          0
          down vote









          The process name in Task Manager is the name of the executable file ("image name"). So, to change that you will need to rename the file.






          share|improve this answer












          The process name in Task Manager is the name of the executable file ("image name"). So, to change that you will need to rename the file.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 25 '15 at 20:49









          kreemoweet

          3,5661214




          3,5661214












          • Yes, but I cannot rename the file name because it is set to execute with that name, so if I change it, it will not run.
            – James Notch
            Oct 25 '15 at 20:59












          • @JamesNotch you ever figure this out?
            – David Brierton
            Dec 7 '17 at 13:22










          • @DavidBrierton do you have that problem?
            – barlop
            Mar 17 at 2:24










          • @JamesNotch how about copying the exe file so it has the new name and executing that? Or so this idea. So you currently have your exe with the name you can't change.. say it's called blah.exe copy blah.exe blah2.exe then del blah.exe Then make your own blah.exe that calls blah2.exe And if you say oh but that will make blah.exe and blah2.exe in task manager, well if you don't want that you can have your blah.exe start blah2.exe in such a way that it starts it as its own independent thread.. And so blah.exe can terminate as soon as it spawns blah2.exe
            – barlop
            Mar 17 at 2:24












          • You should know one programming language that can compile EXE files and just find out how to do it in that. By do it in that I mean just executing an executable.
            – barlop
            Mar 17 at 2:28




















          • Yes, but I cannot rename the file name because it is set to execute with that name, so if I change it, it will not run.
            – James Notch
            Oct 25 '15 at 20:59












          • @JamesNotch you ever figure this out?
            – David Brierton
            Dec 7 '17 at 13:22










          • @DavidBrierton do you have that problem?
            – barlop
            Mar 17 at 2:24










          • @JamesNotch how about copying the exe file so it has the new name and executing that? Or so this idea. So you currently have your exe with the name you can't change.. say it's called blah.exe copy blah.exe blah2.exe then del blah.exe Then make your own blah.exe that calls blah2.exe And if you say oh but that will make blah.exe and blah2.exe in task manager, well if you don't want that you can have your blah.exe start blah2.exe in such a way that it starts it as its own independent thread.. And so blah.exe can terminate as soon as it spawns blah2.exe
            – barlop
            Mar 17 at 2:24












          • You should know one programming language that can compile EXE files and just find out how to do it in that. By do it in that I mean just executing an executable.
            – barlop
            Mar 17 at 2:28


















          Yes, but I cannot rename the file name because it is set to execute with that name, so if I change it, it will not run.
          – James Notch
          Oct 25 '15 at 20:59






          Yes, but I cannot rename the file name because it is set to execute with that name, so if I change it, it will not run.
          – James Notch
          Oct 25 '15 at 20:59














          @JamesNotch you ever figure this out?
          – David Brierton
          Dec 7 '17 at 13:22




          @JamesNotch you ever figure this out?
          – David Brierton
          Dec 7 '17 at 13:22












          @DavidBrierton do you have that problem?
          – barlop
          Mar 17 at 2:24




          @DavidBrierton do you have that problem?
          – barlop
          Mar 17 at 2:24












          @JamesNotch how about copying the exe file so it has the new name and executing that? Or so this idea. So you currently have your exe with the name you can't change.. say it's called blah.exe copy blah.exe blah2.exe then del blah.exe Then make your own blah.exe that calls blah2.exe And if you say oh but that will make blah.exe and blah2.exe in task manager, well if you don't want that you can have your blah.exe start blah2.exe in such a way that it starts it as its own independent thread.. And so blah.exe can terminate as soon as it spawns blah2.exe
          – barlop
          Mar 17 at 2:24






          @JamesNotch how about copying the exe file so it has the new name and executing that? Or so this idea. So you currently have your exe with the name you can't change.. say it's called blah.exe copy blah.exe blah2.exe then del blah.exe Then make your own blah.exe that calls blah2.exe And if you say oh but that will make blah.exe and blah2.exe in task manager, well if you don't want that you can have your blah.exe start blah2.exe in such a way that it starts it as its own independent thread.. And so blah.exe can terminate as soon as it spawns blah2.exe
          – barlop
          Mar 17 at 2:24














          You should know one programming language that can compile EXE files and just find out how to do it in that. By do it in that I mean just executing an executable.
          – barlop
          Mar 17 at 2:28






          You should know one programming language that can compile EXE files and just find out how to do it in that. By do it in that I mean just executing an executable.
          – barlop
          Mar 17 at 2:28




















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f991689%2fhow-to-change-a-process-name-in-the-task-manager-via-batch%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

          Mangá

           ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕