Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maheshrijal/windows-app-installer
A simple PowerShell script to install apps on windows via Winget CLI.
https://github.com/maheshrijal/windows-app-installer
Last synced: about 1 month ago
JSON representation
A simple PowerShell script to install apps on windows via Winget CLI.
- Host: GitHub
- URL: https://github.com/maheshrijal/windows-app-installer
- Owner: maheshrijal
- License: mit
- Created: 2021-07-18T16:07:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T03:00:59.000Z (9 months ago)
- Last Synced: 2024-12-23T19:49:00.356Z (about 1 month ago)
- Language: PowerShell
- Homepage:
- Size: 18.6 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Powershell script to install apps on windows via [winget](https://docs.microsoft.com/en-us/windows/package-manager/winget/) cli
### How to run?
1. Open your powershell as administrator and run `Set-ExecutionPolicy Unrestricted`
2. Create your applist with the list of apps you want to install. Browse a list of winget packages at [winstall.app](https://winstall.app/) & [winget.run](https://winget.run/)
3. Download the script (optional)
4. Run the script providing path to your applist### Run with (Local) App List Path
```
.\install.ps1 -applist 'C:\Users\Mahesh\Downloads\applist'
```### Run with (Remote) App List Path
```
.\install.ps1 -applist 'https://raw.githubusercontent.com/maheshrijal/windows-app-installer/main/applist'
```## Run with (Default) App List picked from [applist](https://raw.githubusercontent.com/maheshrijal/windows-app-installer/main/applist) ⚠
```
.\install-apps.ps1
```## Run without downloading the script from [applist](https://raw.githubusercontent.com/maheshrijal/windows-app-installer/main/applist) ⚠
```
iwr -useb https://maheshrijal.com/wininstall | iex
```