Files
Windows/README.md
2026-01-31 11:26:22 +01:00

69 lines
1.3 KiB
Markdown

# Windows
## Winget
### Requirements
Enable Winget in terminal as administrator :
```
winget configure --enable
```
### Uninstalling Windows applications via winget
Uninstall Windows applications just for the current user. Run the PowerShell script `Winget-Remove-BuiltInApps.ps1` located in the powershell folder :
```
powershell -ExecutionPolicy Bypass -File .\Winget-Remove-BuiltInApps.ps1
```
### Installing libre softwares
#### Interactive
![interactive screenshot](./img/interactive.png)
Launch terminal as administrator and run the following command :
```
powershell -ExecutionPolicy Bypass -File .\libres-softwares-install.ps1
```
#### Automated
**Starter pack** :
* Firefox ESR (FR)
* 7Zip
* VLC
Launch terminal as administrator and run the following command :
```
winget configure --file libre-soft-start-pack.yaml --accept-configuration-agreements
```
**Starter pack + LibreOffice** :
* Firefox ESR (FR)
* 7Zip
* VLC
* LibreOffice
Launch terminal as administrator and run the following command :
```
winget configure --file .\libre-soft-base-libreoffice.yaml --accept-configuration-agreements
```
**Starter pack + OnlyOffice** :
* Firefox ESR (FR)
* 7Zip
* VLC
* OnlyOffice
Launch terminal as administrator and run the following command :
```
winget configure --file .\libre-soft-base-onlyoffice.yaml --accept-configuration-agreements
```