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


반응형

'os > Window' 카테고리의 다른 글

PowerShell SSH  (0) 2017.02.02
Choco GUI Tool  (0) 2016.12.09
Windows Symblic Link 만들기  (0) 2016.02.25
window10 localhost IP6, IP4  (0) 2015.09.16
71387_updater.exe 밀웨어 Malware  (0) 2015.08.08