Chocolatey を使ってパッケージを管理する(アップデート編)

目次

現在のバージョンの確認

choco -v を実行

PS C:\Windows\system32> choco -v
1.1.0

アップデート

PowerShell を管理者として起動して choco upgrade chocolatey を実行

PS C:\Windows\system32> choco upgrade chocolatey
Chocolatey v1.1.0
Upgrading the following packages:
chocolatey
By upgrading, you accept licenses for the packages.

You have chocolatey v1.1.0 installed. Version 1.2.0 is available based on your source(s).
Progress: Downloading chocolatey 1.2.0... 100%

chocolatey v1.2.0 [Approved]
chocolatey package files upgrade completed. Performing other installation steps.
The package chocolatey wants to run 'chocolateyInstall.ps1'.
Note: If you don't run this script, the installation will fail.
Note: To confirm automatically next time, use '-y' or consider:
choco feature enable -n allowGlobalConfirmation
Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint): Y

Creating ChocolateyInstall as an environment variable (targeting 'Machine')
  Setting ChocolateyInstall to 'C:\ProgramData\chocolatey'
WARNING: It's very likely you will need to close and reopen your shell
  before you can use choco.
Restricting write permissions to Administrators
We are setting up the Chocolatey package repository.
The packages themselves go to 'C:\ProgramData\chocolatey\lib'
  (i.e. C:\ProgramData\chocolatey\lib\yourPackageName).
A shim file for the command line goes to 'C:\ProgramData\chocolatey\bin'
  and points to an executable in 'C:\ProgramData\chocolatey\lib\yourPackageName'.

Creating Chocolatey folders if they do not already exist.

WARNING: You can safely ignore errors related to missing log files when
  upgrading from a version of Chocolatey less than 0.9.9.
  'Batch file could not be found' is also safe to ignore.
  'The system cannot find the file specified' - also safe.
WARNING: Not setting tab completion: Profile file does not exist at 'D:\Users\********\Documents\WindowsPowerShell\Micr
osoft.PowerShell_profile.ps1'.
Chocolatey (choco.exe) is now ready.
You can call choco from anywhere, command line or powershell by typing choco.
Run choco /? for a list of functions.
You may need to shut down and restart powershell and/or consoles
 first prior to using choco.
Environment Vars (like PATH) have changed. Close/reopen your shell to
 see the changes (or in powershell/cmd.exe just type `refreshenv`).
 The upgrade of chocolatey was successful.
  Software install location not explicitly set, it could be in package or
  default install location of installer.

Chocolatey upgraded 1/1 packages.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

再度 choco -v を実行すると、無事アップデート出来ています。

PS C:\Windows\system32> choco -v
1.2.0

この記事が気に入ったら
いいね または フォローしてね!

よかったらシェアしてね!
目次