Chocolatey: Difference between revisions

From Omnia
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 31: Line 31:
  # or
  # or
  cinst [PACKAGE]
  cinst [PACKAGE]
== List Intalled ==
choco list


== Remove Package ==
== Remove Package ==
Line 75: Line 79:


Ref: https://chocolatey.org/packages/python2
Ref: https://chocolatey.org/packages/python2
== List Local Installed Packages ==
choco list --localonly


== Clear Cache ==
== Clear Cache ==
Line 105: Line 105:


All:
All:
  choco install -y putty kitty notepadplusplus cygwin 7zip openhashtab filezilla irfanview irfanviewplugins winmerge
  choco install -y putty kitty notepadplusplus cygwin 7zip openhashtab filezilla irfanview irfanviewplugins winmerge rsync
 
=== putty ===
choco install -y putty
=== kitty ===
choco install -y kitty
=== notepadplusplus ===
choco install -y notepadplusplus
=== cygwin ===
choco install -y cygwin
=== 7zip ===
choco install -y 7zip
=== openhashtab ===
choco install -y openhashtab
=== filezilla ===
choco install -y filezilla
=== Irfanview ===
choco install -y irfanview irfanviewplugins
=== winmerge ===
choco install -y winmerge
=== rsync ===
choco install -y rsync
 
 
== More ==
 
=== greenshot ===
choco install greenshot
=== firefox ===
choco install firefox
=== googlechrome ===
choco install googlechrome
=== vlc ===
choco install -y vlc
=== adobereader ===
choco install adobereader
=== wsl ===
choco install -y wsl
choco install wsl-ubuntu-1804
=== postman ===
choco install -y postman
=== vscode ===
choco install -y vscode
=== slack ===
choco install -y slack
 
=== git ===
choco install git
=== gimp ===
choco install gimp
=== ccleaner ===
choco install ccleaner
=== winscp ===
choco install winscp


== Keywords ==
== Keywords ==

Revision as of 22:13, 21 April 2024

Install Chocolatey

Install with PowerShell...

Note: With PowerShell, you must ensure Get-ExecutionPolicy is not Restricted. We suggest using Bypass to bypass the policy to get things installed or AllSigned for quite a bit more security.

Run:

Get-ExecutionPolicy.

If it returns Restricted, then run:

Set-ExecutionPolicy AllSigned
# or
Set-ExecutionPolicy Bypass -Scope Process

Then run:

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

ref: https://chocolatey.org/install

---

@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin

Ref: http://www.hanselman.com/blog/IsTheWindowsUserReadyForAptget.aspx

Install Package

choco install [PACKAGE]
# or
cinst [PACKAGE]

List Intalled

choco list

Remove Package

choco uninstall [PACKAGE]

Upgrade Package

chocolatey upgrade [PACKAGE]
# OR (warning shim is being removed)
cup [PACKAGE]

Upgrade All Packages

choco upgrade all
choco upgrade all -y
# OR (warning shim is being removed)
cup all

ref: [1]

Package List Online

https://community.chocolatey.org/packages

Install Custom Package From Source Path

choco install [PACKAGE] --source //smb.oeey.com/chocolatey/packages

32bit Python 2.7

Install:

choco install -y python2-x86_32
choco install -y python2-x86_32 pip

Ref: https://chocolatey.org/packages/python2-x86_32

64bit Python 2.7

Install:

choco install -y python2

Ref: https://chocolatey.org/packages/python2

Clear Cache

%temp%\Chocolatey
%temp%\

Logs

C:\ProgramData\chocolatey\logs

Favorites

choco install -y putty
choco install -y kitty
choco install -y notepadplusplus
choco install -y cygwin
choco install -y 7zip
choco install -y openhashtab
choco install -y filezilla
choco install -y irfanview irfanviewplugins
choco install -y winmerge

All:

choco install -y putty kitty notepadplusplus cygwin 7zip openhashtab filezilla irfanview irfanviewplugins winmerge rsync

putty

choco install -y putty

kitty

choco install -y kitty

notepadplusplus

choco install -y notepadplusplus

cygwin

choco install -y cygwin

7zip

choco install -y 7zip

openhashtab

choco install -y openhashtab

filezilla

choco install -y filezilla

Irfanview

choco install -y irfanview irfanviewplugins

winmerge

choco install -y winmerge

rsync

choco install -y rsync


More

greenshot

choco install greenshot

firefox

choco install firefox

googlechrome

choco install googlechrome

vlc

choco install -y vlc

adobereader

choco install adobereader

wsl

choco install -y wsl 
choco install wsl-ubuntu-1804

postman

choco install -y postman

vscode

choco install -y vscode

slack

choco install -y slack

git

choco install git

gimp

choco install gimp

ccleaner

choco install ccleaner

winscp

choco install winscp

Keywords