os/Window

Windows Chocholatey 패키지 관리

C/H 2016. 11. 15. 08:30

Requirements

  • Windows 7+ / Windows Server 2003+
  • PowerShell v2+
  • .NET Framework 4+ (the installation will attempt to install .NET 4.0 if you do not have it installed)
  • That's it! All you need is choco.exe (that you get from the installation scripts) and you are good to go! No Visual Studio required.

관리자 권한으로 실행

# cmd.exe
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

# Powershell
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

# Powershell V3+
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex

# Window Restart And Config Setting
set path=%PATH%;c:\Chocolatey\bin; 

# Install node.js
choco install -y node.js

# GUI Tool
choco install chocolateygui


반응형