Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kdpuvvadi/codecwinget
Update K-Lite Codec Pack winget manifest
https://github.com/kdpuvvadi/codecwinget
powershell winget winget-pkgs yaml
Last synced: 1 day ago
JSON representation
Update K-Lite Codec Pack winget manifest
- Host: GitHub
- URL: https://github.com/kdpuvvadi/codecwinget
- Owner: kdpuvvadi
- License: mit
- Created: 2022-06-28T06:14:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-09T18:13:25.000Z (about 2 years ago)
- Last Synced: 2023-03-01T15:41:51.600Z (over 1 year ago)
- Topics: powershell, winget, winget-pkgs, yaml
- Language: PowerShell
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Codec WinGet
## Requirements
### WingetCreate
Install [WinGetCreate](https://github.com/microsoft/winget-create) with `WinGet` package manager
```pwsh
WinGet install wingetcreate
```
Download the binary directly```pwsh
Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile ./wingetcreate.exe
```### Nevergreen
Install [Nevergreen](https://github.com/DanGough/Nevergreen) Powershell module
```pwsh
Install-Module -Name Nevergreen
```### Package Details with Nevergreen
Get Latest details of package
```pwsh
Get-NevergreenApp -Name KLiteCodecPack
```To get details of specific channel such as `Basic` in `K-Lite Codec Pack`
```pwsh
Get-NevergreenApp -Name KLiteCodecPack | Where-Object {$_.Channel -eq "Basic"}
```>Note: Powershell should be in elevated mode.
## Run
```pwsh
./app.ps1
```