How do you avoid over-populating the PATH Environment Variable in Windows?

前端 未结 12 1049
慢半拍i
慢半拍i 2020-11-30 16:26

I would like to know what are the approaches that you use to manage the executables in your system. For example I have almost everything accessible through the command line,

12条回答
  •  误落风尘
    2020-11-30 17:13

    Creating a folder c:\bin adding to your path and hardlinking like you said could shorten the string. Maybe add a variable pf to system vars with value c:\Program Files then replace c:\Program Files with %pf% in path.

    Edit:

    Create a virtual drive. subst p: "c:\program files"

提交回复
热议问题