Chocolatey 패키지의 시스템 경로에 프로그램을 추가하는 방법

안녕하세요 ! 저는 Xavier Jouvenot이고 이 작은 게시물에서 Chocolatey 패키지의 시스템 경로에 프로그램을 추가하는 방법을 살펴보겠습니다.

셀프프로모션 : 다른 글은 마이website에서 보실 수 있습니다 😉

문제가 있는



초콜릿 패키지를 만들 때 초콜릿 패키지 바이너리 폴더와 완전히 다른 위치에 프로그램을 설치하거나 excluding the executables you want to install from getting shims . 이 경우 설치된 프로그램은 시스템의 PATH 변수에 포함된 하나의 경로에 존재하지 않기 때문에 명령줄을 통해 직접 액세스할 수 없습니다.

해결책



이 문제를 해결하려면 다음 두 줄 중 하나를 포함하기만 하면 됩니다.

Install-ChocolateyPath -PathToInstall "C:\actual\path\to\the\executable" -PathType User
# or, if the executable is getting shims are installed in the same place of the install script
Install-ChocolateyPath -PathToInstall $PSScriptRoot -PathType User


아주 쉬운 해결책이 아닌가요? 프로그램이 설치되는 위치만 알면 모든 것이 잘 작동합니다 😉


이 글을 읽어주신 모든 분들께 감사드리며 다음 글까지 좋은 하루 보내세요 😉

흥미로운 링크


  • PSScriptRoot documentation
  • Install-ChocolateyPath documentation
  • Excluding an executable from getting shims
  • 10xlearner website
  • 좋은 웹페이지 즐겨찾기