0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ubuntuのようにWindowsでも管理パッケージを使う方法

Last updated at Posted at 2020-01-02

chocolateyとは
Windowsで使えるパッケージマネージャ
簡単にいろいろなツールをインストールや
ソフト更新できるのでおすすめします。
https://chocolatey.org/

インストールURL
(管理者権限でcmd)
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

例 choco install ChocolateyGUI -y
(ChocolateyのGUI版です)
コマンドで自動インストールすることが出来ます。

choco install
パッケージインストール

choco list
パッケージの一覧表示

choco list [packageName]
パッケージの検索

choco update [packageName]
インストール済みのpackegeをアップデート

choco update all
インストール済みのpackegeを全てアップデート

chocolatey uninstall [packageName]
アンインストール

後はWindowsのopenSSH(Windows版)入れてあげれば
別PCからubuntuのように扱えるようになります。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?