Chocolatey: Unterschied zwischen den Versionen
Stefan (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== Webseite == https://chocolatey.org == Install == Basic Chocolatey Install Chocolatey installs in seconds. You are just a few steps from running choco ri…“) |
Stefan (Diskussion | Beiträge) |
||
(5 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 3: | Zeile 3: | ||
== Install == | == Install == | ||
− | + | https://chocolatey.org/install | |
− | + | ||
− | + | 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. | |
− | + | ||
− | + | Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
− | + | ||
− | + | choco upgrade chocolatey -f | |
+ | |||
+ | == Install using WinGet == | ||
+ | You can install Chocolatey CLI version 2.0.0 and later through WinGet by running | ||
+ | |||
+ | winget install --id chocolatey.chocolatey --source winget | ||
+ | |||
+ | Once installed, use Chocolatey CLI as normal to upgrade. | ||
+ | |||
+ | === ChocolateyGUI === | ||
+ | https://chocolatey.org/packages/ChocolateyGUI | ||
− | + | choco install chocolateygui | |
+ | choco upgrade chocolateygui | ||
+ | choco uninstall chocolateygui |
Aktuelle Version vom 2. Dezember 2024, 15:06 Uhr
Inhaltsverzeichnis
Webseite
https://chocolatey.org
Install
https://chocolatey.org/install
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.
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco upgrade chocolatey -f
Install using WinGet
You can install Chocolatey CLI version 2.0.0 and later through WinGet by running
winget install --id chocolatey.chocolatey --source winget
Once installed, use Chocolatey CLI as normal to upgrade.
ChocolateyGUI
https://chocolatey.org/packages/ChocolateyGUI
choco install chocolateygui choco upgrade chocolateygui choco uninstall chocolateygui