Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ALK222/WIS
Script using winget for easy windows setup
https://github.com/ALK222/WIS
powershell powershell-script powershell-scripts windows-10 winget
Last synced: 8 days ago
JSON representation
Script using winget for easy windows setup
- Host: GitHub
- URL: https://github.com/ALK222/WIS
- Owner: ALK222
- License: gpl-3.0
- Created: 2020-08-02T14:23:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-26T19:35:18.000Z (almost 3 years ago)
- Last Synced: 2024-05-28T02:22:40.598Z (7 months ago)
- Topics: powershell, powershell-script, powershell-scripts, windows-10, winget
- Language: PowerShell
- Homepage:
- Size: 24.4 KB
- Stars: 18
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ALK222/WIS - Script using winget for easy windows setup (PowerShell)
README
# WIS (Windows Install Script)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
Script using winget for easy windows setup
## Add new programs to existing categories
To add a new program you have to add a new entry to the array inside its JSON file.
Said object must follow this model
```json
{
"mode": "ID or NAME",
"identifier": "Name or ID of the program",
"source": "winget or msstore",
"scope": "user or machine"
}
```Depending on whether it comes from winget or the Microsoft Store, you should put "winget" or "msstore" on the source field.
Some programs as Netflix can only be installed for the current user, others like Steam can only be installed machine-wide.
## How to create new categories
To create a new category you only have to add a new JSON file to [./json](./json). This files will be an array of programs, so you have to use an array syntax inside the file. Open the file with a square bracket, open and close a new program with curly brackets, and use a coma to separate programs:
```json
[
{
ONE Program
},
{
OTHER PROGRAM
}
]
```