ពាក្យបញ្ជាដែលប្រើជាទូទៅនៅក្នុងកម្មវិធីគ្រប់គ្រងកញ្ចប់សូកូឡាវីនដូ
សូកូឡាគឺជាអ្នកគ្រប់គ្រងកញ្ចប់មួយសម្រាប់វីនដូ. សមស្របសម្រាប់ការតំឡើងកម្មវិធីងាយស្រួលនិងភាពអាស្រ័យ. It makes it much easier to manage software installs in Windows. There is no need to follow a software’s installation instructions as the installation process is always the same for any software in chocolatey. Chocolatey also allows multiple software installs with no user intervention required. Chocolatey also updates software to the latest version when they become available.
Install Chocolatey in Powershell by copy and pasting the following command
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
Get going by using the following commonly used commands
Search for a package with user’s string anywhere in the package name
clist {package name} ឧទាហរណ៍ clist gimp
List packages that starts with specified characters
clist {package name} --id starts-with ឧទាហរណ៍ clist gim --id starts-with
List packages that starts with specified characters and order by popularity
clist {package name} --id-starts-with --order-by-popularity ឧទាហរណ៍ clist gim --id-starts-with --order-by-popularity
ចំណាំ: The search command is an alias for the list command
Install package
cinst {package name} ឧទាហរណ៍ cinst gimp
Install particular package version
cinst {package name} --version {version #} ឧទាហរណ៍ cinst gimp --version 2.8.0
Uninstall package
cuninst {package name} ឧទាហរណ៍ cinst gimp
List all installed packages
clist -lo
Update all packages
cup all -y
