LoginSignup
4
3

More than 5 years have passed since last update.

chocolatey 0.9.9.8使ってみた

Last updated at Posted at 2014-09-03

参考

chocolateyのインストール

  • powershell、dotnet2.0、dotnet4.0が必要。
コマンドプロンプトにて実行
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\ProgramData\bin;

パッケージの検索

clist ssh

一括インストール

packages.config
<?xml version="1.0"?>
<packages>
    <package id="ChocolateyGUI" />
    <package id="Sudo" />
    <package id="ChocolateyPackageUpdater" />
</packages>
cinst -y packages.config
packages.config(xp対応)
+   <package id="MobaXTerm" />
+   <package id="git" />
+   <package id="putty-d2ddw" />
+   <package id="wizmouse" />
+   <package id="googlechrome" />
インストール済みパッケージ一覧
clist -lo
全パッケージ更新
cup all
バージョン指定
cinst -y パッケージ名 -version 2.2.0.1
アンインストール
cuninst パッケージ名
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3