https://github.com/KUTlime/PowerShell-Choco-Module
> A PowerShell module for a simple Chocolatey installation for end users.
https://github.com/KUTlime/PowerShell-Choco-Module
Last synced: 6 months ago
JSON representation
> A PowerShell module for a simple Chocolatey installation for end users.
- Host: GitHub
- URL: https://github.com/KUTlime/PowerShell-Choco-Module
- Owner: KUTlime
- License: gpl-3.0
- Created: 2020-10-12T08:19:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-09T21:16:29.000Z (over 4 years ago)
- Last Synced: 2024-05-23T00:34:52.382Z (about 1 year ago)
- Language: PowerShell
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - KUTlime/PowerShell-Choco-Module - > A PowerShell module for a simple Chocolatey installation for end users. (PowerShell)
README
# Choco
> A PowerShell module for a simple Chocolatey installation for end users.
## Features
- Wraps the Chocolatey default installation
- Checks admin privileges
- Handle admin privileges request
- Handle TLS install requirements
- Handle environmental variable update## Use
You have to enable module installation by setting execution policy `ByPass`. The easiest way is to execute
```powershell
Start-Process -FilePath powershell -ArgumentList "-ExecutionPolicy ByPass"
```
and you can type following in this new PowerShell console window```powershell
Install-Module Choco; ich
```or for clarity
```powershell
Install-Module Choco; Install-Choco
```or with module cleanup
```powershell
Install-Module Choco; Install-Choco; Uninstall-Module Choco
```## FAQ
### Do I need admin privileges to install Choco?
Yes.
### Can I uninstall module after Chocolatey installation?
Yes. Chocolatey remains deployed in your system after you uninstall this module.