Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5bf0fd1ce2 |
@@ -1,6 +1,2 @@
|
|||||||
# Chris rules EVERYTHING (including paths listed below)
|
# Chris rules EVERYTHING (including paths listed below)
|
||||||
* @ChrisTitusTech
|
* @ChrisTitusTech
|
||||||
|
|
||||||
# Seanh1917 (ANGRYxScotsmans) is the docs guy
|
|
||||||
docs/ @ChrisTitusTech @seanh1995
|
|
||||||
tools/devdocs-generator.* @ChrisTitusTech @seanh1995
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## Our Pledge
|
## Our Pledge
|
||||||
|
|
||||||
We, as members, contributors, and leaders, pledge to make participation in our
|
We as members, contributors, and leaders pledge to make participation in our
|
||||||
community a harassment-free experience for everyone, regardless of age, body
|
community a harassment-free experience for everyone, regardless of age, body
|
||||||
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
||||||
identity and expression, level of experience, education, socio-economic status,
|
identity and expression, level of experience, education, socio-economic status,
|
||||||
|
|||||||
@@ -5,13 +5,13 @@
|
|||||||
* Test the latest changes to WinUtil by running the pre-release and reporting issues you are encountering to help us continually improve WinUtil!
|
* Test the latest changes to WinUtil by running the pre-release and reporting issues you are encountering to help us continually improve WinUtil!
|
||||||
|
|
||||||
#### **Run the latest pre-release**
|
#### **Run the latest pre-release**
|
||||||
|
|
||||||
```ps1
|
```ps1
|
||||||
irm https://christitus.com/windev | iex
|
irm https://christitus.com/windev | iex
|
||||||
```
|
```
|
||||||
|
|
||||||
> [!CAUTION]
|
!!! bug "Keep in mind"
|
||||||
> **Keep in mind:** This is a pre-release and should be treated as such. It exists for developers to test the utility and report or fix bugs before they get added to the stable release. Don't use it in production!
|
|
||||||
|
This is a pre-release and should be treated as such. It exists for developers to test the utility and report or fix bugs before they get added to the stable release. Don't use it in production!
|
||||||
|
|
||||||
## Issues
|
## Issues
|
||||||
|
|
||||||
@@ -23,17 +23,19 @@ irm https://christitus.com/windev | iex
|
|||||||
|
|
||||||
* If you're doing code changes, then you can submit a PR to the `main` branch.
|
* If you're doing code changes, then you can submit a PR to the `main` branch.
|
||||||
|
|
||||||
> [!IMPORTANT]
|
!!! warning "Important"
|
||||||
> Do not use a code formatter, make massive amounts of line changes, or make multiple feature changes. EACH FEATURE CHANGE SHOULD BE ITS OWN PULL REQUEST!
|
|
||||||
>
|
Do not use a code formatter, make massive amounts of line changes, or make multiple feature changes. EACH FEATURE CHANGE SHOULD BE IT'S OWN PULL REQUEST!
|
||||||
> Do not open a pull request that adds support for other languages to WinUtil for now, until we decide how we want to move forward with language support.
|
|
||||||
|
Do not open a pull request that adds support for other languages to WinUtil for now, until we decide how we want to move forward with language support.
|
||||||
|
|
||||||
* When creating pull requests, it is essential to thoroughly document all changes made. This includes, but is not limited to, documenting any additions made to the `tweaks` section and corresponding `undo tweak`, so users are able to remove the newly added tweaks if necessary, and comprehensive documentation is required for all code changes. Document your changes and briefly explain why you made your changes in your Pull Request Description. Failure to adhere to this format may result in the denial of the pull request. Additionally, any code lacking sufficient documentation may also be denied.
|
* When creating pull requests, it is essential to thoroughly document all changes made. This includes, but is not limited to, documenting any additions made to the `tweaks` section and corresponding `undo tweak`, so users are able to remove the newly added tweaks if necessary, and comprehensive documentation is required for all code changes. Document your changes and briefly explain why you made your changes in your Pull Request Description. Failure to adhere to this format may result in the denial of the pull request. Additionally, any code lacking sufficient documentation may also be denied.
|
||||||
|
|
||||||
* By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
* By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
||||||
|
|
||||||
> [!NOTE]
|
!!! note
|
||||||
> When creating a function, please include "WPF" or "WinUtil" in the file name so it can be loaded into the runspace.
|
|
||||||
|
When creating a function, please include "WPF" or "WinUtil" in the file name so it can be loaded into the runspace.
|
||||||
|
|
||||||
## Walk through
|
## Walk through
|
||||||
|
|
||||||
@@ -48,31 +50,34 @@ irm https://christitus.com/windev | iex
|
|||||||
``` mermaid
|
``` mermaid
|
||||||
%%{init: {"flowchart": {"curve": "cardinal"}} }%%
|
%%{init: {"flowchart": {"curve": "cardinal"}} }%%
|
||||||
graph TD
|
graph TD
|
||||||
A[Fork Project] --> B[Clone Repository];
|
A[Fork Project] --> B[Clone Repository];
|
||||||
B --> C[Create New Branch];
|
B --> C[Create New Branch];
|
||||||
C --> D[Make Changes];
|
C --> D[Make Changes];
|
||||||
D --> G[Test Changes];
|
D --> G[Test Changes];
|
||||||
G --> H{Tests Passed?};
|
G --> H{Tests Passed?};
|
||||||
H -->|Yes| E[Commit Changes];
|
H -->|Yes| E[Commit Changes];
|
||||||
H -->|No| J[Fix Issues];
|
H -->|No| J[Fix Issues];
|
||||||
J --> G;
|
J --> G;
|
||||||
E --> F[Push Branch];
|
E --> F[Push Branch];
|
||||||
F --> K[Create Pull Request];
|
F --> K[Create Pull Request];
|
||||||
K --> L[Fill out PR template];
|
K --> L[Fill out PR template];
|
||||||
classDef default stroke:#333,stroke-width:4px,font-size:12pt;
|
classDef default stroke:#333,stroke-width:4px,font-size:12pt;
|
||||||
```
|
```
|
||||||
|
!!! info
|
||||||
|
|
||||||
> [!NOTE]
|
This is a diagram to guide you through the process. It may vary depending on the type of change you're making.
|
||||||
> This is a diagram to guide you through the process. It may vary depending on the type of change you're making.
|
|
||||||
|
|
||||||
### Fork the Repo
|
### Fork the Repo
|
||||||
* Fork the WinUtil Repository [here](https://github.com/ChrisTitusTech/winutil) to create a copy that will be available in your repository list.
|
* Fork the WinUtil Repository [here](https://github.com/ChrisTitusTech/winutil) to create a copy that will be available in your repository list.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
### Clone the Fork
|
### Clone the Fork
|
||||||
> [!TIP]
|
!!! tip
|
||||||
> While you can make your changes directly through the Web, we recommend cloning the repo to your device using the application GitHub Desktop (available in WinUtil) to test your fork easily.
|
|
||||||
|
While you can make your changes directly through the Web, we recommend cloning the repo to your device using the application GitHub Desktop (available in WinUtil) to test your fork easily.
|
||||||
|
|
||||||
* Install GitHub Desktop if it is not already installed.
|
* Install GitHub Desktop if it is not already installed.
|
||||||
* Log in using the same GitHub account you used to fork WinUtil.
|
* Log in using the same GitHub account you used to fork WinUtil.
|
||||||
@@ -91,26 +96,22 @@ graph TD
|
|||||||
* Run the following command to compile and run WinUtil:
|
* Run the following command to compile and run WinUtil:
|
||||||
* `.\Compile.ps1 -run`
|
* `.\Compile.ps1 -run`
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
Open PowerShell as Administrator.
|
|
||||||
|
|
||||||
* After seeing that your changes work properly, feel free to commit the changes to the repository and make a PR. For help on that, follow the documentation below.
|
* After seeing that your changes work properly, feel free to commit the changes to the repository and make a PR. For help on that, follow the documentation below.
|
||||||
|
|
||||||
|
|
||||||
### Committing the changes
|
### Committing the changes
|
||||||
* Before committing your changes, please discard changes made to the `winutil.ps1` file, like the following:
|
* Before committing your changes, please discard changes made to the `winutil.ps1` file, like the following:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
* Now, commit your changes once you are happy with the result.
|
* Now, commit your changes once you are happy with the result.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
* Push the changes to upload them to your fork on GitHub.
|
* Push the changes to upload them to your fork on github.com.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Making a PR
|
### Making a PR
|
||||||
* To make a PR on your repo under a new branch linking to the main branch, a button will show and say Preview and Create pull request. Click that button and fill in all the information that is provided on the template. Once all the information is filled in correctly, check your PR to make sure there is no WinUtil.ps1 file attached to the PR. Once everything is good, make the PR and wait for Chris (the maintainer) to accept or deny your PR. Once it is accepted by Chris, you will be able to see your changes in the "/windev" build.
|
* To make a PR on your repo under a new branch linking to the main branch, a button will show and say Preview and Create pull request. Click that button and fill in all the information that is provided on the template. Once all the information is filled in correctly, check your PR to make sure there is no WinUtil.ps1 file attached to the PR. Once everything is good, make the PR and wait for Chris (the maintainer) to accept or deny your PR. Once it is accepted by Chris, you will be able to see your changes in the "/windev" build.
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
title: "[App Suggestion] "
|
|
||||||
body:
|
|
||||||
- type: input
|
|
||||||
attributes:
|
|
||||||
label: "Application Link"
|
|
||||||
description: "Provide a link where this application can downloaded officially"
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: "Rules Checklist"
|
|
||||||
description: "You should agree with next rules"
|
|
||||||
options:
|
|
||||||
- label: "This application is popular enough, so is not considered as niche"
|
|
||||||
required: true
|
|
||||||
- label: "This application is not considered bloatware"
|
|
||||||
required: true
|
|
||||||
- label: "This application is free to access"
|
|
||||||
required: true
|
|
||||||
- label: "This application should be included on majority of fresh installed systems"
|
|
||||||
required: true
|
|
||||||
- label: "This application is present on WinGet (check winstall.app or do 'winget search your-app' in terminal)"
|
|
||||||
required: true
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: "Check for denied applications"
|
|
||||||
options:
|
|
||||||
- label: "Yes, I checked PRs, issues and discussions for existing suggestions and their result"
|
|
||||||
required: true
|
|
||||||
|
|
||||||
@@ -18,18 +18,10 @@ body:
|
|||||||
- label: Yes, I did
|
- label: Yes, I did
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: input
|
|
||||||
id: winutil_version
|
|
||||||
attributes:
|
|
||||||
label: "Version of WinUtil"
|
|
||||||
description: "Provide a version that you are using when issue submitted (it can be found in right corner of app)"
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
id: affected_part
|
id: affected_part
|
||||||
attributes:
|
attributes:
|
||||||
label: What part of WinUtil are you having issues with?
|
label: What part of Winutil are you having issues with?
|
||||||
options:
|
options:
|
||||||
- Program Install Tab
|
- Program Install Tab
|
||||||
- Tweaks Tab
|
- Tweaks Tab
|
||||||
|
|||||||
@@ -2,7 +2,4 @@ blank_issues_enabled: false
|
|||||||
contact_links:
|
contact_links:
|
||||||
- name: 💻 Community Discord
|
- name: 💻 Community Discord
|
||||||
url: https://discord.gg/RUbZUZyByQ
|
url: https://discord.gg/RUbZUZyByQ
|
||||||
about: Join our Community Discord server to chat with other users in the WinUtil community.
|
about: Join our Community Discord server to chat with other users in the Winutil community.
|
||||||
- name: Suggest an application
|
|
||||||
url: https://github.com/ChrisTitusTech/winutil/discussions/new?category=app-suggestion
|
|
||||||
about: If you want to suggest an application to be added, create a discussion with given template
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ body:
|
|||||||
|
|
||||||
## ⚠️ **IMPORTANT**
|
## ⚠️ **IMPORTANT**
|
||||||
- 🛠️ **Supported environments only:** We only support Windows 11.
|
- 🛠️ **Supported environments only:** We only support Windows 11.
|
||||||
- 💡 For general questions, use the [Discussions section](https://github.com/ChrisTitusTech/winutil/discussions) or join our Community-driven [Discord Server](https://discord.gg/RUbZUZyByQ).
|
- 💡 For general questions, use the [Discussions section](https://github.com/Christitustech/winutil/discussions) or join our Community-driven [Discord Server](https://discord.gg/RUbZUZyByQ).
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: proposed_solution
|
id: proposed_solution
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
- [ ] New feature
|
- [ ] New feature
|
||||||
- [ ] Bug fix
|
- [ ] Bug fix
|
||||||
- [ ] Documentation update
|
- [ ] Documentation update
|
||||||
- [ ] Refactor
|
|
||||||
- [ ] UI/UX improvement
|
- [ ] UI/UX improvement
|
||||||
|
|
||||||
<!-- This automatically adds labels to your PR based on the selections above. -->
|
<!-- This automatically adds labels to your PR based on the selections above. -->
|
||||||
|
|||||||
@@ -1,105 +0,0 @@
|
|||||||
# Chris Titus Tech's Windows Utility
|
|
||||||
|
|
||||||
[](https://github.com/ChrisTitusTech/winutil/releases/latest)
|
|
||||||

|
|
||||||
[](https://discord.gg/RUbZUZyByQ)
|
|
||||||
[](https://winutil.christitus.com/)
|
|
||||||
|
|
||||||
Questa utility è una raccolta di attività Windows che eseguo personalmente su ogni sistema che utilizzo. È progettata per snellire le *installazioni*, rimuovere i componenti superflui tramite *ottimizzazioni*, risolvere problemi tramite la *configurazione*, e riparare *aggiornamenti* di Windows. Sono estremamente selettivo riguardo ai contributi per mantenere questo progetto pulito ed efficiente.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
## 💡 Come usarlo
|
|
||||||
|
|
||||||
Winutil deve essere eseguito con privilegi di amministratore, poiché apporta modifiche all'intero sistema. Per farlo, avvia PowerShell come amministratore. Ecco alcuni modi per procedere:
|
|
||||||
|
|
||||||
1. **Metodo del menu di Start:**
|
|
||||||
- Fai clic con il tasto destro sul menu Start.
|
|
||||||
- Scegli "Windows PowerShell (esegui come Amministratore)" (per Windows 10) o "Terminale (esegui come Amministratore)" (per Windows 11).
|
|
||||||
|
|
||||||
2. **Metodo tramite ricerca:**
|
|
||||||
- Premi il tasto Windows.
|
|
||||||
- Digita "PowerShell" o "Terminal" (per Windows 11).
|
|
||||||
- Premi `Ctrl + Shift + Invio` oppure fai clic con il tasto destro e seleziona "Esegui come amministratore" per avviarlo con privilegi elevati.
|
|
||||||
|
|
||||||
### Comando di avvio
|
|
||||||
|
|
||||||
#### Branch stabile (Consigliato)
|
|
||||||
|
|
||||||
```ps1
|
|
||||||
irm "https://christitus.com/win" | iex
|
|
||||||
```
|
|
||||||
#### Branch Sviluppatore
|
|
||||||
|
|
||||||
```ps1
|
|
||||||
irm "https://christitus.com/windev" | iex
|
|
||||||
```
|
|
||||||
|
|
||||||
### Automazione
|
|
||||||
|
|
||||||
Winutil supporta anche preset predefiniti che applicano automaticamente configurazioni comuni:
|
|
||||||
|
|
||||||
- `Standard`
|
|
||||||
- `Minimal`
|
|
||||||
- `Advanced`
|
|
||||||
|
|
||||||
Esempio:
|
|
||||||
|
|
||||||
```powershell
|
|
||||||
& ([ScriptBlock]::Create((irm "https://christitus.com/win"))) -Preset Standard
|
|
||||||
```
|
|
||||||
|
|
||||||
Per vedere esattamente cosa fa ogni preset, consulta:
|
|
||||||
https://github.com/ChrisTitusTech/winutil/blob/main/config/preset.json
|
|
||||||
|
|
||||||
In caso di problemi, consulta i [Problemi noti](https://winutil.christitus.com/knownissues/) o [Apri una segnalazione](https://github.com/ChrisTitusTech/winutil/issues)
|
|
||||||
|
|
||||||
## 🎓 Documentazione
|
|
||||||
|
|
||||||
### [Documentazione ufficiale di WinUtil](https://winutil.christitus.com/)
|
|
||||||
|
|
||||||
### [Tutorial su YouTube](https://www.youtube.com/watch?v=6UQZ5oQg8XA)
|
|
||||||
|
|
||||||
### [Articolo su ChrisTitus.com](https://christitus.com/windows-tool/)
|
|
||||||
|
|
||||||
## 🛠️ Build & Sviluppo
|
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
> Winutil è uno script piuttosto esteso, per questo è suddiviso in più file che vengono combinati in un unico file `.ps1` tramite un compilatore personalizzato. Questo rende la manutenzione del progetto molto più semplice.
|
|
||||||
|
|
||||||
Ottieni una copia del codice sorgente. Puoi farlo tramite l'interfaccia di GitHub (**Code** > **Download ZIP**), oppure clonando (scaricando) la repo tramite git.
|
|
||||||
|
|
||||||
Se git è installato, esegui i seguenti comandi in una finestra PowerShell per clonare e accedere alla directory del progetto:
|
|
||||||
```ps1
|
|
||||||
git clone --depth 1 "https://github.com/ChrisTitusTech/winutil.git"
|
|
||||||
cd winutil
|
|
||||||
```
|
|
||||||
|
|
||||||
Per compilare il progetto, esegui lo script di compilazione in una finestra PowerShell (i permessi di amministratore NON sono richiesti):
|
|
||||||
```ps1
|
|
||||||
.\Compile.ps1
|
|
||||||
```
|
|
||||||
|
|
||||||
Troverai un nuovo file chiamato `winutil.ps1`, creato dallo script `Compile.ps1`. Ora puoi eseguirlo come amministratore e apparirà una nuova finestra. Goditi la tua versione compilata di WinUtil :)
|
|
||||||
|
|
||||||
> [!TIP]
|
|
||||||
> Per ulteriori informazioni sull'utilizzo di WinUtil e su come contribuire allo sviluppo, ti invitiamo a leggere le [Linee guida per i contributi](https://winutil.christitus.com/contributing/). Se non sai da dove iniziare o hai domande, puoi chiedere sul nostro [Server Discord della community](https://discord.gg/RUbZUZyByQ); i membri attivi del progetto risponderanno appena possibile.
|
|
||||||
|
|
||||||
## 💖 Supporto
|
|
||||||
- Per sostenere il progetto moralmente e mentalmente, non dimenticare di lasciare una ⭐️!
|
|
||||||
- Wrapper EXE a 10$ su https://www.cttstore.com/windows-toolbox
|
|
||||||
|
|
||||||
## 💖 Sponsor
|
|
||||||
|
|
||||||
Questi sono gli sponsor che aiutano a mantenere vivo il progetto con contributi mensili.
|
|
||||||
|
|
||||||
<!-- sponsors --><a href="https://github.com/dwelfusius"><img src="https://github.com/dwelfusius.png" width="60px" alt="Avatar utente: " /></a><a href="https://github.com/mews-se"><img src="https://github.com/mews-se.png" width="60px" alt="Avatar utente: Martin Stockzell" /></a><a href="https://github.com/jdiegmueller"><img src="https://github.com/jdiegmueller.png" width="60px" alt="Avatar utente: Jason A. Diegmueller" /></a><a href="https://github.com/robertsandrock"><img src="https://github.com/robertsandrock.png" width="60px" alt="Avatar utente: RMS" /></a><a href="https://github.com/paulsheets"><img src="https://github.com/paulsheets.png" width="60px" alt="Avatar utente: Paul" /></a><a href="https://github.com/djones369"><img src="https://github.com/djones369.png" width="60px" alt="Avatar utente: Dave J (WhamGeek)" /></a><a href="https://github.com/anthonymendez"><img src="https://github.com/anthonymendez.png" width="60px" alt="Avatar utente: Anthony Mendez" /></a><a href="https://github.com/FatBastard0"><img src="https://github.com/FatBastard0.png" width="60px" alt="Avatar utente: " /></a><a href="https://github.com/DursleyGuy"><img src="https://github.com/DursleyGuy.png" width="60px" alt="Avatar utente: DursleyGuy" /></a><a href="https://github.com/DwayneTheRockLobster1"><img src="https://github.com/DwayneTheRockLobster1.png" width="60px" alt="Avatar utente: " /></a><a href="https://github.com/KieraKujisawa"><img src="https://github.com/KieraKujisawa.png" width="60px" alt="Avatar utente: Kiera Meredith" /></a><a href="https://github.com/andrewpayne68"><img src="https://github.com/andrewpayne68.png" width="60px" alt="Avatar utente: Andrew P" /></a><!-- sponsors -->
|
|
||||||
|
|
||||||
## 🏅 Grazie a tutti i collaboratori
|
|
||||||
Un ringraziamento speciale per aver dedicato il vostro tempo ad aiutare Winutil a crescere. Grazie mille! Continuate così 🍻.
|
|
||||||
|
|
||||||
[](https://github.com/ChrisTitusTech/winutil/graphs/contributors)
|
|
||||||
|
|
||||||
## 📊 Statistiche GitHub
|
|
||||||
|
|
||||||

|
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
# Security Policy
|
# Security Policy
|
||||||
|
|
||||||
If you find a security issue, please post it in the Issues tab. If you think it should be private, you can email me at contact@christitus.com.
|
If you find a security issue please make post it in the issues tab. If you think it should be private you can email me at contact@christitus.com.
|
||||||
|
|
||||||
For immediate response check out our Discord server:
|
For immediate response check out our discord server @ [](https://discord.gg/RUbZUZyByQ)
|
||||||
|
|
||||||
[](https://discord.gg/RUbZUZyByQ)
|
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
tag-prefix: ''
|
tag-prefix: ''
|
||||||
categories:
|
categories:
|
||||||
- title: 'Features'
|
- title: '🚀 Features'
|
||||||
labels:
|
labels:
|
||||||
- 'feature'
|
- 'feature'
|
||||||
- 'enhancement'
|
- 'enhancement'
|
||||||
- 'new feature'
|
- 'new feature'
|
||||||
- title: 'Bug Fixes'
|
- title: '🐛 Bug Fixes'
|
||||||
labels:
|
labels:
|
||||||
- 'hotfix'
|
- 'hotfix'
|
||||||
- 'bugfix'
|
- 'bugfix'
|
||||||
- 'bug'
|
- 'bug'
|
||||||
- title: 'Documentation'
|
- title: '📚 Documentation'
|
||||||
label: 'documentation'
|
label: 'documentation'
|
||||||
- title: 'UI/UX Improvements'
|
- title: '🎨 UI/UX Improvements'
|
||||||
label: 'ui update'
|
label: 'ui update'
|
||||||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
||||||
template: |
|
template: |
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Auto-merge Automated Update PRs
|
name: Auto-merge Docs PRs
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
@@ -8,14 +8,14 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
auto-merge:
|
auto-merge:
|
||||||
if: (github.event.pull_request.head.ref == 'docs-update' || github.event.pull_request.head.ref == 'sponsors-update') && (github.event.pull_request.user.login == 'ChrisTitusTech' || github.event.pull_request.user.login == 'github-actions[bot]')
|
if: github.event.pull_request.head.ref == 'docs-update' && (github.event.pull_request.user.login == 'ChrisTitusTech' || github.event.pull_request.user.login == 'github-actions[bot]')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Auto-approve PR
|
- name: Auto-approve PR
|
||||||
if: github.event.pull_request.user.login == 'github-actions[bot]'
|
if: github.event.pull_request.user.login == 'github-actions[bot]'
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Check if PR was merged
|
- name: Check if PR was merged
|
||||||
if: github.event.pull_request.merged == true
|
if: github.event.pull_request.merged == true
|
||||||
@@ -18,11 +18,10 @@ jobs:
|
|||||||
- name: Extract Discussion Number & Close If any Were Found
|
- name: Extract Discussion Number & Close If any Were Found
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
PR_BODY: ${{ github.event.pull_request.body }}
|
|
||||||
if: github.event.pull_request.merged == true
|
if: github.event.pull_request.merged == true
|
||||||
id: extract-discussion
|
id: extract-discussion
|
||||||
run: |
|
run: |
|
||||||
pr_body="$PR_BODY"
|
pr_body="${{ github.event.pull_request.body }}"
|
||||||
discussion_ids=$(echo "$pr_body" | grep -oP '(?i)(resolve|fix|close)[s|d]? #\K[0-9]+')
|
discussion_ids=$(echo "$pr_body" | grep -oP '(?i)(resolve|fix|close)[s|d]? #\K[0-9]+')
|
||||||
|
|
||||||
if [ -z "$discussion_ids" ]; then
|
if [ -z "$discussion_ids" ]; then
|
||||||
|
|||||||
@@ -17,11 +17,11 @@ jobs:
|
|||||||
uses: actions/stale@v10
|
uses: actions/stale@v10
|
||||||
with:
|
with:
|
||||||
# A list of labels to reference when looking through issues,
|
# A list of labels to reference when looking through issues,
|
||||||
# and only when one (or even more) of these labels is found.
|
# and only when one (or even more) of these labels are found..
|
||||||
# then skip this issue, and never try to stale and/or close it.
|
# then skip this issue, and never try to stale and/or close it.
|
||||||
exempt-issue-labels: "Keep Issue Open"
|
exempt-issue-labels: "Keep Issue Open"
|
||||||
# Split it into two weeks, after one week, the issue will be marked as stale,
|
# Split it into two weeks, after one week the issue will be marked as stale,
|
||||||
# after another week have passed without any update, the issue will then be closed.
|
# after another week have pasted without any update.. the issue will then be closed.
|
||||||
days-before-issue-stale: 90
|
days-before-issue-stale: 90
|
||||||
days-before-issue-close: 365
|
days-before-issue-close: 365
|
||||||
# NEVER mark PRs as Stale or Close + this workflow should never have write permissions on PRs, EVER!
|
# NEVER mark PRs as Stale or Close + this workflow should never have write permissions on PRs, EVER!
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ jobs:
|
|||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Sources
|
- name: Checkout Sources
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Compile and Syntaxcheck winutil.ps1
|
- name: Compile and Syntaxcheck winutil.ps1
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Deploy Astro site to Pages
|
name: Deploy Hugo site to Pages
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -6,34 +6,106 @@ on:
|
|||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- "docs/**"
|
- "docs/**"
|
||||||
|
- "config/tweaks.json"
|
||||||
|
- "config/feature.json"
|
||||||
|
- "functions/**"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pages: write
|
pages: write
|
||||||
id-token: write
|
id-token: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: "pages"
|
group: "pages"
|
||||||
cancel-in-progress: false
|
cancel-in-progress: false
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
if: github.repository == 'ChrisTitusTech/winutil'
|
if: github.repository == 'ChrisTitusTech/winutil'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
|
HUGO_VERSION: 0.156.0
|
||||||
|
HUGO_ENVIRONMENT: production
|
||||||
TZ: America/Chicago
|
TZ: America/Chicago
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install Hugo CLI
|
||||||
|
run: |
|
||||||
|
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
|
||||||
|
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
|
submodules: recursive
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
- name: Setup Pages
|
||||||
|
id: pages
|
||||||
|
uses: actions/configure-pages@v6
|
||||||
|
|
||||||
- name: Install, build, and upload your site
|
- name: Generate Dev Docs from JSON
|
||||||
uses: withastro/action@v6
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
Set-Location tools
|
||||||
|
./devdocs-generator.ps1
|
||||||
|
|
||||||
|
- name: Create Pull Request
|
||||||
|
id: cpr
|
||||||
|
uses: peter-evans/create-pull-request@v8
|
||||||
with:
|
with:
|
||||||
path: docs
|
token: ${{ secrets.AUTO_MERGE }}
|
||||||
|
commit-message: 'chore: Update generated dev docs'
|
||||||
|
title: 'chore: Update Generated Dev Docs'
|
||||||
|
body: 'Automated update of generated documentation from JSON sources'
|
||||||
|
branch: docs-update
|
||||||
|
delete-branch: true
|
||||||
|
add-paths: |
|
||||||
|
docs/content/dev/
|
||||||
|
config/tweaks.json
|
||||||
|
config/feature.json
|
||||||
|
labels: |
|
||||||
|
automated
|
||||||
|
documentation
|
||||||
|
|
||||||
|
- name: Check outputs
|
||||||
|
run: |
|
||||||
|
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
|
||||||
|
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
|
||||||
|
|
||||||
|
- name: Install Node.js dependencies
|
||||||
|
run: "cd docs && [[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
|
||||||
|
- name: Cache Restore
|
||||||
|
id: cache-restore
|
||||||
|
uses: actions/cache/restore@v5
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
${{ runner.temp }}/hugo_cache
|
||||||
|
key: hugo-${{ github.run_id }}
|
||||||
|
restore-keys: hugo-
|
||||||
|
- name: Build with Hugo
|
||||||
|
run: |
|
||||||
|
hugo \
|
||||||
|
--gc \
|
||||||
|
--minify \
|
||||||
|
--cleanDestinationDir \
|
||||||
|
--source docs \
|
||||||
|
--cacheDir "${{ runner.temp }}/hugo_cache"
|
||||||
|
- name: Cache Save
|
||||||
|
id: cache-save
|
||||||
|
uses: actions/cache/save@v5
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
${{ runner.temp }}/hugo_cache
|
||||||
|
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-pages-artifact@v5
|
||||||
|
with:
|
||||||
|
path: ./docs/public
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
if: github.repository == 'ChrisTitusTech/winutil'
|
if: github.repository == 'ChrisTitusTech/winutil'
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
name: Issue slash commands
|
||||||
|
|
||||||
|
on:
|
||||||
|
issue_comment:
|
||||||
|
types: [created, edited]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
issueCommands:
|
||||||
|
# Skip this job if the comment was created/edited on a PR
|
||||||
|
if: ${{ !github.event.issue.pull_request }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: none
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Process slash command
|
||||||
|
uses: actions/github-script@v9
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const allowedUsers = ["ChrisTitusTech", "og-mrk", "Marterich", "MyDrift-user", "Real-MullaC", "CodingWonders", "GabiNun2", "FluffyPunk"];
|
||||||
|
const commenter = context.payload.comment.user.login;
|
||||||
|
|
||||||
|
// Authorization check first — before any parsing of comment content
|
||||||
|
if (!allowedUsers.includes(commenter)) {
|
||||||
|
console.log(`User ${commenter} is not in the allowlist. Skipping.`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read comment body as data, never interpolated into shell
|
||||||
|
const body = context.payload.comment.body;
|
||||||
|
const issueNumber = context.issue.number;
|
||||||
|
const owner = context.repo.owner;
|
||||||
|
const repo = context.repo.repo;
|
||||||
|
|
||||||
|
// /label 'name' or /label name
|
||||||
|
const labelMatch = body.match(/\/label\s+'([^']+)'|\/label\s+(\S+?)(?:\s|$)/);
|
||||||
|
if (labelMatch) {
|
||||||
|
const labelName = (labelMatch[1] || labelMatch[2]).trim();
|
||||||
|
console.log(`Adding label: ${labelName}`);
|
||||||
|
await github.rest.issues.addLabels({
|
||||||
|
owner, repo, issue_number: issueNumber,
|
||||||
|
labels: [labelName],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// /unlabel 'name' or /unlabel name
|
||||||
|
const unlabelMatch = body.match(/\/unlabel\s+'([^']+)'|\/unlabel\s+(\S+?)(?:\s|$)/);
|
||||||
|
if (unlabelMatch) {
|
||||||
|
const labelName = (unlabelMatch[1] || unlabelMatch[2]).trim();
|
||||||
|
console.log(`Removing label: ${labelName}`);
|
||||||
|
await github.rest.issues.removeLabel({
|
||||||
|
owner, repo, issue_number: issueNumber,
|
||||||
|
name: labelName,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// /close (optionally with 'not planned')
|
||||||
|
if (body.includes('/close')) {
|
||||||
|
const stateReason = body.includes('not planned') ? 'not_planned' : 'completed';
|
||||||
|
console.log(`Closing issue (reason: ${stateReason})`);
|
||||||
|
await github.rest.issues.update({
|
||||||
|
owner, repo, issue_number: issueNumber,
|
||||||
|
state: 'closed',
|
||||||
|
state_reason: stateReason,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// /open or /reopen
|
||||||
|
if (body.includes('/open') || body.includes('/reopen')) {
|
||||||
|
console.log('Reopening issue');
|
||||||
|
await github.rest.issues.update({
|
||||||
|
owner, repo, issue_number: issueNumber,
|
||||||
|
state: 'open',
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -17,7 +17,7 @@ jobs:
|
|||||||
CERTIFICATE_BASE64: ${{ secrets.CERTIFICATE_BASE64 }}
|
CERTIFICATE_BASE64: ${{ secrets.CERTIFICATE_BASE64 }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Generate Dev Docs and Update JSON Links
|
- name: Generate Dev Docs and Update JSON Links
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
@@ -31,23 +31,21 @@ jobs:
|
|||||||
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1
|
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1
|
||||||
continue-on-error: false # Directly fail the job on error, removing the need for a separate check
|
continue-on-error: false # Directly fail the job on error, removing the need for a separate check
|
||||||
|
|
||||||
- name: Create Pull Request for Updated Docs and JSON Links
|
- name: Create Pull Request for Updated JSON Links
|
||||||
id: cpr
|
id: cpr
|
||||||
uses: peter-evans/create-pull-request@v8
|
uses: peter-evans/create-pull-request@v8
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.AUTO_MERGE }}
|
token: ${{ secrets.AUTO_MERGE }}
|
||||||
commit-message: 'chore: Update generated dev docs and JSON links'
|
commit-message: 'chore: Update documentation links in JSON configs'
|
||||||
title: 'chore: Update generated dev docs and JSON links'
|
title: 'chore: Update Generated Dev Docs'
|
||||||
body: 'Automated update of generated documentation and JSON config links from pre-release build'
|
body: 'Automated update of documentation links in JSON configs from pre-release build'
|
||||||
branch: docs-update
|
branch: docs-update
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
add-paths: |
|
add-paths: |
|
||||||
docs/src/content/docs/code-reference/
|
|
||||||
config/tweaks.json
|
config/tweaks.json
|
||||||
config/feature.json
|
config/feature.json
|
||||||
labels: |
|
labels: |
|
||||||
automated
|
automated
|
||||||
documentation
|
|
||||||
skip-changelog
|
skip-changelog
|
||||||
|
|
||||||
- name: Check outputs
|
- name: Check outputs
|
||||||
@@ -111,21 +109,6 @@ jobs:
|
|||||||
config-name: release-drafter.yml
|
config-name: release-drafter.yml
|
||||||
version: ${{ env.VERSION }}
|
version: ${{ env.VERSION }}
|
||||||
|
|
||||||
- name: Remove Automated Updates from Release Notes
|
|
||||||
id: filter_notes
|
|
||||||
shell: pwsh
|
|
||||||
env:
|
|
||||||
RELEASE_NOTES: ${{ steps.generate_notes.outputs.body }}
|
|
||||||
run: |
|
|
||||||
$filteredNotes = ($env:RELEASE_NOTES -split '\r?\n' | Where-Object {
|
|
||||||
$_ -notmatch '(?i)Update (Generated Dev Docs|Sponsors)'
|
|
||||||
}) -join "`n"
|
|
||||||
|
|
||||||
$delimiter = [guid]::NewGuid().ToString()
|
|
||||||
"body<<$delimiter" >> $env:GITHUB_OUTPUT
|
|
||||||
$filteredNotes >> $env:GITHUB_OUTPUT
|
|
||||||
$delimiter >> $env:GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Create and Upload Release
|
- name: Create and Upload Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v3
|
uses: softprops/action-gh-release@v3
|
||||||
@@ -133,7 +116,7 @@ jobs:
|
|||||||
tag_name: ${{ env.VERSION }}
|
tag_name: ${{ env.VERSION }}
|
||||||
name: Pre-Release ${{ env.VERSION }}
|
name: Pre-Release ${{ env.VERSION }}
|
||||||
body: |
|
body: |
|
||||||
${{ steps.filter_notes.outputs.body }}
|
${{ steps.generate_notes.outputs.body }}
|
||||||
|
|
||||||

|

|
||||||
append_body: false
|
append_body: false
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Check if winutil.ps1 exists
|
- name: Check if winutil.ps1 exists
|
||||||
id: check_existence
|
id: check_existence
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ jobs:
|
|||||||
if: (github.event_name == 'schedule' && github.repository == 'ChrisTitusTech/winutil') || (github.event_name != 'schedule')
|
if: (github.event_name == 'schedule' && github.repository == 'ChrisTitusTech/winutil') || (github.event_name != 'schedule')
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout 🛎️
|
- name: Checkout 🛎️
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
@@ -26,15 +26,13 @@ jobs:
|
|||||||
id: cpr
|
id: cpr
|
||||||
uses: peter-evans/create-pull-request@v8
|
uses: peter-evans/create-pull-request@v8
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.AUTO_MERGE }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
commit-message: 'Update sponsors in README'
|
commit-message: 'Update sponsors in README'
|
||||||
title: 'chore: Update Sponsors README'
|
title: 'chore: Update Sponsors README'
|
||||||
body: 'Automated update of sponsors section'
|
body: 'Automated update of sponsors section'
|
||||||
branch: sponsors-update
|
branch: sponsors-update
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
labels: |
|
labels: automated
|
||||||
automated
|
|
||||||
skip-changelog
|
|
||||||
|
|
||||||
- name: Check outputs
|
- name: Check outputs
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -8,43 +8,32 @@ jobs:
|
|||||||
name: PS Script Analyzer
|
name: PS Script Analyzer
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v6
|
||||||
- name: Install PSScriptAnalyzer
|
- name: lint
|
||||||
run: |
|
uses: devblackops/github-action-psscriptanalyzer@master
|
||||||
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
|
with:
|
||||||
Install-Module -Name PSScriptAnalyzer -RequiredVersion 1.20.0 -Scope CurrentUser -Force
|
sendComment: false
|
||||||
Import-Module PSScriptAnalyzer -RequiredVersion 1.20.0 -Force
|
settingsPath: lint/PSScriptAnalyser.ps1
|
||||||
Get-Module PSScriptAnalyzer | Select-Object Name, Version, Path
|
failOnErrors: false
|
||||||
shell: pwsh
|
failOnWarnings: false
|
||||||
- name: Run PSScriptAnalyzer
|
failOnInfos: false
|
||||||
run: |
|
|
||||||
$results = Invoke-ScriptAnalyzer -Path . -Settings ./lint/PSScriptAnalyser.ps1 -Recurse
|
|
||||||
if ($results) {
|
|
||||||
$results | Format-Table -AutoSize | Out-String -Width 4096 | Write-Host
|
|
||||||
} else {
|
|
||||||
Write-Host "PSScriptAnalyzer found no diagnostics."
|
|
||||||
}
|
|
||||||
shell: pwsh
|
|
||||||
test:
|
test:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Install Pester
|
- name: Install Pester
|
||||||
run: |
|
run: |
|
||||||
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
||||||
Install-Module -Name Pester -RequiredVersion 5.8.0 -Force -SkipPublisherCheck -AllowClobber
|
Install-Module -Name Pester -Force -SkipPublisherCheck -AllowClobber
|
||||||
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
|
||||||
Get-Module Pester | Select-Object Name, Version, Path
|
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
- name: Run Pester tests
|
- name: Run Pester tests
|
||||||
run: |
|
run: |
|
||||||
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
||||||
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed
|
||||||
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed -CI
|
|
||||||
|
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -1,20 +1,32 @@
|
|||||||
# winutil
|
# Libraries
|
||||||
System.Management.Automation.dll
|
System.Management.Automation.dll
|
||||||
Microsoft.PowerShell.ConsoleHost.dll
|
Microsoft.PowerShell.ConsoleHost.dll
|
||||||
|
|
||||||
winutil.exe.config
|
# Configuration folder
|
||||||
winutil.ps1
|
.vscode/
|
||||||
binary/
|
.idea/
|
||||||
testResults.xml
|
.vs/
|
||||||
|
|
||||||
# general software/os specific
|
# OS Specific
|
||||||
desktop.ini
|
desktop.ini
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
.vscode/
|
# Ignore Generated XAML Files
|
||||||
.idea/
|
xaml/inputApp.xaml
|
||||||
|
xaml/inputFeatures.xaml
|
||||||
|
xaml/inputTweaks.xaml
|
||||||
|
|
||||||
# hugo files (archived docs)
|
# Executables and Configs
|
||||||
docs-old/public/
|
pester.ps1
|
||||||
docs-old/.hugo_build.lock
|
Microsoft.UI.Xaml*
|
||||||
docs-old/resources/
|
winutil.ps1
|
||||||
|
*.psd*
|
||||||
|
|
||||||
|
# winutil-bin
|
||||||
|
winutil.exe.config
|
||||||
|
binary/
|
||||||
|
|
||||||
|
# Hugo Files
|
||||||
|
docs/public/
|
||||||
|
docs/.hugo_build.lock
|
||||||
|
docs/resources/
|
||||||
|
|||||||
@@ -1,194 +0,0 @@
|
|||||||
# AGENTS.md
|
|
||||||
|
|
||||||
Drop-in operating instructions for coding agents. Read this file before every task.
|
|
||||||
|
|
||||||
**Working code only. Finish the job. Plausibility is not correctness.**
|
|
||||||
|
|
||||||
This repository follows the AGENTS.md convention: these instructions are for Codex, Claude Code, Cursor, Windsurf, Copilot, Aider, Devin, Amp, and other coding agents that read `AGENTS.md`.
|
|
||||||
|
|
||||||
## 0. Non-Negotiables
|
|
||||||
|
|
||||||
These rules override everything else in this file when in conflict:
|
|
||||||
|
|
||||||
1. **Do not edit `winutil.ps1` directly.** It is generated build output. Change source files and compile.
|
|
||||||
2. **Do not commit `winutil.ps1`.** It is ignored locally and generated by GitHub Actions for releases.
|
|
||||||
3. **Never fabricate.** Do not invent file paths, function names, command output, test results, commit hashes, or API behavior. Read the file or run the command.
|
|
||||||
4. **Disagree when the premise is wrong.** Say what is wrong before acting on it.
|
|
||||||
5. **Stop when genuinely ambiguous.** If two interpretations would produce materially different diffs, ask before editing.
|
|
||||||
6. **Touch only what the task requires.** No drive-by refactors, formatting sweeps, or unrelated cleanup.
|
|
||||||
7. **Verify before saying done.** A plausible-looking diff is not proof.
|
|
||||||
|
|
||||||
## 1. Project Context
|
|
||||||
|
|
||||||
WinUtil is a Windows PowerShell utility with a WPF interface. The repository is maintained as modular source, but the distributed artifact is one compiled PowerShell script.
|
|
||||||
|
|
||||||
### Stack
|
|
||||||
|
|
||||||
- Language: Windows PowerShell / PowerShell.
|
|
||||||
- UI: WPF via `xaml/inputXML.xaml`.
|
|
||||||
- Configuration: JSON files under `config/`.
|
|
||||||
- Tests: Pester tests under `pester/`.
|
|
||||||
- Lint: PowerShell Script Analyzer with settings in `lint/PSScriptAnalyser.ps1`.
|
|
||||||
- Docs: Hugo site under `docs/`.
|
|
||||||
- Release artifact: generated root `winutil.ps1`.
|
|
||||||
|
|
||||||
### Key Commands
|
|
||||||
|
|
||||||
- Compile:
|
|
||||||
```powershell
|
|
||||||
.\Compile.ps1
|
|
||||||
```
|
|
||||||
- Compile and run GUI:
|
|
||||||
```powershell
|
|
||||||
.\Compile.ps1 -Run
|
|
||||||
```
|
|
||||||
- Run tests:
|
|
||||||
```powershell
|
|
||||||
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
|
||||||
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed
|
|
||||||
```
|
|
||||||
- Run Script Analyzer with project settings when available:
|
|
||||||
```powershell
|
|
||||||
Invoke-ScriptAnalyzer -Path . -Settings .\lint\PSScriptAnalyser.ps1 -Recurse
|
|
||||||
```
|
|
||||||
|
|
||||||
Prefer the narrowest useful verification while iterating. Use the full relevant check before finishing.
|
|
||||||
|
|
||||||
## 2. Source Of Truth
|
|
||||||
|
|
||||||
Make durable changes only in files consumed by `Compile.ps1` or in documentation/test files:
|
|
||||||
|
|
||||||
- `scripts/start.ps1` for startup/bootstrap code.
|
|
||||||
- `functions/public/*.ps1` for UI-facing and user-facing workflows.
|
|
||||||
- `functions/private/*.ps1` for internal helpers.
|
|
||||||
- `config/*.json` for applications, tweaks, features, DNS, presets, navigation, themes, and related declarative data.
|
|
||||||
- `xaml/inputXML.xaml` for the WPF UI layout.
|
|
||||||
- `tools/autounattend.xml` for the embedded unattended Windows setup template.
|
|
||||||
- `scripts/main.ps1` for the final entrypoint and GUI initialization logic appended during compile.
|
|
||||||
- `pester/*.Tests.ps1` for automated checks.
|
|
||||||
- `docs/` for Hugo documentation.
|
|
||||||
|
|
||||||
If behavior changes require the compiled script to change, update these source files and run `.\Compile.ps1` only to verify generation.
|
|
||||||
|
|
||||||
## 3. Build Model
|
|
||||||
|
|
||||||
`Compile.ps1` combines the repository sources into `winutil.ps1` in this order:
|
|
||||||
|
|
||||||
1. Read `scripts/start.ps1` and replace `#{replaceme}` with the current `yy.MM.dd` build date.
|
|
||||||
2. Append every file under `functions/` recursively.
|
|
||||||
3. Convert each `config/*.json` file into embedded `$sync.configs` objects.
|
|
||||||
4. Special-case `config/applications.json` so keys receive the `WPFInstall` prefix in compiled config.
|
|
||||||
5. Embed `xaml/inputXML.xaml` into `$inputXML`.
|
|
||||||
6. Embed `tools/autounattend.xml` into `$WinUtilAutounattendXml`.
|
|
||||||
7. Append `scripts/main.ps1`.
|
|
||||||
8. Write the result to root `winutil.ps1`.
|
|
||||||
|
|
||||||
Because the final script is concatenated, do not rely on runtime module imports or source-relative dot-sourcing unless the compiled script will also contain the required code/data.
|
|
||||||
|
|
||||||
## 4. Before Editing
|
|
||||||
|
|
||||||
- State the plan in one or two sentences before editing. For non-trivial work, include the verification you intend to run.
|
|
||||||
- Read the files you will touch and the files that call them.
|
|
||||||
- Match existing patterns even when a different greenfield design would be cleaner.
|
|
||||||
- Surface assumptions when they affect behavior, compatibility, or user data.
|
|
||||||
- If two approaches have meaningful tradeoffs, name them before choosing. Trivial tasks can proceed directly.
|
|
||||||
|
|
||||||
## 5. Coding Guidelines
|
|
||||||
|
|
||||||
- Prefer the minimum code that solves the stated problem.
|
|
||||||
- Keep PowerShell functions in one function file when practical, with the file name matching the primary function name.
|
|
||||||
- Use approved PowerShell verb-noun names and follow the existing `WPF` / `WinUtil` naming conventions.
|
|
||||||
- Keep UI event handler names aligned with XAML element names. A button named `WPFExampleButton` is typically handled by `Invoke-WPFExampleButton`.
|
|
||||||
- Use `$sync` for shared state and UI references, consistent with the existing runspace model.
|
|
||||||
- Update WPF controls through the UI dispatcher when running work in a background runspace.
|
|
||||||
- Keep config-driven features in JSON when they fit the existing schema instead of hard-coding lists in PowerShell.
|
|
||||||
- Preserve undo/original-state data for tweaks so users can reverse changes.
|
|
||||||
- Do not add abstractions, configurability, hooks, or "future extensibility" unless the task needs them now.
|
|
||||||
- Clean up orphans created by your own changes, such as unused variables or functions made obsolete by the edit.
|
|
||||||
- Avoid broad formatting-only edits, especially in JSON config files, XAML, docs, and generated output.
|
|
||||||
|
|
||||||
## 6. Runtime And Safety Rules
|
|
||||||
|
|
||||||
- WinUtil performs system-level Windows changes. Treat registry, services, AppX removal, package manager, Windows Update, ISO, and unattended setup changes as high-risk.
|
|
||||||
- Prefer existing helper functions for WinGet, Chocolatey, registry, services, progress, and UI updates.
|
|
||||||
- Keep tweaks reversible where the schema supports it by including original values or original states.
|
|
||||||
- Never modify a user's original ISO in-place; follow existing copy/mount/export patterns.
|
|
||||||
- Avoid storing credentials, secrets, or machine-specific paths in repo files.
|
|
||||||
- Preserve logging and user feedback patterns for long-running or destructive operations.
|
|
||||||
|
|
||||||
## 7. Surgical Changes
|
|
||||||
|
|
||||||
- Do not improve adjacent code, comments, formatting, imports, or docs unless required.
|
|
||||||
- Do not refactor working code because you are already in the file.
|
|
||||||
- Do not delete pre-existing dead code unless asked; mention it in the summary if relevant.
|
|
||||||
- Keep diffs reviewable. Every changed line should trace to the user's request.
|
|
||||||
- If a change starts spreading across unrelated areas, pause and reassess the plan.
|
|
||||||
|
|
||||||
## 8. Verification
|
|
||||||
|
|
||||||
Define success in terms that can be checked, then check it.
|
|
||||||
|
|
||||||
- For compile/build changes, run `.\Compile.ps1`.
|
|
||||||
- For GUI behavior changes, run `.\Compile.ps1 -Run` when practical and verify the affected path manually.
|
|
||||||
- For config changes, run the compile check and relevant Pester tests.
|
|
||||||
- For function changes, run the relevant Pester tests or add/update focused tests when practical.
|
|
||||||
- For docs-only changes, proofread the changed files and skip runtime tests unless docs generation is affected.
|
|
||||||
- Read command output. Do not report tests as passing unless they actually passed.
|
|
||||||
- If verification fails, fix the cause rather than weakening the test.
|
|
||||||
|
|
||||||
If a check cannot be run, say exactly why and what residual risk remains.
|
|
||||||
|
|
||||||
## 9. Generated Files And Git Hygiene
|
|
||||||
|
|
||||||
- Treat local `winutil.ps1` changes as disposable compile output.
|
|
||||||
- Never stage or commit `winutil.ps1`, `docs/public/`, `docs/resources/`, `binary/`, editor folders, or other ignored build artifacts.
|
|
||||||
- Do not remove `.gitignore` rules that keep generated artifacts out of Git.
|
|
||||||
- Before finishing, check `git status --short` and separate your changes from pre-existing user changes.
|
|
||||||
- Do not revert user changes unless explicitly asked.
|
|
||||||
- Commit messages, when requested, should be descriptive: short subject under 72 characters, body explaining why when needed.
|
|
||||||
|
|
||||||
## 10. Documentation Expectations
|
|
||||||
|
|
||||||
- Update `docs/content/` when user-facing behavior changes.
|
|
||||||
- Update developer docs when architecture, build flow, config schema, or contribution workflow changes.
|
|
||||||
- Keep README changes brief and high-level.
|
|
||||||
- Put detailed user and developer documentation under `docs/`.
|
|
||||||
- Keep `SPEC.md` aligned with build/runtime contract changes.
|
|
||||||
|
|
||||||
## 11. Communication Style
|
|
||||||
|
|
||||||
- Be direct and concise. Start with the answer or action.
|
|
||||||
- No flattery, filler, ceremonial closings, or fake certainty.
|
|
||||||
- Use bullets only when they improve scanning.
|
|
||||||
- Report what changed, how it was verified, and anything not done.
|
|
||||||
- If the user asks for a review, lead with findings and file/line references.
|
|
||||||
|
|
||||||
## 12. When To Ask
|
|
||||||
|
|
||||||
Ask before proceeding when:
|
|
||||||
|
|
||||||
- The request has two plausible interpretations and the choice materially changes behavior or files touched.
|
|
||||||
- The change affects release generation, generated artifacts, migrations, or high-risk Windows behavior in a way the user did not specify.
|
|
||||||
- You need credentials, secrets, production resources, or access you do not have.
|
|
||||||
- The user's stated goal conflicts with the literal request.
|
|
||||||
|
|
||||||
Proceed without asking when:
|
|
||||||
|
|
||||||
- The task is trivial and reversible.
|
|
||||||
- Ambiguity can be resolved by reading the code or running a local command.
|
|
||||||
- The user already answered the question in this session.
|
|
||||||
|
|
||||||
## 13. Project Learnings
|
|
||||||
|
|
||||||
When the user corrects an agent approach, add or tighten one concrete rule here before ending the session. Keep this section short and prune rules that no longer matter.
|
|
||||||
|
|
||||||
- Keep `winutil.ps1` generated-only: change source files, compile to verify, and never stage the generated script.
|
|
||||||
- Keep WinUtil runtime logging in the existing timestamped `%LocalAppData%\winutil\logs\winutil_*.log` session file; do not create a separate root `winutil.log`.
|
|
||||||
- Import Pester 5.8.0 before running tests so `Invoke-Pester -Output Detailed -CI` does not resolve to Windows' inbox Pester 3.4.0.
|
|
||||||
- Keep package install/uninstall process launches simple unless explicitly requested; do not add a separate stdout/stderr process logging helper for winget or Chocolatey.
|
|
||||||
- When the active log file is owned by `Start-Transcript`, do not call `Add-Content` against that file; write to host output so the transcript captures the line in the same log file without recording a terminating-error diagnostic.
|
|
||||||
- Log install/uninstall package names and package-manager IDs before queuing background runspace work; do not rely on runspace host output for the package identity.
|
|
||||||
- For Win11 Creator, start each new ISO modification in a fresh `WinUtil_Win11ISO_*` temp directory; existing-work detection is only for resuming/exporting already modified media.
|
|
||||||
- For Win11 Creator driver injection, keep offline WIM servicing to one mount, one `/Add-Driver`, and one commit; do not export editions or run unrelated WIM cleanup, and reject damaged metadata before ISO export.
|
|
||||||
- For Script Analyzer cleanup, fix actionable source warnings first and do not globally suppress accepted convention warnings such as plural names, `ShouldProcess` on UI helpers, `$global:sync`, or compile-time cross-file false positives.
|
|
||||||
- For DNS DHCP reset, keep the cmdlet reset and explicitly set IPv4 and IPv6 DNS source to DHCP.
|
|
||||||
@@ -2,20 +2,23 @@ param (
|
|||||||
[switch]$Run
|
[switch]$Run
|
||||||
)
|
)
|
||||||
|
|
||||||
$OFS = "`r`n"
|
$OFS = "`r`n" # Makes it so we dont need to add -Raw to every Get-Content command
|
||||||
|
|
||||||
# Variable to sync between runspaces
|
# Variable to sync between runspaces
|
||||||
$sync = [Hashtable]::Synchronized(@{})
|
$sync = [Hashtable]::Synchronized(@{})
|
||||||
$sync.configs = @{}
|
$sync.configs = @{}
|
||||||
|
|
||||||
$script = (Get-Content -Path scripts\start.ps1) -replace '#{replaceme}', (Get-Date -Format 'yy.MM.dd')
|
# Create the script in memory.
|
||||||
|
$script = [System.Collections.Generic.List[string]]::new()
|
||||||
|
|
||||||
$script += Get-ChildItem -Path functions -Recurse -File | ForEach-Object {
|
$script.Add(
|
||||||
Get-Content -Path $_.FullName -Raw
|
((Get-Content -Path scripts\start.ps1) -replace '#{replaceme}', (Get-Date -Format 'yy.MM.dd'))
|
||||||
}
|
)
|
||||||
|
|
||||||
|
$script.Add((Get-ChildItem -Path functions -Recurse -File | Get-Content))
|
||||||
|
|
||||||
Get-ChildItem config | ForEach-Object {
|
Get-ChildItem config | ForEach-Object {
|
||||||
$obj = Get-Content -Path $_.FullName -Raw | ConvertFrom-Json
|
$obj = Get-Content -Path $_.FullName | ConvertFrom-Json
|
||||||
|
|
||||||
if ($_.Name -eq "applications.json") {
|
if ($_.Name -eq "applications.json") {
|
||||||
$fixed = [ordered]@{}
|
$fixed = [ordered]@{}
|
||||||
@@ -28,16 +31,17 @@ Get-ChildItem config | ForEach-Object {
|
|||||||
$json = $obj | ConvertTo-Json -Depth 10
|
$json = $obj | ConvertTo-Json -Depth 10
|
||||||
|
|
||||||
$sync.configs[$_.BaseName] = $obj
|
$sync.configs[$_.BaseName] = $obj
|
||||||
$script += "`$sync.configs.$($_.BaseName) = @'`r`n$json`r`n'@ | ConvertFrom-Json"
|
$script.Add("`$sync.configs.$($_.BaseName) = @'`r`n$json`r`n'@ | ConvertFrom-Json")
|
||||||
}
|
}
|
||||||
|
|
||||||
$xaml = Get-Content -Path xaml\inputXML.xaml -Raw
|
# Read the entire XAML file as a single string, preserving line breaks
|
||||||
$script += "`$inputXML = @'`r`n$xaml`r`n'@"
|
$xaml = Get-Content -Path xaml\inputXML.xaml
|
||||||
|
$script.Add('$inputXML = @''' + "`n" + $xaml + "`n" + '''@')
|
||||||
|
|
||||||
$autounattendXml = Get-Content -Path tools\autounattend.xml -Raw
|
$autounattendXml = Get-Content -Path tools\autounattend.xml
|
||||||
$script += "`$WinUtilAutounattendXml = @'`r`n$autounattendXml`r`n'@"
|
$script.Add("`$WinUtilAutounattendXml = @'`r`n$autounattendXml`r`n'@")
|
||||||
|
|
||||||
$script += Get-Content -Path scripts\main.ps1 -Raw
|
$script.Add((Get-Content -Path scripts\main.ps1))
|
||||||
|
|
||||||
Set-Content -Path winutil.ps1 -Value $script
|
Set-Content -Path winutil.ps1 -Value $script
|
||||||
|
|
||||||
|
|||||||
@@ -1,89 +1,105 @@
|
|||||||
# Chris Titus Tech's Windows Utility
|
# Chris Titus Tech's Windows Utility
|
||||||
|
|
||||||
[](https://github.com/ChrisTitusTech/winutil/releases/latest)
|
[](https://github.com/ChrisTitusTech/winutil/releases/latest)
|
||||||

|

|
||||||
[](https://discord.gg/RUbZUZyByQ)
|
[](https://discord.gg/RUbZUZyByQ)
|
||||||
|
[](https://winutil.christitus.com/)
|
||||||
|
|
||||||
A curated compilation of Windows system tasks streamline **installs**, debloat with **tweaks**, troubleshoot with **config**, and configure **Windows updates**. Run it fresh on every new Windows install.
|
This utility is a compilation of Windows tasks I perform on each Windows system I use. It is meant to streamline *installs*, debloat with *tweaks*, troubleshoot with *config*, and fix Windows *updates*. I am extremely picky about any contributions to keep this project clean and efficient.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
## 💡 Usage
|
||||||
|
|
||||||
---
|
Winutil must be run in Admin mode because it performs system-wide tweaks. To achieve this, run PowerShell as an administrator. Here are a few ways to do it:
|
||||||
|
|
||||||
## Quick Start
|
1. **Start menu Method:**
|
||||||
|
- Right-click on the start menu.
|
||||||
|
- Choose "Windows PowerShell (Admin)" (for Windows 10) or "Terminal (Admin)" (for Windows 11).
|
||||||
|
|
||||||
> **WinUtil must be run as Administrator** Because it performs system-wide changes.
|
2. **Search and Launch Method:**
|
||||||
|
- Press the Windows key.
|
||||||
|
- Type "PowerShell" or "Terminal" (for Windows 11).
|
||||||
|
- Press `Ctrl + Shift + Enter` or Right-click and choose "Run as administrator" to launch it with administrator privileges.
|
||||||
|
|
||||||
Open PowerShell or Terminal as admin, then run:
|
### Launch Command
|
||||||
|
|
||||||
|
#### Stable Branch (Recommended)
|
||||||
|
|
||||||
**Stable Branch (recommended)**
|
|
||||||
```ps1
|
```ps1
|
||||||
irm https://christitus.com/win | iex
|
irm "https://christitus.com/win" | iex
|
||||||
|
```
|
||||||
|
#### Dev Branch
|
||||||
|
|
||||||
|
```ps1
|
||||||
|
irm "https://christitus.com/windev" | iex
|
||||||
```
|
```
|
||||||
|
|
||||||
**Development Branch**
|
### Automation
|
||||||
```ps1
|
|
||||||
irm https://christitus.com/windev | iex
|
|
||||||
```
|
|
||||||
|
|
||||||
### How to open an admin terminal
|
Winutil also supports predefined presets that apply common configurations automatically:
|
||||||
|
|
||||||
- **Start menu:** Right-click Start → *Windows PowerShell (Admin)* or *Terminal (Admin)*
|
- `Standard`
|
||||||
- **Search:** Press the `Windows key`, and type `PowerShell` or `Terminal`, then `Ctrl + Shift + Enter`
|
- `Minimal`
|
||||||
|
- `Advanced`
|
||||||
|
|
||||||
---
|
Example:
|
||||||
|
|
||||||
## Automation / Presets
|
|
||||||
|
|
||||||
Apply a predefined configuration without manual selection:
|
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
& ([ScriptBlock]::Create((irm https://christitus.com/win))) -Preset Standard
|
& ([ScriptBlock]::Create((irm "https://christitus.com/win"))) -Preset Standard
|
||||||
```
|
```
|
||||||
|
|
||||||
| Preset | Description |
|
|
||||||
|--------|-------------|
|
|
||||||
| `Standard` | Balanced defaults for most users |
|
|
||||||
| `Minimal` | Minimal changes to suit every user |
|
|
||||||
| `Advanced` | Deep tweaks for power users |
|
|
||||||
|
|
||||||
To view exactly what each preset does, see:
|
To view exactly what each preset does, see:
|
||||||
https://github.com/ChrisTitusTech/winutil/blob/main/config/preset.json
|
https://github.com/ChrisTitusTech/winutil/blob/main/config/preset.json
|
||||||
|
|
||||||
---
|
If you have Issues, refer to [Known Issues](https://winutil.christitus.com/knownissues/) or [Create Issue](https://github.com/ChrisTitusTech/winutil/issues)
|
||||||
|
|
||||||
## Build & Develop
|
## 🎓 Documentation
|
||||||
|
|
||||||
See https://github.com/ChrisTitusTech/winutil/blob/main/.github/CONTRIBUTING.md
|
### [WinUtil Official Documentation](https://winutil.christitus.com/)
|
||||||
|
|
||||||
---
|
### [YouTube Tutorial](https://www.youtube.com/watch?v=6UQZ5oQg8XA)
|
||||||
|
|
||||||
## Resources
|
### [ChrisTitus.com Article](https://christitus.com/windows-tool/)
|
||||||
|
|
||||||
- [Official Documentation](https://winutil.christitus.com/)
|
## 🛠️ Build & Develop
|
||||||
- [YouTube Tutorial](https://www.youtube.com/watch?v=6UQZ5oQg8XA)
|
|
||||||
- [ChrisTitus.com Article](https://christitus.com/windows-tool/)
|
|
||||||
- [Known Issues](https://winutil.christitus.com/knownissues/)
|
|
||||||
- [Report an Issue](https://github.com/ChrisTitusTech/winutil/issues)
|
|
||||||
|
|
||||||
---
|
> [!NOTE]
|
||||||
|
> Winutil is a relatively large script, so it's split into multiple files which're combined into a single `.ps1` file using a custom compiler. This makes maintaining the project a lot easier.
|
||||||
|
|
||||||
## Support
|
Get a copy of the source code. This can be done using GitHub UI (**Code** > **Download ZIP**), or by cloning (downloading) the repo using git.
|
||||||
|
|
||||||
- Leave a ⭐ to show support!
|
If git is installed, run the following commands under a PowerShell window to clone and move into the project's directory:
|
||||||
|
```ps1
|
||||||
|
git clone --depth 1 "https://github.com/ChrisTitusTech/winutil.git"
|
||||||
|
cd winutil
|
||||||
|
```
|
||||||
|
|
||||||
|
To build the project, run the Compile Script under a PowerShell window (admin permissions IS NOT required):
|
||||||
|
```ps1
|
||||||
|
.\Compile.ps1
|
||||||
|
```
|
||||||
|
|
||||||
|
You'll see a new file named `winutil.ps1`, which was created by `Compile.ps1` script. Now you can run it as admin, and a new window will pop up. Enjoy your own compiled version of WinUtil :)
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
> For more info on using WinUtil and how to develop for it, please consider reading [the Contribution Guidelines](https://winutil.christitus.com/contributing/). If you don't know where to start, or have questions, you can ask over on our [Discord Community Server](https://discord.gg/RUbZUZyByQ), and active project members will answer when they can.
|
||||||
|
|
||||||
|
## 💖 Support
|
||||||
|
- To morally and mentally support the project, make sure to leave a ⭐️!
|
||||||
- EXE Wrapper for $10 @ https://www.cttstore.com/windows-toolbox
|
- EXE Wrapper for $10 @ https://www.cttstore.com/windows-toolbox
|
||||||
|
|
||||||
## Sponsors
|
## 💖 Sponsors
|
||||||
|
|
||||||
These are the sponsors that help keep this project alive with monthly contributions.
|
These are the sponsors that help keep this project alive with monthly contributions.
|
||||||
|
|
||||||
<!-- sponsors --><a href="https://github.com/ysaito8015"><img src="https://github.com/ysaito8015.png" width="60px" alt="User avatar: Yusuke Saito" /></a><a href="https://github.com/dwelfusius"><img src="https://github.com/dwelfusius.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/mews-se"><img src="https://github.com/mews-se.png" width="60px" alt="User avatar: Martin" /></a><a href="https://github.com/jdiegmueller"><img src="https://github.com/jdiegmueller.png" width="60px" alt="User avatar: Jason A. Diegmueller" /></a><a href="https://github.com/robertsandrock"><img src="https://github.com/robertsandrock.png" width="60px" alt="User avatar: RMS" /></a><a href="https://github.com/paulsheets"><img src="https://github.com/paulsheets.png" width="60px" alt="User avatar: Paul" /></a><a href="https://github.com/djones369"><img src="https://github.com/djones369.png" width="60px" alt="User avatar: Dave J (WhamGeek)" /></a><a href="https://github.com/anthonymendez"><img src="https://github.com/anthonymendez.png" width="60px" alt="User avatar: Anthony Mendez" /></a><a href="https://github.com/FatBastard0"><img src="https://github.com/FatBastard0.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/DursleyGuy"><img src="https://github.com/DursleyGuy.png" width="60px" alt="User avatar: DursleyGuy" /></a><a href="https://github.com/DwayneTheRockLobster1"><img src="https://github.com/DwayneTheRockLobster1.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/KieraKujisawa"><img src="https://github.com/KieraKujisawa.png" width="60px" alt="User avatar: Kiera Meredith" /></a><a href="https://github.com/andrewpayne68"><img src="https://github.com/andrewpayne68.png" width="60px" alt="User avatar: Andrew P" /></a><a href="https://github.com/seanh1995"><img src="https://github.com/seanh1995.png" width="60px" alt="User avatar: Sean (ANGRYxScotsman)" /></a><a href="https://github.com/Abs313a"><img src="https://github.com/Abs313a.png" width="60px" alt="User avatar: Abs" /></a><!-- sponsors -->
|
<!-- sponsors --><a href="https://github.com/dwelfusius"><img src="https://github.com/dwelfusius.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/mews-se"><img src="https://github.com/mews-se.png" width="60px" alt="User avatar: Martin Stockzell" /></a><a href="https://github.com/jdiegmueller"><img src="https://github.com/jdiegmueller.png" width="60px" alt="User avatar: Jason A. Diegmueller" /></a><a href="https://github.com/robertsandrock"><img src="https://github.com/robertsandrock.png" width="60px" alt="User avatar: RMS" /></a><a href="https://github.com/paulsheets"><img src="https://github.com/paulsheets.png" width="60px" alt="User avatar: Paul" /></a><a href="https://github.com/djones369"><img src="https://github.com/djones369.png" width="60px" alt="User avatar: Dave J (WhamGeek)" /></a><a href="https://github.com/anthonymendez"><img src="https://github.com/anthonymendez.png" width="60px" alt="User avatar: Anthony Mendez" /></a><a href="https://github.com/FatBastard0"><img src="https://github.com/FatBastard0.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/DursleyGuy"><img src="https://github.com/DursleyGuy.png" width="60px" alt="User avatar: DursleyGuy" /></a><a href="https://github.com/DwayneTheRockLobster1"><img src="https://github.com/DwayneTheRockLobster1.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/KieraKujisawa"><img src="https://github.com/KieraKujisawa.png" width="60px" alt="User avatar: Kiera Meredith" /></a><a href="https://github.com/andrewpayne68"><img src="https://github.com/andrewpayne68.png" width="60px" alt="User avatar: Andrew P" /></a><a href="https://github.com/ameaninglessname"><img src="https://github.com/ameaninglessname.png" width="60px" alt="User avatar: CodingBot" /></a><!-- sponsors -->
|
||||||
|
|
||||||
---
|
## 🏅 Thanks to all Contributors
|
||||||
|
Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.
|
||||||
## Contributors
|
|
||||||
|
|
||||||
[](https://github.com/ChrisTitusTech/winutil/graphs/contributors)
|
[](https://github.com/ChrisTitusTech/winutil/graphs/contributors)
|
||||||
|
|
||||||
Thanks to everyone who has contributed time and effort to this project. Keep rocking 🍻
|
## 📊 GitHub Stats
|
||||||
|
|
||||||
|

|
||||||
|
|||||||
@@ -1,105 +0,0 @@
|
|||||||
# SPEC.md
|
|
||||||
|
|
||||||
## Project Contract
|
|
||||||
|
|
||||||
WinUtil is a Windows PowerShell utility with a WPF interface. The repository is maintained as modular source files, but the released artifact is a single generated `winutil.ps1` script.
|
|
||||||
|
|
||||||
The compiled `winutil.ps1` is not source code for editing or review. It is generated by `Compile.ps1` and produced during release automation. All durable changes must be made to the source files that feed the compiler.
|
|
||||||
|
|
||||||
## Goals
|
|
||||||
|
|
||||||
- Provide a single-script Windows utility that can be launched from PowerShell.
|
|
||||||
- Keep development modular enough for contributors to work on functions, config, UI, docs, and tooling independently.
|
|
||||||
- Make install, tweak, feature, repair, update, and ISO workflows discoverable from the WPF UI.
|
|
||||||
- Keep common lists and options declarative in JSON config where possible.
|
|
||||||
- Preserve a repeatable compile process so local builds and GitHub Actions builds produce the distributable script from the same inputs.
|
|
||||||
|
|
||||||
## Non-Goals
|
|
||||||
|
|
||||||
- `winutil.ps1` is not hand-maintained.
|
|
||||||
- The project is not structured as a PowerShell module at runtime.
|
|
||||||
- The GUI is not a separate packaged desktop application in this repository's normal release path.
|
|
||||||
- Generated files should not be reviewed as source changes.
|
|
||||||
|
|
||||||
## Repository Layout
|
|
||||||
|
|
||||||
- `Compile.ps1`: build script that creates `winutil.ps1`.
|
|
||||||
- `scripts/start.ps1`: startup/bootstrap segment used at the beginning of the compiled script.
|
|
||||||
- `scripts/main.ps1`: main entrypoint appended at the end of the compiled script.
|
|
||||||
- `functions/public/`: public/UI-facing PowerShell functions.
|
|
||||||
- `functions/private/`: internal helper PowerShell functions.
|
|
||||||
- `config/`: JSON configuration consumed at compile time and embedded into `$sync.configs`.
|
|
||||||
- `xaml/inputXML.xaml`: WPF UI markup embedded into the compiled script.
|
|
||||||
- `tools/autounattend.xml`: unattended setup XML embedded for Windows ISO workflows.
|
|
||||||
- `pester/`: Pester tests for config and function checks.
|
|
||||||
- `lint/PSScriptAnalyser.ps1`: PowerShell Script Analyzer settings.
|
|
||||||
- `docs/`: Hugo documentation site.
|
|
||||||
- `winutil.ps1`: ignored generated build artifact.
|
|
||||||
|
|
||||||
## Compile Specification
|
|
||||||
|
|
||||||
`Compile.ps1` must produce a standalone root `winutil.ps1` by combining all required project files.
|
|
||||||
|
|
||||||
The compile flow is:
|
|
||||||
|
|
||||||
1. Initialize shared state with `$sync = [Hashtable]::Synchronized(@{})` and `$sync.configs = @{}`.
|
|
||||||
2. Read `scripts/start.ps1`.
|
|
||||||
3. Replace `#{replaceme}` in startup code with the current `yy.MM.dd` build date.
|
|
||||||
4. Append raw content from all files under `functions/` recursively.
|
|
||||||
5. For every file in `config/`, parse JSON and embed it into `$sync.configs.<basename>`.
|
|
||||||
6. Special-case `config/applications.json` so application keys are emitted with the `WPFInstall` prefix.
|
|
||||||
7. Embed `xaml/inputXML.xaml` as `$inputXML`.
|
|
||||||
8. Embed `tools/autounattend.xml` as `$WinUtilAutounattendXml`.
|
|
||||||
9. Append `scripts/main.ps1`.
|
|
||||||
10. Write the combined script to `winutil.ps1`.
|
|
||||||
11. If `-Run` is supplied, execute the generated script.
|
|
||||||
|
|
||||||
The generated script must have everything it needs from repository sources embedded or appended by this process.
|
|
||||||
|
|
||||||
## Runtime Model
|
|
||||||
|
|
||||||
- WinUtil runs in PowerShell on Windows and uses WPF for the UI.
|
|
||||||
- Shared mutable state is stored in `$sync`, including configs, UI element references, runspace state, selections, and progress.
|
|
||||||
- Long-running operations should use runspaces or existing async patterns so the UI remains responsive.
|
|
||||||
- UI updates from background work must be dispatched back to the WPF UI thread.
|
|
||||||
- Declarative features such as apps, tweaks, presets, DNS providers, and navigation should stay in `config/*.json` unless code is required.
|
|
||||||
|
|
||||||
## UI And Event Contract
|
|
||||||
|
|
||||||
- UI layout lives in `xaml/inputXML.xaml`.
|
|
||||||
- Named WPF controls are discovered and stored in `$sync`.
|
|
||||||
- Button/action wiring follows existing naming conventions, where an element named like `WPFThingButton` maps to a function named like `Invoke-WPFThingButton`.
|
|
||||||
- When adding controls, ensure the XAML name, config key, and PowerShell function names line up with the existing event system.
|
|
||||||
|
|
||||||
## Configuration Contract
|
|
||||||
|
|
||||||
Config files must remain valid JSON and compile cleanly through `ConvertFrom-Json`.
|
|
||||||
|
|
||||||
`config/applications.json` defines installable applications. Each application entry should include the fields expected by tests and UI code, such as package manager IDs, category, display content, description, and link.
|
|
||||||
|
|
||||||
`config/tweaks.json` defines Windows tweaks. Registry and service changes should include original values or original states when applicable so undo workflows can restore user systems.
|
|
||||||
|
|
||||||
Preset and navigation files should reference valid config keys. Avoid renaming config keys unless all presets, UI references, docs, and code paths are updated together.
|
|
||||||
|
|
||||||
## Safety Requirements
|
|
||||||
|
|
||||||
- Registry, service, package manager, Windows Update, AppX removal, and ISO operations can affect the host system. Changes must be explicit, reversible where practical, and consistent with existing logging and confirmation patterns.
|
|
||||||
- Tweak changes should include undo metadata when the schema supports it.
|
|
||||||
- Package installation should prefer existing WinGet and Chocolatey helper functions.
|
|
||||||
- ISO workflows must not modify the user's original ISO file; they should work on copied/mounted content following existing patterns.
|
|
||||||
|
|
||||||
## Testing And CI
|
|
||||||
|
|
||||||
Expected validation for source changes:
|
|
||||||
|
|
||||||
- `.\Compile.ps1` verifies the compiler can generate `winutil.ps1`.
|
|
||||||
- `.\Compile.ps1 -Run` compiles and launches the generated utility for manual GUI verification.
|
|
||||||
- `Install-Module -Name Pester -RequiredVersion 5.8.0 -Scope CurrentUser -Force -SkipPublisherCheck` installs the supported Pester version.
|
|
||||||
- `Import-Module Pester -RequiredVersion 5.8.0 -Force; Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed -CI` runs the Pester suite.
|
|
||||||
- GitHub Actions also runs a compile check and PowerShell Script Analyzer with `lint/PSScriptAnalyser.ps1`.
|
|
||||||
|
|
||||||
The generated `winutil.ps1` may appear locally after compile. It remains ignored build output and must not be committed.
|
|
||||||
|
|
||||||
## Release Artifact
|
|
||||||
|
|
||||||
GitHub Actions is responsible for producing the release `winutil.ps1` from repository sources. A release should be considered valid only if the generated script came from the compile process, not from direct manual edits to `winutil.ps1`.
|
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"adobe": {
|
"adobe": {
|
||||||
"category": "Document",
|
"category": "Multimedia Tools",
|
||||||
"choco": "adobereader",
|
"choco": "adobereader",
|
||||||
"content": "Adobe Acrobat Reader",
|
"content": "Adobe Acrobat Reader",
|
||||||
"description": "Adobe Acrobat Reader is a free PDF viewer with essential features for viewing, printing, and annotating PDF documents.",
|
"description": "Adobe Acrobat Reader is a free PDF viewer with essential features for viewing, printing, and annotating PDF documents.",
|
||||||
@@ -161,15 +161,6 @@
|
|||||||
"winget": "Cemu.Cemu",
|
"winget": "Cemu.Cemu",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"chatgpt": {
|
|
||||||
"category": "Development",
|
|
||||||
"choco": "na",
|
|
||||||
"content": "ChatGPT Desktop",
|
|
||||||
"description": "The official ChatGPT desktop app for Windows, distributed through the Microsoft Store.",
|
|
||||||
"link": "https://apps.microsoft.com/detail/9nt1r1c2hh7j",
|
|
||||||
"winget": "msstore:9NT1R1C2HH7J",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"chatterino": {
|
"chatterino": {
|
||||||
"category": "Communications",
|
"category": "Communications",
|
||||||
"choco": "chatterino",
|
"choco": "chatterino",
|
||||||
@@ -197,33 +188,6 @@
|
|||||||
"winget": "Hibbiki.Chromium",
|
"winget": "Hibbiki.Chromium",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"cinebenchr23": {
|
|
||||||
"category": "Pro Tools",
|
|
||||||
"choco": "na",
|
|
||||||
"content": "Cinebench R23",
|
|
||||||
"description": "Cinebench R23 is a benchmark tool for comparing CPU rendering performance across systems.",
|
|
||||||
"link": "https://www.maxon.net/en/cinebench",
|
|
||||||
"winget": "Maxon.CinebenchR23",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"claude": {
|
|
||||||
"category": "Development",
|
|
||||||
"choco": "claude",
|
|
||||||
"content": "Claude Desktop",
|
|
||||||
"description": "Anthropic's Claude desktop application for focused AI-assisted work and chat.",
|
|
||||||
"link": "https://claude.ai/download",
|
|
||||||
"winget": "Anthropic.Claude",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"claude-code": {
|
|
||||||
"category": "Development",
|
|
||||||
"choco": "claude-code",
|
|
||||||
"content": "Claude Code",
|
|
||||||
"description": "Anthropic's agentic coding tool for terminal and IDE development workflows.",
|
|
||||||
"link": "https://code.claude.com/",
|
|
||||||
"winget": "Anthropic.ClaudeCode",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"cmake": {
|
"cmake": {
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"choco": "cmake",
|
"choco": "cmake",
|
||||||
@@ -233,15 +197,6 @@
|
|||||||
"winget": "Kitware.CMake",
|
"winget": "Kitware.CMake",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"codex": {
|
|
||||||
"category": "Development",
|
|
||||||
"choco": "codex",
|
|
||||||
"content": "Codex",
|
|
||||||
"description": "Codex CLI is an OpenAI coding agent that runs locally in your terminal.",
|
|
||||||
"link": "https://developers.openai.com/codex/cli",
|
|
||||||
"winget": "OpenAI.Codex",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"cpuz": {
|
"cpuz": {
|
||||||
"category": "Pro Tools",
|
"category": "Pro Tools",
|
||||||
"choco": "cpu-z",
|
"choco": "cpu-z",
|
||||||
@@ -359,15 +314,6 @@
|
|||||||
"winget": "Microsoft.DotNet.DesktopRuntime.10",
|
"winget": "Microsoft.DotNet.DesktopRuntime.10",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"dropbox": {
|
|
||||||
"category": "Utilities",
|
|
||||||
"choco": "dropbox",
|
|
||||||
"content": "Dropbox",
|
|
||||||
"description": "Dropbox is a cloud storage client for syncing files, sharing content, and keeping documents available across devices.",
|
|
||||||
"link": "https://www.dropbox.com/desktop",
|
|
||||||
"winget": "Dropbox.Dropbox",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"eaapp": {
|
"eaapp": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "ea-app",
|
"choco": "ea-app",
|
||||||
@@ -458,15 +404,6 @@
|
|||||||
"winget": "flux.flux",
|
"winget": "flux.flux",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"foxpdfreader": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "foxitreader",
|
|
||||||
"content": "Foxit PDF Reader",
|
|
||||||
"description": "Foxit PDF Reader is a free PDF viewer with a familiar ribbon-style interface.",
|
|
||||||
"link": "https://www.foxit.com/pdf-reader/",
|
|
||||||
"winget": "Foxit.FoxitReader",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"geforcenow": {
|
"geforcenow": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "nvidia-geforce-now",
|
"choco": "nvidia-geforce-now",
|
||||||
@@ -539,15 +476,6 @@
|
|||||||
"winget": "TechPowerUp.GPU-Z",
|
"winget": "TechPowerUp.GPU-Z",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"gsudo": {
|
|
||||||
"category": "Pro Tools",
|
|
||||||
"choco": "gsudo",
|
|
||||||
"content": "gsudo",
|
|
||||||
"description": "gsudo is a sudo equivalent for Windows. It allows you to run commands with elevated administrative privileges directly within the current console window.",
|
|
||||||
"link": "https://github.com/gerardog/gsudo",
|
|
||||||
"winget": "gerardog.gsudo",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"helium": {
|
"helium": {
|
||||||
"category": "Browsers",
|
"category": "Browsers",
|
||||||
"choco": "helium",
|
"choco": "helium",
|
||||||
@@ -611,23 +539,13 @@
|
|||||||
"winget": "DuongDieuPhap.ImageGlass",
|
"winget": "DuongDieuPhap.ImageGlass",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"internetdownloadmanager": {
|
|
||||||
"category": "Utilities",
|
|
||||||
"choco": "internet-download-manager",
|
|
||||||
"content": "Internet Download Manager",
|
|
||||||
"description": "Internet Download Manager is a download manager for accelerating, resuming, and scheduling file downloads.",
|
|
||||||
"link": "https://www.internetdownloadmanager.com/",
|
|
||||||
"winget": "Tonec.InternetDownloadManager",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"irfanview": {
|
"irfanview": {
|
||||||
"category": "Multimedia Tools",
|
"category": "Multimedia Tools",
|
||||||
"choco": "irfanview",
|
"choco": "irfanview",
|
||||||
"content": "IrfanView",
|
"content": "IrfanView",
|
||||||
"description": "IrfanView is a lightweight, fast, and free image viewer and editor. Supports multiple formats, batch processing, and powerful plugins.",
|
"description": "IrfanView is a lightweight, fast, and free image viewer and editor. Supports multiple formats, batch processing, and powerful plugins.",
|
||||||
"link": "https://irfanview.com/",
|
"link": "https://irfanview.com/",
|
||||||
"winget": "IrfanSkiljan.IrfanView",
|
"winget": "IrfanSkiljan.IrfanView"
|
||||||
"foss": false
|
|
||||||
},
|
},
|
||||||
"itch": {
|
"itch": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
@@ -705,29 +623,11 @@
|
|||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "jpegview",
|
"choco": "jpegview",
|
||||||
"content": "JPEG View",
|
"content": "JPEG View",
|
||||||
"description": "JPEGView is a lean, fast and highly configurable viewer/editor for JPEG, BMP, PNG, WEBP, TGA, GIF, JXL, HEIC, HEIF, AVIF, and TIFF images with a minimal GUI.",
|
"description": "JPEGView is a lean, fast and highly configurable viewer/editor for JPEG, BMP, PNG, WEBP, TGA, GIF, JXL, HEIC, HEIF, AVIF and TIFF images with a minimal GUI.",
|
||||||
"link": "https://github.com/sylikc/jpegview",
|
"link": "https://github.com/sylikc/jpegview",
|
||||||
"winget": "sylikc.JPEGView",
|
"winget": "sylikc.JPEGView",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"joplin": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "joplin",
|
|
||||||
"content": "Joplin",
|
|
||||||
"description": "Joplin is an open-source note-taking and to-do application with synchronization capabilities.",
|
|
||||||
"link": "https://joplinapp.org/",
|
|
||||||
"winget": "Joplin.Joplin",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"keepassxc": {
|
|
||||||
"category": "Utilities",
|
|
||||||
"choco": "keepassxc",
|
|
||||||
"content": "KeePassXC",
|
|
||||||
"description": "KeePassXC is a modern, secure, and open-source password manager that stores and manages your most sensitive information. You can run KeePassXC on Windows, macOS, and Linux systems. KeePassXC is for people with extremely high demands of secure personal data management. It saves many different types of information, such as usernames, passwords, URLs, attachments, and notes in an offline, encrypted file that can be stored in any location, including private and public cloud solutions. For easy identification and management, user-defined titles and icons can be specified for entries. In addition, entries are sorted into customizable groups. An integrated search function allows you to use advanced patterns to easily find any entry in your database. A customizable, fast, and easy-to-use password generator utility allows you to create passwords with any combination of characters or easy to remember passphrases.",
|
|
||||||
"link": "https://keepassxc.org/",
|
|
||||||
"winget": "KeePassXCTeam.KeePassXC",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"klite": {
|
"klite": {
|
||||||
"category": "Multimedia Tools",
|
"category": "Multimedia Tools",
|
||||||
"choco": "k-litecodecpack-standard",
|
"choco": "k-litecodecpack-standard",
|
||||||
@@ -756,7 +656,7 @@
|
|||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"libreoffice": {
|
"libreoffice": {
|
||||||
"category": "Document",
|
"category": "Multimedia Tools",
|
||||||
"choco": "libreoffice-fresh",
|
"choco": "libreoffice-fresh",
|
||||||
"content": "LibreOffice",
|
"content": "LibreOffice",
|
||||||
"description": "LibreOffice is a powerful and free office suite, compatible with other major office suites.",
|
"description": "LibreOffice is a powerful and free office suite, compatible with other major office suites.",
|
||||||
@@ -800,15 +700,6 @@
|
|||||||
"winget": "Element.Element",
|
"winget": "Element.Element",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"minitoolpartitionwizard": {
|
|
||||||
"category": "Utilities",
|
|
||||||
"choco": "minitoolpartitionwizard",
|
|
||||||
"content": "MiniTool Partition Wizard",
|
|
||||||
"description": "Comprehensive free partition manager that performs advanced operations Windows natively cannot, such as merging partitions, converting file systems, and organizing disk capacity.",
|
|
||||||
"link": "https://www.partitionwizard.com/",
|
|
||||||
"winget": "MiniTool.PartitionWizard.Free",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"modrinth": {
|
"modrinth": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "modrinth-app",
|
"choco": "modrinth-app",
|
||||||
@@ -872,15 +763,6 @@
|
|||||||
"winget": "MullvadVPN.MullvadBrowser",
|
"winget": "MullvadVPN.MullvadBrowser",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"nomacs": {
|
|
||||||
"category": "Multimedia Tools",
|
|
||||||
"choco": "nomacs",
|
|
||||||
"content": "nomacs",
|
|
||||||
"description": "nomacs is a free, open-source image viewer, which supports multiple platforms. You can use it for viewing all common image formats, including RAW and .psd images.",
|
|
||||||
"link": "https://nomacs.org/",
|
|
||||||
"winget": "nomacs.nomacs",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"nanazip": {
|
"nanazip": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "nanazip",
|
"choco": "nanazip",
|
||||||
@@ -894,15 +776,15 @@
|
|||||||
"category": "Selfhosted Tools",
|
"category": "Selfhosted Tools",
|
||||||
"choco": "netbird",
|
"choco": "netbird",
|
||||||
"content": "NetBird",
|
"content": "NetBird",
|
||||||
"description": "NetBird is an open-source alternative comparable to TailScale that can be connected to a self-hosted server.",
|
"description": "NetBird is a open-source alternative comparable to TailScale that can be connected to a self-hosted server.",
|
||||||
"link": "https://netbird.io/",
|
"link": "https://netbird.io/",
|
||||||
"winget": "Netbird.Netbird",
|
"winget": "Netbird.Netbird",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"naps2": {
|
"naps2": {
|
||||||
"category": "Document",
|
"category": "Multimedia Tools",
|
||||||
"choco": "naps2",
|
"choco": "naps2",
|
||||||
"content": "NAPS2 (Scanner)",
|
"content": "NAPS2 (Document Scanner)",
|
||||||
"description": "NAPS2 is a document scanning application that simplifies the process of creating electronic documents.",
|
"description": "NAPS2 is a document scanning application that simplifies the process of creating electronic documents.",
|
||||||
"link": "https://www.naps2.com/",
|
"link": "https://www.naps2.com/",
|
||||||
"winget": "Cyanfish.NAPS2",
|
"winget": "Cyanfish.NAPS2",
|
||||||
@@ -953,14 +835,6 @@
|
|||||||
"winget": "OpenJS.NodeJS.LTS",
|
"winget": "OpenJS.NodeJS.LTS",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"pnpm": {
|
|
||||||
"category": "Development",
|
|
||||||
"content": "pnpm",
|
|
||||||
"description": "pnpm is a fast and disk space efficient package manager for JavaScript and Node.js applications.",
|
|
||||||
"link": "https://pnpm.io/",
|
|
||||||
"winget": "pnpm.pnpm",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"notepadplus": {
|
"notepadplus": {
|
||||||
"category": "Multimedia Tools",
|
"category": "Multimedia Tools",
|
||||||
"choco": "notepadplusplus",
|
"choco": "notepadplusplus",
|
||||||
@@ -998,7 +872,7 @@
|
|||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"obsidian": {
|
"obsidian": {
|
||||||
"category": "Document",
|
"category": "Multimedia Tools",
|
||||||
"choco": "obsidian",
|
"choco": "obsidian",
|
||||||
"content": "Obsidian",
|
"content": "Obsidian",
|
||||||
"description": "Obsidian is a powerful note-taking and knowledge management application.",
|
"description": "Obsidian is a powerful note-taking and knowledge management application.",
|
||||||
@@ -1006,15 +880,6 @@
|
|||||||
"winget": "Obsidian.Obsidian",
|
"winget": "Obsidian.Obsidian",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"okular": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "okular",
|
|
||||||
"content": "Okular",
|
|
||||||
"description": "Okular is a versatile document viewer with advanced features.",
|
|
||||||
"link": "https://okular.kde.org/",
|
|
||||||
"winget": "KDE.Okular",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"onedrive": {
|
"onedrive": {
|
||||||
"category": "Microsoft Tools",
|
"category": "Microsoft Tools",
|
||||||
"choco": "onedrive",
|
"choco": "onedrive",
|
||||||
@@ -1025,10 +890,10 @@
|
|||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"onlyoffice": {
|
"onlyoffice": {
|
||||||
"category": "Document",
|
"category": "Multimedia Tools",
|
||||||
"choco": "onlyoffice",
|
"choco": "onlyoffice",
|
||||||
"content": "ONLYOFFICE Desktop",
|
"content": "ONLYOffice Desktop",
|
||||||
"description": "ONLYOFFICE Desktop is a comprehensive office suite for document editing and collaboration.",
|
"description": "ONLYOffice Desktop is a comprehensive office suite for document editing and collaboration.",
|
||||||
"link": "https://www.onlyoffice.com/desktop.aspx",
|
"link": "https://www.onlyoffice.com/desktop.aspx",
|
||||||
"winget": "ONLYOFFICE.DesktopEditors",
|
"winget": "ONLYOFFICE.DesktopEditors",
|
||||||
"foss": true
|
"foss": true
|
||||||
@@ -1055,10 +920,10 @@
|
|||||||
"category": "Pro Tools",
|
"category": "Pro Tools",
|
||||||
"choco": "openvpn-connect",
|
"choco": "openvpn-connect",
|
||||||
"content": "OpenVPN Connect",
|
"content": "OpenVPN Connect",
|
||||||
"description": "OpenVPN Connect is a VPN client that allows you to connect securely to a VPN server. It provides a secure and encrypted connection for protecting your online privacy.",
|
"description": "OpenVPN Connect is an open-source VPN client that allows you to connect securely to a VPN server. It provides a secure and encrypted connection for protecting your online privacy.",
|
||||||
"link": "https://openvpn.net/",
|
"link": "https://openvpn.net/",
|
||||||
"winget": "OpenVPNTechnologies.OpenVPNConnect",
|
"winget": "OpenVPNTechnologies.OpenVPNConnect",
|
||||||
"foss": false
|
"foss": true
|
||||||
},
|
},
|
||||||
"OVirtualBox": {
|
"OVirtualBox": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
@@ -1114,51 +979,6 @@
|
|||||||
"winget": "Giorgiotani.Peazip",
|
"winget": "Giorgiotani.Peazip",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"pdf-xchange": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "pdfxchangeeditor",
|
|
||||||
"content": "PDF-XChange Editor",
|
|
||||||
"description": "A comprehensive Windows-based software suite and editor for creating, viewing, editing, annotating, and signing PDF files.",
|
|
||||||
"link": "https://www.pdf-xchange.com/",
|
|
||||||
"winget": "TrackerSoftware.PDF-XChangeEditor",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"pdf24creator": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "pdf24",
|
|
||||||
"content": "PDF24 Creator",
|
|
||||||
"description": "Free and easy-to-use online/desktop PDF tools that make you more productive",
|
|
||||||
"link": "https://tools.pdf24.org/en/creator",
|
|
||||||
"winget": "geeksoftwareGmbH.PDF24Creator",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"pdfgear": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "pdfgear",
|
|
||||||
"content": "PDFgear",
|
|
||||||
"description": "PDFgear is a piece of full-featured PDF management software for Windows, macOS, and mobile, and it's completely free to use.",
|
|
||||||
"link": "https://www.pdfgear.com/",
|
|
||||||
"winget": "PDFgear.PDFgear",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"pdfsam": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "pdfsam",
|
|
||||||
"content": "PDFsam Basic",
|
|
||||||
"description": "PDFsam Basic is a free and open-source tool for splitting, merging, and rotating PDF files.",
|
|
||||||
"link": "https://pdfsam.org/",
|
|
||||||
"winget": "PDFsam.PDFsam",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"playnite": {
|
|
||||||
"category": "Games",
|
|
||||||
"choco": "playnite",
|
|
||||||
"content": "Playnite",
|
|
||||||
"description": "Playnite is an open-source video game library manager with one simple goal: To provide a unified interface for all of your games.",
|
|
||||||
"link": "https://playnite.link/",
|
|
||||||
"winget": "Playnite.Playnite",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"plex": {
|
"plex": {
|
||||||
"category": "Selfhosted Tools",
|
"category": "Selfhosted Tools",
|
||||||
"choco": "plexmediaserver",
|
"choco": "plexmediaserver",
|
||||||
@@ -1208,7 +1028,7 @@
|
|||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "prismlauncher",
|
"choco": "prismlauncher",
|
||||||
"content": "Prism Launcher",
|
"content": "Prism Launcher",
|
||||||
"description": "Prism Launcher is an open-source Minecraft launcher with the ability to manage multiple instances, accounts, and mods.",
|
"description": "Prism Launcher is an open-source Minecraft launcher with the ability to manage multiple instances, accounts and mods.",
|
||||||
"link": "https://prismlauncher.org/",
|
"link": "https://prismlauncher.org/",
|
||||||
"winget": "PrismLauncher.PrismLauncher",
|
"winget": "PrismLauncher.PrismLauncher",
|
||||||
"foss": true
|
"foss": true
|
||||||
@@ -1270,7 +1090,7 @@
|
|||||||
"processmonitor": {
|
"processmonitor": {
|
||||||
"category": "Microsoft Tools",
|
"category": "Microsoft Tools",
|
||||||
"choco": "procexp",
|
"choco": "procexp",
|
||||||
"content": "Process Monitor",
|
"content": "SysInternals Process Monitor",
|
||||||
"description": "SysInternals Process Monitor is an advanced monitoring tool that shows real-time file system, registry, and process/thread activity.",
|
"description": "SysInternals Process Monitor is an advanced monitoring tool that shows real-time file system, registry, and process/thread activity.",
|
||||||
"link": "https://docs.microsoft.com/en-us/sysinternals/downloads/procmon",
|
"link": "https://docs.microsoft.com/en-us/sysinternals/downloads/procmon",
|
||||||
"winget": "Microsoft.Sysinternals.ProcessMonitor",
|
"winget": "Microsoft.Sysinternals.ProcessMonitor",
|
||||||
@@ -1339,6 +1159,15 @@
|
|||||||
"winget": "Rufus.Rufus",
|
"winget": "Rufus.Rufus",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"rustdesk": {
|
||||||
|
"category": "Pro Tools",
|
||||||
|
"choco": "rustdesk.portable",
|
||||||
|
"content": "RustDesk",
|
||||||
|
"description": "RustDesk is a free and open-source remote desktop application. It provides a secure way to connect to remote machines and access desktop environments.",
|
||||||
|
"link": "https://rustdesk.com/",
|
||||||
|
"winget": "RustDesk.RustDesk",
|
||||||
|
"foss": true
|
||||||
|
},
|
||||||
"rustlang": {
|
"rustlang": {
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"choco": "rust",
|
"choco": "rust",
|
||||||
@@ -1402,15 +1231,6 @@
|
|||||||
"winget": "WhirlwindFX.SignalRgb",
|
"winget": "WhirlwindFX.SignalRgb",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"simplenote": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "simplenote",
|
|
||||||
"content": "Simplenote",
|
|
||||||
"description": "Simplenote is an easy way to keep notes, lists, ideas and more.",
|
|
||||||
"link": "https://simplenote.com/",
|
|
||||||
"winget": "Automattic.Simplenote",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"simplewall": {
|
"simplewall": {
|
||||||
"category": "Pro Tools",
|
"category": "Pro Tools",
|
||||||
"choco": "simplewall",
|
"choco": "simplewall",
|
||||||
@@ -1429,15 +1249,6 @@
|
|||||||
"winget": "SlackTechnologies.Slack",
|
"winget": "SlackTechnologies.Slack",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"startallback": {
|
|
||||||
"category": "Utilities",
|
|
||||||
"choco": "StartAllBack",
|
|
||||||
"content": "StartAllBack",
|
|
||||||
"description": "StartAllBack restores and improves Windows taskbar, Start menu, File Explorer, and shell UI behavior.",
|
|
||||||
"link": "https://www.startallback.com/",
|
|
||||||
"winget": "StartIsBack.StartAllBack",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"steam": {
|
"steam": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "steam-client",
|
"choco": "steam-client",
|
||||||
@@ -1456,15 +1267,6 @@
|
|||||||
"winget": "SublimeHQ.SublimeText.4",
|
"winget": "SublimeHQ.SublimeText.4",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"sumatra": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "sumatrapdf",
|
|
||||||
"content": "Sumatra PDF",
|
|
||||||
"description": "Sumatra PDF is a lightweight and fast PDF viewer with minimalistic design.",
|
|
||||||
"link": "https://www.sumatrapdfreader.org/free-pdf-reader.html",
|
|
||||||
"winget": "SumatraPDF.SumatraPDF",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"sunshine": {
|
"sunshine": {
|
||||||
"category": "Selfhosted Tools",
|
"category": "Selfhosted Tools",
|
||||||
"choco": "sunshine",
|
"choco": "sunshine",
|
||||||
@@ -1477,7 +1279,7 @@
|
|||||||
"tcpview": {
|
"tcpview": {
|
||||||
"category": "Microsoft Tools",
|
"category": "Microsoft Tools",
|
||||||
"choco": "tcpview",
|
"choco": "tcpview",
|
||||||
"content": "TCPView",
|
"content": "SysInternals TCPView",
|
||||||
"description": "SysInternals TCPView is a network monitoring tool that displays a detailed list of all TCP and UDP endpoints on your system.",
|
"description": "SysInternals TCPView is a network monitoring tool that displays a detailed list of all TCP and UDP endpoints on your system.",
|
||||||
"link": "https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview",
|
"link": "https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview",
|
||||||
"winget": "Microsoft.Sysinternals.TCPView",
|
"winget": "Microsoft.Sysinternals.TCPView",
|
||||||
@@ -1594,7 +1396,7 @@
|
|||||||
"ungoogled": {
|
"ungoogled": {
|
||||||
"category": "Browsers",
|
"category": "Browsers",
|
||||||
"choco": "ungoogled-chromium",
|
"choco": "ungoogled-chromium",
|
||||||
"content": "Ungoogled Chromium",
|
"content": "Ungoogled",
|
||||||
"description": "Ungoogled Chromium is a version of Chromium without Google's integration for enhanced privacy and control.",
|
"description": "Ungoogled Chromium is a version of Chromium without Google's integration for enhanced privacy and control.",
|
||||||
"link": "https://github.com/Eloston/ungoogled-chromium",
|
"link": "https://github.com/Eloston/ungoogled-chromium",
|
||||||
"winget": "eloston.ungoogled-chromium",
|
"winget": "eloston.ungoogled-chromium",
|
||||||
@@ -1609,15 +1411,6 @@
|
|||||||
"winget": "Unity.UnityHub",
|
"winget": "Unity.UnityHub",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"everything": {
|
|
||||||
"category": "Utilities",
|
|
||||||
"choco": "everything",
|
|
||||||
"content": "Everything",
|
|
||||||
"description": "Everything is a search engine that locates files and folders by filename instantly for Windows. Unlike Windows search Everything initially displays every file and folder on your computer (hence the name Everything). You type in a search filter to limit what files and folders are displayed.",
|
|
||||||
"link": "https://www.voidtools.com/",
|
|
||||||
"winget": "voidtools.Everything",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"vc2015_32": {
|
"vc2015_32": {
|
||||||
"category": "Microsoft Tools",
|
"category": "Microsoft Tools",
|
||||||
"choco": "vcredist2015",
|
"choco": "vcredist2015",
|
||||||
@@ -1735,15 +1528,6 @@
|
|||||||
"winget": "Waterfox.Waterfox",
|
"winget": "Waterfox.Waterfox",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"whatsapp": {
|
|
||||||
"category": "Communications",
|
|
||||||
"choco": "na",
|
|
||||||
"content": "WhatsApp Desktop",
|
|
||||||
"description": "WhatsApp Desktop is the official Windows desktop messaging app from Meta, distributed through the Microsoft Store.",
|
|
||||||
"link": "https://apps.microsoft.com/detail/9nksqgp7f2nh",
|
|
||||||
"winget": "msstore:9NKSQGP7F2NH",
|
|
||||||
"foss": false
|
|
||||||
},
|
|
||||||
"wingetui": {
|
"wingetui": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "wingetui",
|
"choco": "wingetui",
|
||||||
@@ -1807,15 +1591,6 @@
|
|||||||
"winget": "MHNexus.HxD",
|
"winget": "MHNexus.HxD",
|
||||||
"foss": false
|
"foss": false
|
||||||
},
|
},
|
||||||
"xournal": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "xournalplusplus",
|
|
||||||
"content": "Xournal++",
|
|
||||||
"description": "Xournal++ is an open-source handwriting notetaking software with PDF annotation capabilities.",
|
|
||||||
"link": "https://xournalpp.github.io/",
|
|
||||||
"winget": "Xournal++.Xournal++",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"yarn": {
|
"yarn": {
|
||||||
"category": "Development",
|
"category": "Development",
|
||||||
"choco": "yarn",
|
"choco": "yarn",
|
||||||
@@ -1897,15 +1672,6 @@
|
|||||||
"winget": "ZedIndustries.Zed",
|
"winget": "ZedIndustries.Zed",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
"zotero": {
|
|
||||||
"category": "Document",
|
|
||||||
"choco": "zotero",
|
|
||||||
"content": "Zotero",
|
|
||||||
"description": "Zotero is a free, easy-to-use tool to help you collect, organize, cite, and share your research materials.",
|
|
||||||
"link": "https://www.zotero.org/",
|
|
||||||
"winget": "DigitalScholar.Zotero",
|
|
||||||
"foss": true
|
|
||||||
},
|
|
||||||
"deskflow": {
|
"deskflow": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "deskflow",
|
"choco": "deskflow",
|
||||||
|
|||||||
@@ -73,11 +73,12 @@
|
|||||||
"Order": "5",
|
"Order": "5",
|
||||||
"Description": "Show the selected applications"
|
"Description": "Show the selected applications"
|
||||||
},
|
},
|
||||||
"WPFInstallFOSSInfo": {
|
"WPFToggleFOSSHighlight": {
|
||||||
"Content": "Free and Open Source Software",
|
"Content": "Highlight FOSS",
|
||||||
"Category": "__Selection",
|
"Category": "__Selection",
|
||||||
"Type": "Note",
|
"Type": "Toggle",
|
||||||
"Order": "0",
|
"Checked": true,
|
||||||
"Description": "Information about the #FOSS label on application entries"
|
"Order": "6",
|
||||||
|
"Description": "Toggle the green highlight for FOSS applications"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,263 +0,0 @@
|
|||||||
{
|
|
||||||
"WPFAppxMicrosoft_WindowsFeedbackHub": {
|
|
||||||
"Category": "Microsoft Apps",
|
|
||||||
"Content": "Feedback Hub",
|
|
||||||
"Description": "Allows users to submit bug reports, feature suggestions, and diagnostic data directly to Microsoft.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.WindowsFeedbackHub",
|
|
||||||
"StoreId": "9NBLGGH4R32N"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_GetHelp": {
|
|
||||||
"Category": "Microsoft Apps",
|
|
||||||
"Content": "Get Help",
|
|
||||||
"Description": "Provides access to automated troubleshooting guides, support documentation, and direct Microsoft customer assistance.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.GetHelp",
|
|
||||||
"StoreId": "9PKDZBMV1H3T"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_OutlookForWindows": {
|
|
||||||
"Category": "Microsoft Apps",
|
|
||||||
"Content": "Outlook for Windows",
|
|
||||||
"Description": "Provides modern email management, calendar scheduling, and contact organization features.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.OutlookForWindows",
|
|
||||||
"StoreId": "9NRX63209R7B"
|
|
||||||
},
|
|
||||||
"WPFAppxMSTeams": {
|
|
||||||
"Category": "Microsoft Apps",
|
|
||||||
"Content": "Microsoft Teams",
|
|
||||||
"Description": "Facilitates instant messaging, video conferencing, file sharing, and workspace collaboration.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "MSTeams",
|
|
||||||
"StoreId": "XP8BT8DW290MPQ"
|
|
||||||
},
|
|
||||||
"WPFAppxClipchamp_Clipchamp": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Clipchamp",
|
|
||||||
"Description": "Provides a user-friendly video editor with built-in templates, effects, and timeline editing tools.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Clipchamp.Clipchamp",
|
|
||||||
"StoreId": "9P1J8S7CCWWT"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_MicrosoftOfficeHub": {
|
|
||||||
"Category": "Microsoft Apps",
|
|
||||||
"Content": "Microsoft 365",
|
|
||||||
"Description": "Serves as a centralized launcher and dashboard for accessing cloud-based Microsoft 365 apps and recent documents.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.MicrosoftOfficeHub",
|
|
||||||
"StoreId": "9WZDNCRD29V9"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_ZuneMusic": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Media Player",
|
|
||||||
"Description": "Plays local audio and video files with modern playlist management and casting capabilities.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.ZuneMusic",
|
|
||||||
"StoreId": "9WZDNCRFJ3PT"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_BingSearch": {
|
|
||||||
"Category": "Bing & Web Services",
|
|
||||||
"Content": "Bing Search",
|
|
||||||
"Description": "Integrates Microsoft Bing search capabilities and web services directly into the operating system.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.BingSearch",
|
|
||||||
"StoreId": "9NZBF4GT040C"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoftCorporationII_QuickAssist": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Quick Assist",
|
|
||||||
"Description": "Enables secure remote technical support and screen sharing over an internet connection.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "MicrosoftCorporationII.QuickAssist",
|
|
||||||
"StoreId": "9P7BP5VNWKX5"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_WindowsDevHome": {
|
|
||||||
"Category": "Developer Tools",
|
|
||||||
"Content": "Dev Home",
|
|
||||||
"Description": "Provides a specialized dashboard for software developer environment setups, repository syncing, and hardware widgets.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.Windows.DevHome",
|
|
||||||
"StoreId": "9N8MHTPHNGVV"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_WindowsCrossDevice": {
|
|
||||||
"Category": "Microsoft Ecosystem",
|
|
||||||
"Content": "Mobile Devices",
|
|
||||||
"Description": "Manages system-level background connectivity with paired mobile devices. Removing this may disable cross-device features such as phone screen mirroring, file transfer, and mobile hotspot handoff integrated into Windows Settings.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "MicrosoftWindows.CrossDevice",
|
|
||||||
"StoreId": "9NTXGKQ8P7N0"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_Todos": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "To Do",
|
|
||||||
"Description": "Creates, tracks, and synchronizes personal tasks, smart lists, and daily reminders.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.Todos",
|
|
||||||
"StoreId": "9NBLGGH5R558"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_PowerAutomateDesktop": {
|
|
||||||
"Category": "Developer Tools",
|
|
||||||
"Content": "Power Automate",
|
|
||||||
"Description": "Automates repetitive workflows and desktop tasks using low-code visual scripting.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.PowerAutomateDesktop",
|
|
||||||
"StoreId": "9NFTCH6J7FHV"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_YourPhone": {
|
|
||||||
"Category": "Microsoft Ecosystem",
|
|
||||||
"Content": "Phone Link",
|
|
||||||
"Description": "Synchronizes text messages, phone notifications, photos, and calls from a mobile device to the desktop.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.YourPhone",
|
|
||||||
"StoreId": "9NMPJ99VJBWV"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_MicrosoftStickyNotes": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Sticky Notes",
|
|
||||||
"Description": "Creates quick, floating text notes on the desktop that automatically sync across devices.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.MicrosoftStickyNotes",
|
|
||||||
"StoreId": "9NBLGGH4QGHW"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_WindowsSoundRecorder": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Sound Recorder",
|
|
||||||
"Description": "Records and trims live audio inputs with simple microphone adjustment controls.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.WindowsSoundRecorder",
|
|
||||||
"StoreId": "9WZDNCRFHWKN"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_WindowsAlarms": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Clock",
|
|
||||||
"Description": "Features world clocks, alarms, countdown timers, stopwatches, and dedicated focus session tracking.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.WindowsAlarms",
|
|
||||||
"StoreId": "9WZDNCRFJ3PR"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_Paint": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Paint",
|
|
||||||
"Description": "Provides built-in digital sketching, basic image editing, and pixel-level graphic manipulation tools.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.Paint",
|
|
||||||
"StoreId": "9PCFS5B6T72H"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_WindowsNotepad": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Notepad",
|
|
||||||
"Description": "Provides a lightweight text editor with multi-tab support for plain text files and code snippets.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.WindowsNotepad",
|
|
||||||
"StoreId": "9MSMLRH6LZF3"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_ScreenSketch": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Snipping Tool",
|
|
||||||
"Description": "Captures screenshots or screen recordings with built-in markup, image cropping, and optical character recognition (OCR).",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.ScreenSketch",
|
|
||||||
"StoreId": "9MZ95KL8MR0L"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_Copilot": {
|
|
||||||
"Category": "Bing & Web Services",
|
|
||||||
"Content": "Copilot",
|
|
||||||
"Description": "Launches the Microsoft AI companion for contextual answers, creative writing assistance, and intelligent web search.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.Copilot",
|
|
||||||
"StoreId": "9NHT9RB2F4HD"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_WindowsCalculator": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Calculator",
|
|
||||||
"Description": "Performs standard arithmetic, scientific operations, programming calculations, and unit conversions.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.WindowsCalculator",
|
|
||||||
"StoreId": "9WZDNCRFHVN5"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_WindowsCamera": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Camera",
|
|
||||||
"Description": "Captures photographs and records video files via connected webcams or imaging hardware.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.WindowsCamera",
|
|
||||||
"StoreId": "9WZDNCRFJBBG"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_WindowsPhotos": {
|
|
||||||
"Category": "Utilities & Productivity",
|
|
||||||
"Content": "Photos",
|
|
||||||
"Description": "Organizes, views, and crops local images with basic color adjustment and album creation tools.",
|
|
||||||
"Panel": "0",
|
|
||||||
"PackageId": "Microsoft.Windows.Photos",
|
|
||||||
"StoreId": "9WZDNCRFJBH4"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_BingNews": {
|
|
||||||
"Category": "Bing & Web Services",
|
|
||||||
"Content": "News",
|
|
||||||
"Description": "Aggregates breaking news headlines, personalized article feeds, and world current events.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.BingNews",
|
|
||||||
"StoreId": "9WZDNCRFHVFW"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_BingWeather": {
|
|
||||||
"Category": "Bing & Web Services",
|
|
||||||
"Content": "Weather",
|
|
||||||
"Description": "Displays local real-time weather tracking, radar maps, and historical meteorological forecasts.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.BingWeather",
|
|
||||||
"StoreId": "9WZDNCRFJ3Q2"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_GamingApp": {
|
|
||||||
"Category": "Xbox & Gaming",
|
|
||||||
"Content": "Xbox App",
|
|
||||||
"Description": "Serves as the primary gaming library manager, social community interface, and PC Game Pass dashboard.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.GamingApp",
|
|
||||||
"StoreId": "9MV0B5HZVK9Z"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_XboxGamingOverlay": {
|
|
||||||
"Category": "Xbox & Gaming",
|
|
||||||
"Content": "Xbox Game Bar",
|
|
||||||
"Description": "Provides customizable in-game status widgets, audio balancing sliders, system monitoring tools, and gameplay recording.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.XboxGamingOverlay",
|
|
||||||
"StoreId": "9NZKPSTSNW4P"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_XboxIdentityProvider": {
|
|
||||||
"Category": "Xbox & Gaming",
|
|
||||||
"Content": "Xbox Identity Provider",
|
|
||||||
"Description": "Manages Xbox network user authentication and background account validation for connected titles. Warning: removing this may break Microsoft account sign-in for non-Xbox games and apps that rely on this authentication pipeline.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.XboxIdentityProvider",
|
|
||||||
"StoreId": "9WZDNCRD1HKW"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_XboxSpeechToTextOverlay": {
|
|
||||||
"Category": "Xbox & Gaming",
|
|
||||||
"Content": "Xbox Speech To Text Overlay",
|
|
||||||
"Description": "Provides system-level live accessibility captions and voice-to-text translation for gaming chat networks.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.XboxSpeechToTextOverlay"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_Xbox_TCUI": {
|
|
||||||
"Category": "Xbox & Gaming",
|
|
||||||
"Content": "Xbox TCUI",
|
|
||||||
"Description": "Provides core account connection UI modules for single sign-on flows within game titles. Warning: removing this may break Microsoft account authentication in games and apps that do not otherwise require the Xbox app.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.Xbox.TCUI"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_StartExperiencesApp": {
|
|
||||||
"Category": "Bing & Web Services",
|
|
||||||
"Content": "Start Experiences App",
|
|
||||||
"Description": "Powers the Windows Widgets board, delivering a personalized feed of news, weather, sports, and finance content.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.StartExperiencesApp",
|
|
||||||
"StoreId": "9PC1H9VN18CM"
|
|
||||||
},
|
|
||||||
"WPFAppxMicrosoft_MicrosoftSolitaireCollection": {
|
|
||||||
"Category": "Xbox & Gaming",
|
|
||||||
"Content": "Solitaire Collection",
|
|
||||||
"Description": "Bundles built-in card game modes including Klondike, Spider, FreeCell, Pyramid, and TriPeaks alongside daily challenges.",
|
|
||||||
"Panel": "1",
|
|
||||||
"PackageId": "Microsoft.MicrosoftSolitaireCollection"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -3,56 +3,48 @@
|
|||||||
"Primary": "8.8.8.8",
|
"Primary": "8.8.8.8",
|
||||||
"Secondary": "8.8.4.4",
|
"Secondary": "8.8.4.4",
|
||||||
"Primary6": "2001:4860:4860::8888",
|
"Primary6": "2001:4860:4860::8888",
|
||||||
"Secondary6": "2001:4860:4860::8844",
|
"Secondary6": "2001:4860:4860::8844"
|
||||||
"DohTemplate": "https://dns.google/dns-query"
|
|
||||||
},
|
},
|
||||||
"Cloudflare":{
|
"Cloudflare":{
|
||||||
"Primary": "1.1.1.1",
|
"Primary": "1.1.1.1",
|
||||||
"Secondary": "1.0.0.1",
|
"Secondary": "1.0.0.1",
|
||||||
"Primary6": "2606:4700:4700::1111",
|
"Primary6": "2606:4700:4700::1111",
|
||||||
"Secondary6": "2606:4700:4700::1001",
|
"Secondary6": "2606:4700:4700::1001"
|
||||||
"DohTemplate": "https://cloudflare-dns.com/dns-query"
|
|
||||||
},
|
},
|
||||||
"Cloudflare_Malware":{
|
"Cloudflare_Malware":{
|
||||||
"Primary": "1.1.1.2",
|
"Primary": "1.1.1.2",
|
||||||
"Secondary": "1.0.0.2",
|
"Secondary": "1.0.0.2",
|
||||||
"Primary6": "2606:4700:4700::1112",
|
"Primary6": "2606:4700:4700::1112",
|
||||||
"Secondary6": "2606:4700:4700::1002",
|
"Secondary6": "2606:4700:4700::1002"
|
||||||
"DohTemplate": "https://security.cloudflare-dns.com/dns-query"
|
|
||||||
},
|
},
|
||||||
"Cloudflare_Malware_Adult":{
|
"Cloudflare_Malware_Adult":{
|
||||||
"Primary": "1.1.1.3",
|
"Primary": "1.1.1.3",
|
||||||
"Secondary": "1.0.0.3",
|
"Secondary": "1.0.0.3",
|
||||||
"Primary6": "2606:4700:4700::1113",
|
"Primary6": "2606:4700:4700::1113",
|
||||||
"Secondary6": "2606:4700:4700::1003",
|
"Secondary6": "2606:4700:4700::1003"
|
||||||
"DohTemplate": "https://family.cloudflare-dns.com/dns-query"
|
|
||||||
},
|
},
|
||||||
"Open_DNS":{
|
"Open_DNS":{
|
||||||
"Primary": "208.67.222.222",
|
"Primary": "208.67.222.222",
|
||||||
"Secondary": "208.67.220.220",
|
"Secondary": "208.67.220.220",
|
||||||
"Primary6": "2620:119:35::35",
|
"Primary6": "2620:119:35::35",
|
||||||
"Secondary6": "2620:119:53::53",
|
"Secondary6": "2620:119:53::53"
|
||||||
"DohTemplate": "https://doh.opendns.com/dns-query"
|
|
||||||
},
|
},
|
||||||
"Quad9":{
|
"Quad9":{
|
||||||
"Primary": "9.9.9.9",
|
"Primary": "9.9.9.9",
|
||||||
"Secondary": "149.112.112.112",
|
"Secondary": "149.112.112.112",
|
||||||
"Primary6": "2620:fe::fe",
|
"Primary6": "2620:fe::fe",
|
||||||
"Secondary6": "2620:fe::9",
|
"Secondary6": "2620:fe::9"
|
||||||
"DohTemplate": "https://dns.quad9.net/dns-query"
|
|
||||||
},
|
},
|
||||||
"AdGuard_Ads_Trackers":{
|
"AdGuard_Ads_Trackers":{
|
||||||
"Primary": "94.140.14.14",
|
"Primary": "94.140.14.14",
|
||||||
"Secondary": "94.140.15.15",
|
"Secondary": "94.140.15.15",
|
||||||
"Primary6": "2a10:50c0::ad1:ff",
|
"Primary6": "2a10:50c0::ad1:ff",
|
||||||
"Secondary6": "2a10:50c0::ad2:ff",
|
"Secondary6": "2a10:50c0::ad2:ff"
|
||||||
"DohTemplate": "https://dns.adguard-dns.com/dns-query"
|
|
||||||
},
|
},
|
||||||
"AdGuard_Ads_Trackers_Malware_Adult":{
|
"AdGuard_Ads_Trackers_Malware_Adult":{
|
||||||
"Primary": "94.140.14.15",
|
"Primary": "94.140.14.15",
|
||||||
"Secondary": "94.140.15.16",
|
"Secondary": "94.140.15.16",
|
||||||
"Primary6": "2a10:50c0::bad1:ff",
|
"Primary6": "2a10:50c0::bad1:ff",
|
||||||
"Secondary6": "2a10:50c0::bad2:ff",
|
"Secondary6": "2a10:50c0::bad2:ff"
|
||||||
"DohTemplate": "https://family.adguard-dns.com/dns-query"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"NetFx3"
|
"NetFx3"
|
||||||
],
|
],
|
||||||
"InvokeScript": [],
|
"InvokeScript": [],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/dotnet"
|
"link": "https://winutil.christitus.com/dev/features/features/dotnet"
|
||||||
},
|
},
|
||||||
"WPFFixesNTPPool": {
|
"WPFFixesNTPPool": {
|
||||||
"Content": "NTP Server - Enable",
|
"Content": "NTP Server - Enable",
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WPFFixesNTPPool",
|
"function": "Invoke-WPFFixesNTPPool",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/fixes/ntppool"
|
"link": "https://winutil.christitus.com/dev/features/fixes/ntppool"
|
||||||
},
|
},
|
||||||
"WPFFeatureshyperv": {
|
"WPFFeatureshyperv": {
|
||||||
"Content": "Hyper-V - Enable",
|
"Content": "Hyper-V - Enable",
|
||||||
@@ -29,7 +29,10 @@
|
|||||||
"feature": [
|
"feature": [
|
||||||
"Microsoft-Hyper-V-All"
|
"Microsoft-Hyper-V-All"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/hyperv"
|
"InvokeScript": [
|
||||||
|
"bcdedit /set hypervisorschedulertype classic"
|
||||||
|
],
|
||||||
|
"link": "https://winutil.christitus.com/dev/features/features/hyperv"
|
||||||
},
|
},
|
||||||
"WPFFeatureslegacymedia": {
|
"WPFFeatureslegacymedia": {
|
||||||
"Content": "Legacy Media Components (WMP, DirectPlay) - Enable",
|
"Content": "Legacy Media Components (WMP, DirectPlay) - Enable",
|
||||||
@@ -43,7 +46,7 @@
|
|||||||
"LegacyComponents"
|
"LegacyComponents"
|
||||||
],
|
],
|
||||||
"InvokeScript": [],
|
"InvokeScript": [],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/legacymedia"
|
"link": "https://winutil.christitus.com/dev/features/features/legacymedia"
|
||||||
},
|
},
|
||||||
"WPFFeaturewsl": {
|
"WPFFeaturewsl": {
|
||||||
"Content": "Windows Subsystem for Linux (WSL) - Enable",
|
"Content": "Windows Subsystem for Linux (WSL) - Enable",
|
||||||
@@ -55,7 +58,7 @@
|
|||||||
"Microsoft-Windows-Subsystem-Linux"
|
"Microsoft-Windows-Subsystem-Linux"
|
||||||
],
|
],
|
||||||
"InvokeScript": [],
|
"InvokeScript": [],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/wsl"
|
"link": "https://winutil.christitus.com/dev/features/features/wsl"
|
||||||
},
|
},
|
||||||
"WPFFeaturenfs": {
|
"WPFFeaturenfs": {
|
||||||
"Content": "Network File System (NFS) - Enable",
|
"Content": "Network File System (NFS) - Enable",
|
||||||
@@ -74,7 +77,7 @@
|
|||||||
"nfsadmin client start",
|
"nfsadmin client start",
|
||||||
"nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i"
|
"nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/nfs"
|
"link": "https://winutil.christitus.com/dev/features/features/nfs"
|
||||||
},
|
},
|
||||||
"WPFFeatureRegBackup": {
|
"WPFFeatureRegBackup": {
|
||||||
"Content": "Registry Backup (Daily Task 12:30am) - Enable",
|
"Content": "Registry Backup (Daily Task 12:30am) - Enable",
|
||||||
@@ -91,7 +94,7 @@
|
|||||||
Register-ScheduledTask -Action $action -Trigger $trigger -TaskName 'AutoRegBackup' -Description 'Create System Registry Backups' -User 'System'
|
Register-ScheduledTask -Action $action -Trigger $trigger -TaskName 'AutoRegBackup' -Description 'Create System Registry Backups' -User 'System'
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/regbackup"
|
"link": "https://winutil.christitus.com/dev/features/features/regbackup"
|
||||||
},
|
},
|
||||||
"WPFFeatureEnableLegacyRecovery": {
|
"WPFFeatureEnableLegacyRecovery": {
|
||||||
"Content": "Legacy F8 Boot Recovery - Enable",
|
"Content": "Legacy F8 Boot Recovery - Enable",
|
||||||
@@ -102,7 +105,7 @@
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"bcdedit /set bootmenupolicy legacy"
|
"bcdedit /set bootmenupolicy legacy"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/enablelegacyrecovery"
|
"link": "https://winutil.christitus.com/dev/features/features/enablelegacyrecovery"
|
||||||
},
|
},
|
||||||
"WPFFeatureDisableLegacyRecovery": {
|
"WPFFeatureDisableLegacyRecovery": {
|
||||||
"Content": "Legacy F8 Boot Recovery - Disable",
|
"Content": "Legacy F8 Boot Recovery - Disable",
|
||||||
@@ -113,7 +116,7 @@
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"bcdedit /set bootmenupolicy standard"
|
"bcdedit /set bootmenupolicy standard"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/disablelegacyrecovery"
|
"link": "https://winutil.christitus.com/dev/features/features/disablelegacyrecovery"
|
||||||
},
|
},
|
||||||
"WPFFeaturesSandbox": {
|
"WPFFeaturesSandbox": {
|
||||||
"Content": "Windows Sandbox - Enable",
|
"Content": "Windows Sandbox - Enable",
|
||||||
@@ -123,7 +126,7 @@
|
|||||||
"feature": [
|
"feature": [
|
||||||
"Containers-DisposableClientVM"
|
"Containers-DisposableClientVM"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/sandbox"
|
"link": "https://winutil.christitus.com/dev/features/features/sandbox"
|
||||||
},
|
},
|
||||||
"WPFFeatureInstall": {
|
"WPFFeatureInstall": {
|
||||||
"Content": "Install Features",
|
"Content": "Install Features",
|
||||||
@@ -132,7 +135,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WPFFeatureInstall",
|
"function": "Invoke-WPFFeatureInstall",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/features/install"
|
"link": "https://winutil.christitus.com/dev/features/features/install"
|
||||||
},
|
},
|
||||||
"WPFPanelAutologin": {
|
"WPFPanelAutologin": {
|
||||||
"Content": "AutoLogon - Run",
|
"Content": "AutoLogon - Run",
|
||||||
@@ -141,7 +144,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WPFPanelAutologin",
|
"function": "Invoke-WPFPanelAutologin",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/fixes/autologin"
|
"link": "https://winutil.christitus.com/dev/features/fixes/autologin"
|
||||||
},
|
},
|
||||||
"WPFFixesUpdate": {
|
"WPFFixesUpdate": {
|
||||||
"Content": "Windows Update - Reset",
|
"Content": "Windows Update - Reset",
|
||||||
@@ -150,7 +153,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WPFFixesUpdate",
|
"function": "Invoke-WPFFixesUpdate",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/fixes/update"
|
"link": "https://winutil.christitus.com/dev/features/fixes/update"
|
||||||
},
|
},
|
||||||
"WPFFixesNetwork": {
|
"WPFFixesNetwork": {
|
||||||
"Content": "Network - Reset",
|
"Content": "Network - Reset",
|
||||||
@@ -159,7 +162,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WPFFixesNetwork",
|
"function": "Invoke-WPFFixesNetwork",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/fixes/network"
|
"link": "https://winutil.christitus.com/dev/features/fixes/network"
|
||||||
},
|
},
|
||||||
"WPFPanelDISM": {
|
"WPFPanelDISM": {
|
||||||
"Content": "System Corruption Scan - Run",
|
"Content": "System Corruption Scan - Run",
|
||||||
@@ -168,7 +171,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WPFSystemRepair",
|
"function": "Invoke-WPFSystemRepair",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/fixes/dism"
|
"link": "https://winutil.christitus.com/dev/features/fixes/dism"
|
||||||
},
|
},
|
||||||
"WPFFixesWinget": {
|
"WPFFixesWinget": {
|
||||||
"Content": "WinGet - Reinstall",
|
"Content": "WinGet - Reinstall",
|
||||||
@@ -177,18 +180,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WPFFixesWinget",
|
"function": "Invoke-WPFFixesWinget",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/fixes/winget"
|
"link": "https://winutil.christitus.com/dev/features/fixes/winget"
|
||||||
},
|
|
||||||
"WPFPanelComputer": {
|
|
||||||
"Content": "Computer Management",
|
|
||||||
"category": "Legacy Windows Panels",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Button",
|
|
||||||
"ButtonWidth": "300",
|
|
||||||
"InvokeScript": [
|
|
||||||
"compmgmt.msc"
|
|
||||||
],
|
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/computer"
|
|
||||||
},
|
},
|
||||||
"WPFPanelControl": {
|
"WPFPanelControl": {
|
||||||
"Content": "Control Panel",
|
"Content": "Control Panel",
|
||||||
@@ -199,18 +191,18 @@
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"control"
|
"control"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/control"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/control"
|
||||||
},
|
},
|
||||||
"WPFPanelMouse": {
|
"WPFPanelComputer": {
|
||||||
"Content": "Mouse Properties",
|
"Content": "Computer Management",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"main.cpl"
|
"compmgmt.msc"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/mouse"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/computer"
|
||||||
},
|
},
|
||||||
"WPFPanelNetwork": {
|
"WPFPanelNetwork": {
|
||||||
"Content": "Network Connections",
|
"Content": "Network Connections",
|
||||||
@@ -221,7 +213,7 @@
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"ncpa.cpl"
|
"ncpa.cpl"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/network"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/network"
|
||||||
},
|
},
|
||||||
"WPFPanelPower": {
|
"WPFPanelPower": {
|
||||||
"Content": "Power Panel",
|
"Content": "Power Panel",
|
||||||
@@ -232,7 +224,7 @@
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"powercfg.cpl"
|
"powercfg.cpl"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/power"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/power"
|
||||||
},
|
},
|
||||||
"WPFPanelPrinter": {
|
"WPFPanelPrinter": {
|
||||||
"Content": "Printer Panel",
|
"Content": "Printer Panel",
|
||||||
@@ -243,18 +235,7 @@
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"Start-Process 'shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A}'"
|
"Start-Process 'shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A}'"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/printer"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/printer"
|
||||||
},
|
|
||||||
"WPFPanelPrograms": {
|
|
||||||
"Content": "Programs and Features",
|
|
||||||
"category": "Legacy Windows Panels",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Button",
|
|
||||||
"ButtonWidth": "300",
|
|
||||||
"InvokeScript": [
|
|
||||||
"appwiz.cpl"
|
|
||||||
],
|
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/programs"
|
|
||||||
},
|
},
|
||||||
"WPFPanelRegion": {
|
"WPFPanelRegion": {
|
||||||
"Content": "Region",
|
"Content": "Region",
|
||||||
@@ -265,62 +246,7 @@
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"intl.cpl"
|
"intl.cpl"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/region"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/region"
|
||||||
},
|
|
||||||
"WPFPanelSecurity": {
|
|
||||||
"Content": "Security and Maintenance",
|
|
||||||
"category": "Legacy Windows Panels",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Button",
|
|
||||||
"ButtonWidth": "300",
|
|
||||||
"InvokeScript": [
|
|
||||||
"wscui.cpl"
|
|
||||||
],
|
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/security"
|
|
||||||
},
|
|
||||||
"WPFPanelSound": {
|
|
||||||
"Content": "Sound Settings",
|
|
||||||
"category": "Legacy Windows Panels",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Button",
|
|
||||||
"ButtonWidth": "300",
|
|
||||||
"InvokeScript": [
|
|
||||||
"mmsys.cpl"
|
|
||||||
],
|
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/sound"
|
|
||||||
},
|
|
||||||
"WPFPanelSystem": {
|
|
||||||
"Content": "System Properties",
|
|
||||||
"category": "Legacy Windows Panels",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Button",
|
|
||||||
"ButtonWidth": "300",
|
|
||||||
"InvokeScript": [
|
|
||||||
"sysdm.cpl"
|
|
||||||
],
|
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/system"
|
|
||||||
},
|
|
||||||
"WPFPanelTimedate": {
|
|
||||||
"Content": "Time and Date",
|
|
||||||
"category": "Legacy Windows Panels",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Button",
|
|
||||||
"ButtonWidth": "300",
|
|
||||||
"InvokeScript": [
|
|
||||||
"timedate.cpl"
|
|
||||||
],
|
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/timedate"
|
|
||||||
},
|
|
||||||
"WPFPanelFirewall": {
|
|
||||||
"Content": "Windows Defender Firewall",
|
|
||||||
"category": "Legacy Windows Panels",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Button",
|
|
||||||
"ButtonWidth": "300",
|
|
||||||
"InvokeScript": [
|
|
||||||
"firewall.cpl"
|
|
||||||
],
|
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/firewall"
|
|
||||||
},
|
},
|
||||||
"WPFPanelRestore": {
|
"WPFPanelRestore": {
|
||||||
"Content": "Windows Restore",
|
"Content": "Windows Restore",
|
||||||
@@ -331,7 +257,40 @@
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"rstrui.exe"
|
"rstrui.exe"
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/legacy-windows-panels/restore"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/restore"
|
||||||
|
},
|
||||||
|
"WPFPanelSound": {
|
||||||
|
"Content": "Sound Settings",
|
||||||
|
"category": "Legacy Windows Panels",
|
||||||
|
"panel": "2",
|
||||||
|
"Type": "Button",
|
||||||
|
"ButtonWidth": "300",
|
||||||
|
"InvokeScript": [
|
||||||
|
"mmsys.cpl"
|
||||||
|
],
|
||||||
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/sound"
|
||||||
|
},
|
||||||
|
"WPFPanelSystem": {
|
||||||
|
"Content": "System Properties",
|
||||||
|
"category": "Legacy Windows Panels",
|
||||||
|
"panel": "2",
|
||||||
|
"Type": "Button",
|
||||||
|
"ButtonWidth": "300",
|
||||||
|
"InvokeScript": [
|
||||||
|
"sysdm.cpl"
|
||||||
|
],
|
||||||
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/system"
|
||||||
|
},
|
||||||
|
"WPFPanelTimedate": {
|
||||||
|
"Content": "Time and Date",
|
||||||
|
"category": "Legacy Windows Panels",
|
||||||
|
"panel": "2",
|
||||||
|
"Type": "Button",
|
||||||
|
"ButtonWidth": "300",
|
||||||
|
"InvokeScript": [
|
||||||
|
"timedate.cpl"
|
||||||
|
],
|
||||||
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/timedate"
|
||||||
},
|
},
|
||||||
"WPFWinUtilInstallPSProfile": {
|
"WPFWinUtilInstallPSProfile": {
|
||||||
"Content": "CTT PowerShell Profile - Install",
|
"Content": "CTT PowerShell Profile - Install",
|
||||||
@@ -340,7 +299,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WinUtilInstallPSProfile",
|
"function": "Invoke-WinUtilInstallPSProfile",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/powershell-profile-powershell-7--only/installpsprofile"
|
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/installpsprofile"
|
||||||
},
|
},
|
||||||
"WPFWinUtilUninstallPSProfile": {
|
"WPFWinUtilUninstallPSProfile": {
|
||||||
"Content": "CTT PowerShell Profile - Remove",
|
"Content": "CTT PowerShell Profile - Remove",
|
||||||
@@ -349,7 +308,7 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WinUtilUninstallPSProfile",
|
"function": "Invoke-WinUtilUninstallPSProfile",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/powershell-profile-powershell-7--only/uninstallpsprofile"
|
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/uninstallpsprofile"
|
||||||
},
|
},
|
||||||
"WPFWinUtilSSHServer": {
|
"WPFWinUtilSSHServer": {
|
||||||
"Content": "OpenSSH Server - Enable",
|
"Content": "OpenSSH Server - Enable",
|
||||||
@@ -358,6 +317,6 @@
|
|||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
"ButtonWidth": "300",
|
"ButtonWidth": "300",
|
||||||
"function": "Invoke-WPFSSHServer",
|
"function": "Invoke-WPFSSHServer",
|
||||||
"link": "https://winutil.christitus.com/code-reference/features/remote-access/sshserver"
|
"link": "https://winutil.christitus.com/dev/features/remote-access/sshserver"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,31 +4,34 @@
|
|||||||
"WPFTweaksConsumerFeatures",
|
"WPFTweaksConsumerFeatures",
|
||||||
"WPFTweaksDisableExplorerAutoDiscovery",
|
"WPFTweaksDisableExplorerAutoDiscovery",
|
||||||
"WPFTweaksWPBT",
|
"WPFTweaksWPBT",
|
||||||
|
"WPFTweaksDVR",
|
||||||
|
"WPFTweaksDeBloat",
|
||||||
"WPFTweaksLocation",
|
"WPFTweaksLocation",
|
||||||
"WPFTweaksServices",
|
"WPFTweaksServices",
|
||||||
"WPFTweaksTelemetry",
|
"WPFTweaksTelemetry",
|
||||||
"WPFTweaksDeliveryOptimization",
|
|
||||||
"WPFTweaksDiskCleanup",
|
"WPFTweaksDiskCleanup",
|
||||||
"WPFTweaksDeleteTempFiles",
|
"WPFTweaksDeleteTempFiles",
|
||||||
"WPFTweaksEndTaskOnTaskbar",
|
"WPFTweaksEndTaskOnTaskbar",
|
||||||
"WPFTweaksRestorePoint"
|
"WPFTweaksRestorePoint",
|
||||||
|
"WPFTweaksPowershell7Tele"
|
||||||
],
|
],
|
||||||
"Minimal": [
|
"Minimal": [
|
||||||
"WPFTweaksConsumerFeatures",
|
"WPFTweaksConsumerFeatures",
|
||||||
|
"WPFTweaksDeBloat",
|
||||||
"WPFTweaksWPBT",
|
"WPFTweaksWPBT",
|
||||||
"WPFTweaksServices",
|
"WPFTweaksServices",
|
||||||
"WPFTweaksTelemetry"
|
"WPFTweaksTelemetry"
|
||||||
],
|
],
|
||||||
"Advanced": [
|
"Advanced": [
|
||||||
"WPFTweaksRestorePoint",
|
|
||||||
"WPFTweaksActivity",
|
"WPFTweaksActivity",
|
||||||
"WPFTweaksConsumerFeatures",
|
"WPFTweaksConsumerFeatures",
|
||||||
"WPFTweaksDisableExplorerAutoDiscovery",
|
"WPFTweaksDisableExplorerAutoDiscovery",
|
||||||
"WPFTweaksWPBT",
|
"WPFTweaksWPBT",
|
||||||
|
"WPFTweaksDVR",
|
||||||
|
"WPFTweaksDeBloat",
|
||||||
"WPFTweaksLocation",
|
"WPFTweaksLocation",
|
||||||
"WPFTweaksServices",
|
"WPFTweaksServices",
|
||||||
"WPFTweaksTelemetry",
|
"WPFTweaksTelemetry",
|
||||||
"WPFTweaksDeliveryOptimization",
|
|
||||||
"WPFTweaksDeleteTempFiles",
|
"WPFTweaksDeleteTempFiles",
|
||||||
"WPFTweaksEndTaskOnTaskbar",
|
"WPFTweaksEndTaskOnTaskbar",
|
||||||
"WPFTweaksDisableStoreSearch",
|
"WPFTweaksDisableStoreSearch",
|
||||||
@@ -36,26 +39,7 @@
|
|||||||
"WPFTweaksWidget",
|
"WPFTweaksWidget",
|
||||||
"WPFTweaksRemoveOneDrive",
|
"WPFTweaksRemoveOneDrive",
|
||||||
"WPFTweaksWindowsAI",
|
"WPFTweaksWindowsAI",
|
||||||
"WPFTweaksRightClickMenu"
|
"WPFTweaksRightClickMenu",
|
||||||
],
|
"WPFTweaksPowershell7Tele"
|
||||||
"AppxDefault": [
|
|
||||||
"WPFAppxMicrosoft_WindowsFeedbackHub",
|
|
||||||
"WPFAppxMicrosoft_GetHelp",
|
|
||||||
"WPFAppxMicrosoft_MicrosoftOfficeHub",
|
|
||||||
"WPFAppxMicrosoft_WindowsCalculator",
|
|
||||||
"WPFAppxClipchamp_Clipchamp",
|
|
||||||
"WPFAppxMicrosoft_WindowsAlarms",
|
|
||||||
"WPFAppxMicrosoftCorporationII_QuickAssist",
|
|
||||||
"WPFAppxMicrosoft_WindowsSoundRecorder",
|
|
||||||
"WPFAppxMicrosoft_MicrosoftStickyNotes",
|
|
||||||
"WPFAppxMicrosoft_Todos",
|
|
||||||
"WPFAppxMicrosoft_MicrosoftSolitaireCollection",
|
|
||||||
"WPFAppxMicrosoft_PowerAutomateDesktop",
|
|
||||||
"WPFAppxMicrosoft_WindowsDevHome",
|
|
||||||
"WPFAppxMicrosoft_BingWeather",
|
|
||||||
"WPFAppxMicrosoft_StartExperiencesApp",
|
|
||||||
"WPFAppxMicrosoft_BingNews",
|
|
||||||
"WPFAppxMicrosoft_Copilot",
|
|
||||||
"WPFAppxMicrosoft_BingSearch"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
{
|
{
|
||||||
"shared": {
|
"shared": {
|
||||||
"AppEntryWidth": "220",
|
"AppEntryWidth": "200",
|
||||||
"AppEntryFontSize": "13.2",
|
"AppEntryFontSize": "11",
|
||||||
"AppEntryIconSize": "28",
|
"AppEntryMargin": "1,0,1,0",
|
||||||
"AppEntryMargin": "3",
|
"AppEntryBorderThickness": "0",
|
||||||
"AppEntryBorderThickness": "1",
|
|
||||||
"CustomDialogFontSize": "12",
|
"CustomDialogFontSize": "12",
|
||||||
"CustomDialogFontSizeHeader": "14",
|
"CustomDialogFontSizeHeader": "14",
|
||||||
"CustomDialogLogoSize": "25",
|
"CustomDialogLogoSize": "25",
|
||||||
@@ -25,7 +24,7 @@
|
|||||||
"IconFontSize": "14",
|
"IconFontSize": "14",
|
||||||
"IconButtonSize": "35",
|
"IconButtonSize": "35",
|
||||||
"SettingsIconFontSize": "18",
|
"SettingsIconFontSize": "18",
|
||||||
"CloseIconFontSize": "12",
|
"CloseIconFontSize": "18",
|
||||||
"GroupBorderBackgroundColor": "#232629",
|
"GroupBorderBackgroundColor": "#232629",
|
||||||
"ButtonFontSize": "12",
|
"ButtonFontSize": "12",
|
||||||
"ButtonFontFamily": "Arial",
|
"ButtonFontFamily": "Arial",
|
||||||
@@ -46,6 +45,7 @@
|
|||||||
"AppInstallUnselectedColor": "#F7F7F7",
|
"AppInstallUnselectedColor": "#F7F7F7",
|
||||||
"AppInstallHighlightedColor": "#CFCFCF",
|
"AppInstallHighlightedColor": "#CFCFCF",
|
||||||
"AppInstallSelectedColor": "#C2C2C2",
|
"AppInstallSelectedColor": "#C2C2C2",
|
||||||
|
"AppInstallOverlayBackgroundColor": "#6A6D72",
|
||||||
"ComboBoxForegroundColor": "#232629",
|
"ComboBoxForegroundColor": "#232629",
|
||||||
"ComboBoxBackgroundColor": "#F7F7F7",
|
"ComboBoxBackgroundColor": "#F7F7F7",
|
||||||
"LabelboxForegroundColor": "#232629",
|
"LabelboxForegroundColor": "#232629",
|
||||||
@@ -59,18 +59,17 @@
|
|||||||
"ScrollBarDraggingColor": "#6A6D72",
|
"ScrollBarDraggingColor": "#6A6D72",
|
||||||
"ProgressBarForegroundColor": "#2E77FF",
|
"ProgressBarForegroundColor": "#2E77FF",
|
||||||
"ProgressBarBackgroundColor": "Transparent",
|
"ProgressBarBackgroundColor": "Transparent",
|
||||||
|
"ProgressBarTextColor": "#232629",
|
||||||
"ButtonInstallBackgroundColor": "#F7F7F7",
|
"ButtonInstallBackgroundColor": "#F7F7F7",
|
||||||
"ButtonTweaksBackgroundColor": "#F7F7F7",
|
"ButtonTweaksBackgroundColor": "#F7F7F7",
|
||||||
"ButtonConfigBackgroundColor": "#F7F7F7",
|
"ButtonConfigBackgroundColor": "#F7F7F7",
|
||||||
"ButtonUpdatesBackgroundColor": "#F7F7F7",
|
"ButtonUpdatesBackgroundColor": "#F7F7F7",
|
||||||
"ButtonWin11ISOBackgroundColor": "#F7F7F7",
|
"ButtonWin11ISOBackgroundColor": "#F7F7F7",
|
||||||
"ButtonAppxBackgroundColor": "#F7F7F7",
|
|
||||||
"ButtonInstallForegroundColor": "#232629",
|
"ButtonInstallForegroundColor": "#232629",
|
||||||
"ButtonTweaksForegroundColor": "#232629",
|
"ButtonTweaksForegroundColor": "#232629",
|
||||||
"ButtonConfigForegroundColor": "#232629",
|
"ButtonConfigForegroundColor": "#232629",
|
||||||
"ButtonUpdatesForegroundColor": "#232629",
|
"ButtonUpdatesForegroundColor": "#232629",
|
||||||
"ButtonWin11ISOForegroundColor": "#232629",
|
"ButtonWin11ISOForegroundColor": "#232629",
|
||||||
"ButtonAppxForegroundColor": "#232629",
|
|
||||||
"ButtonBackgroundColor": "#F5F5F5",
|
"ButtonBackgroundColor": "#F5F5F5",
|
||||||
"ButtonBackgroundPressedColor": "#1A1A1A",
|
"ButtonBackgroundPressedColor": "#1A1A1A",
|
||||||
"ButtonBackgroundMouseoverColor": "#C2C2C2",
|
"ButtonBackgroundMouseoverColor": "#C2C2C2",
|
||||||
@@ -86,6 +85,7 @@
|
|||||||
"AppInstallUnselectedColor": "#232629",
|
"AppInstallUnselectedColor": "#232629",
|
||||||
"AppInstallHighlightedColor": "#3C3C3C",
|
"AppInstallHighlightedColor": "#3C3C3C",
|
||||||
"AppInstallSelectedColor": "#4C4C4C",
|
"AppInstallSelectedColor": "#4C4C4C",
|
||||||
|
"AppInstallOverlayBackgroundColor": "#2E3135",
|
||||||
"ComboBoxForegroundColor": "#F7F7F7",
|
"ComboBoxForegroundColor": "#F7F7F7",
|
||||||
"ComboBoxBackgroundColor": "#1E3747",
|
"ComboBoxBackgroundColor": "#1E3747",
|
||||||
"LabelboxForegroundColor": "#5BDCFF",
|
"LabelboxForegroundColor": "#5BDCFF",
|
||||||
@@ -97,20 +97,19 @@
|
|||||||
"ScrollBarBackgroundColor": "#2E3135",
|
"ScrollBarBackgroundColor": "#2E3135",
|
||||||
"ScrollBarHoverColor": "#3B4252",
|
"ScrollBarHoverColor": "#3B4252",
|
||||||
"ScrollBarDraggingColor": "#5E81AC",
|
"ScrollBarDraggingColor": "#5E81AC",
|
||||||
"ProgressBarForegroundColor": "#6EFF72",
|
"ProgressBarForegroundColor": "#222222",
|
||||||
"ProgressBarBackgroundColor": "Transparent",
|
"ProgressBarBackgroundColor": "Transparent",
|
||||||
|
"ProgressBarTextColor": "#232629",
|
||||||
"ButtonInstallBackgroundColor": "#222222",
|
"ButtonInstallBackgroundColor": "#222222",
|
||||||
"ButtonTweaksBackgroundColor": "#333333",
|
"ButtonTweaksBackgroundColor": "#333333",
|
||||||
"ButtonConfigBackgroundColor": "#444444",
|
"ButtonConfigBackgroundColor": "#444444",
|
||||||
"ButtonUpdatesBackgroundColor": "#555555",
|
"ButtonUpdatesBackgroundColor": "#555555",
|
||||||
"ButtonWin11ISOBackgroundColor": "#666666",
|
"ButtonWin11ISOBackgroundColor": "#666666",
|
||||||
"ButtonAppxBackgroundColor": "#777777",
|
|
||||||
"ButtonInstallForegroundColor": "#F7F7F7",
|
"ButtonInstallForegroundColor": "#F7F7F7",
|
||||||
"ButtonTweaksForegroundColor": "#F7F7F7",
|
"ButtonTweaksForegroundColor": "#F7F7F7",
|
||||||
"ButtonConfigForegroundColor": "#F7F7F7",
|
"ButtonConfigForegroundColor": "#F7F7F7",
|
||||||
"ButtonUpdatesForegroundColor": "#F7F7F7",
|
"ButtonUpdatesForegroundColor": "#F7F7F7",
|
||||||
"ButtonWin11ISOForegroundColor": "#F7F7F7",
|
"ButtonWin11ISOForegroundColor": "#F7F7F7",
|
||||||
"ButtonAppxForegroundColor": "#F7F7F7",
|
|
||||||
"ButtonBackgroundColor": "#1E3747",
|
"ButtonBackgroundColor": "#1E3747",
|
||||||
"ButtonBackgroundPressedColor": "#F7F7F7",
|
"ButtonBackgroundPressedColor": "#F7F7F7",
|
||||||
"ButtonBackgroundMouseoverColor": "#3B4252",
|
"ButtonBackgroundMouseoverColor": "#3B4252",
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
# build output
|
|
||||||
dist/
|
|
||||||
# generated types
|
|
||||||
.astro/
|
|
||||||
|
|
||||||
# dependencies
|
|
||||||
node_modules/
|
|
||||||
|
|
||||||
# logs
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
|
|
||||||
|
|
||||||
# environment variables
|
|
||||||
.env
|
|
||||||
.env.production
|
|
||||||
|
|
||||||
# macOS-specific files
|
|
||||||
.DS_Store
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
# Starlight Starter Kit: Basics
|
|
||||||
|
|
||||||
[](https://starlight.astro.build)
|
|
||||||
|
|
||||||
```
|
|
||||||
npm create astro@latest -- --template starlight
|
|
||||||
```
|
|
||||||
|
|
||||||
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
|
|
||||||
|
|
||||||
## 🚀 Project Structure
|
|
||||||
|
|
||||||
Inside of your Astro + Starlight project, you'll see the following folders and files:
|
|
||||||
|
|
||||||
```
|
|
||||||
.
|
|
||||||
├── public/
|
|
||||||
├── src/
|
|
||||||
│ ├── assets/
|
|
||||||
│ ├── content/
|
|
||||||
│ │ └── docs/
|
|
||||||
│ └── content.config.ts
|
|
||||||
├── astro.config.mjs
|
|
||||||
├── package.json
|
|
||||||
└── tsconfig.json
|
|
||||||
```
|
|
||||||
|
|
||||||
Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name.
|
|
||||||
|
|
||||||
Images can be added to `src/assets/` and embedded in Markdown with a relative link.
|
|
||||||
|
|
||||||
Static assets, like favicons, can be placed in the `public/` directory.
|
|
||||||
|
|
||||||
## 🧞 Commands
|
|
||||||
|
|
||||||
All commands are run from the root of the project, from a terminal:
|
|
||||||
|
|
||||||
| Command | Action |
|
|
||||||
| :------------------------ | :----------------------------------------------- |
|
|
||||||
| `npm install` | Installs dependencies |
|
|
||||||
| `npm run dev` | Starts local dev server at `localhost:4321` |
|
|
||||||
| `npm run build` | Build your production site to `./dist/` |
|
|
||||||
| `npm run preview` | Preview your build locally, before deploying |
|
|
||||||
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
|
|
||||||
| `npm run astro -- --help` | Get help using the Astro CLI |
|
|
||||||
|
|
||||||
## 👀 Want to learn more?
|
|
||||||
|
|
||||||
Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat).
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
description: ""
|
||||||
|
date: '{{ .Date }}'
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 194 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 139 KiB |
|
After Width: | Height: | Size: 139 KiB |
|
After Width: | Height: | Size: 139 KiB |
|
After Width: | Height: | Size: 139 KiB |
|
After Width: | Height: | Size: 139 KiB |
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 173 KiB After Width: | Height: | Size: 173 KiB |
|
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 149 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
@@ -1,70 +0,0 @@
|
|||||||
// @ts-check
|
|
||||||
import { defineConfig } from 'astro/config';
|
|
||||||
import starlight from '@astrojs/starlight';
|
|
||||||
import { siteLinks } from './src/site-links.ts';
|
|
||||||
|
|
||||||
// https://astro.build/config
|
|
||||||
export default defineConfig({
|
|
||||||
site: 'https://winutil.christitus.com/',
|
|
||||||
integrations: [
|
|
||||||
starlight({
|
|
||||||
title: 'WinUtil',
|
|
||||||
description: "Chris Titus Tech's Windows Utility — install apps, apply tweaks, run fixes, and manage Windows from one place.",
|
|
||||||
logo: {
|
|
||||||
src: './src/assets/branding/navlogo.png',
|
|
||||||
replacesTitle: true,
|
|
||||||
},
|
|
||||||
favicon: '/favicon.svg',
|
|
||||||
social: [
|
|
||||||
{ icon: 'github', label: 'GitHub', href: 'https://github.com/ChrisTitusTech/winutil' },
|
|
||||||
{ icon: 'discord', label: 'Discord', href: 'https://discord.gg/RUbZUZyByQ' },
|
|
||||||
],
|
|
||||||
// Global theme overrides (colors, fonts, landing-page section styles).
|
|
||||||
customCss: ['./src/styles/theme.css'],
|
|
||||||
// Custom component overrides, all under src/components/.
|
|
||||||
components: {
|
|
||||||
ThemeProvider: './src/components/ThemeProvider.astro',
|
|
||||||
Header: './src/components/Header.astro',
|
|
||||||
Hero: './src/components/Hero.astro',
|
|
||||||
Footer: './src/components/Footer.astro',
|
|
||||||
},
|
|
||||||
editLink: {
|
|
||||||
baseUrl: 'https://github.com/ChrisTitusTech/winutil/edit/main/docs/',
|
|
||||||
},
|
|
||||||
// Sidebar groups, top to bottom: User Guide, Code Reference, Help.
|
|
||||||
sidebar: [
|
|
||||||
{
|
|
||||||
label: 'User Guide',
|
|
||||||
items: [
|
|
||||||
{ label: 'Overview', slug: 'guides' },
|
|
||||||
{ label: 'Getting Started', slug: 'guides/getting-started' },
|
|
||||||
{ label: 'Applications', slug: 'guides/application' },
|
|
||||||
{ label: 'Tweaks', slug: 'guides/tweaks' },
|
|
||||||
{ label: 'Features', slug: 'guides/features' },
|
|
||||||
{ label: 'Updates', slug: 'guides/updates' },
|
|
||||||
{ label: 'Automation', slug: 'guides/automation' },
|
|
||||||
{ label: 'Win11 Creator', slug: 'guides/win11creator' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Code Reference',
|
|
||||||
items: [
|
|
||||||
{ label: 'Architecture & Design', slug: 'code-reference/architecture' },
|
|
||||||
{ label: 'Tweaks Reference', items: [{ autogenerate: { directory: 'code-reference/tweaks' } }] },
|
|
||||||
{ label: 'Features Reference', items: [{ autogenerate: { directory: 'code-reference/features' } }] },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Help',
|
|
||||||
items: [
|
|
||||||
{ label: 'FAQ', slug: 'faq' },
|
|
||||||
{ label: 'Known Issues', slug: 'knownissues' },
|
|
||||||
{ label: 'Contributing', slug: 'contributing' },
|
|
||||||
{ label: siteLinks.forums.label, link: siteLinks.forums.href, attrs: { target: '_blank', rel: 'noreferrer' } },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{ label: siteLinks.store.label, link: siteLinks.store.href, attrs: { target: '_blank', rel: 'noreferrer' } },
|
|
||||||
],
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
@@ -1,8 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: Contributing
|
toc: true
|
||||||
description: How to test, report issues, and contribute code to WinUtil.
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
# How to Contribute?
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
* Test the latest changes to WinUtil by running the pre-release and reporting issues you are encountering to help us continually improve WinUtil!
|
* Test the latest changes to WinUtil by running the pre-release and reporting issues you are encountering to help us continually improve WinUtil!
|
||||||
@@ -13,9 +14,8 @@ description: How to test, report issues, and contribute code to WinUtil.
|
|||||||
irm https://christitus.com/windev | iex
|
irm https://christitus.com/windev | iex
|
||||||
```
|
```
|
||||||
|
|
||||||
:::caution
|
> [!IMPORTANT]
|
||||||
**Keep in mind** That this is a pre-release and should be treated as such. It exists for developers to test the utility and report or fix bugs before they get added to the stable release. Don't use it in production!
|
> **Keep in mind** That this is a pre-release and should be treated as such. It exists for developers to test the utility and report or fix bugs before they get added to the stable release. Don't use it in production!
|
||||||
:::
|
|
||||||
|
|
||||||
## Issues
|
## Issues
|
||||||
|
|
||||||
@@ -27,21 +27,19 @@ irm https://christitus.com/windev | iex
|
|||||||
|
|
||||||
* If you're doing code changes, then you can submit a PR to the `main` branch.
|
* If you're doing code changes, then you can submit a PR to the `main` branch.
|
||||||
|
|
||||||
:::caution
|
> [!IMPORTANT]
|
||||||
Do not use a code formatter, make massive amounts of line changes, or make multiple feature changes. EACH FEATURE CHANGE SHOULD BE ITS OWN PULL REQUEST!
|
> Do not use a code formatter, make massive amounts of line changes, or make multiple feature changes. EACH FEATURE CHANGE SHOULD BE IT'S OWN PULL REQUEST!
|
||||||
:::
|
|
||||||
|
|
||||||
:::caution
|
> [!IMPORTANT]
|
||||||
Do not open a pull request that adds support for other languages to WinUtil for now, until we decide how we want to move forward with language support.
|
> Do not open a pull request that adds support for other languages to WinUtil for now, until we decide how we want to move forward with language support.
|
||||||
:::
|
|
||||||
|
|
||||||
* When creating pull requests, it is essential to thoroughly document all changes made. This includes, but is not limited to, documenting any additions made to the `tweaks` section and corresponding `undo tweak`, so users are able to remove the newly added tweaks if necessary, and comprehensive documentation is required for all code changes. Document your changes and briefly explain why you made your changes in your Pull Request Description. Failure to adhere to this format may result in the denial of the pull request. Additionally, any code lacking sufficient documentation may also be denied.
|
* When creating pull requests, it is essential to thoroughly document all changes made. This includes, but is not limited to, documenting any additions made to the `tweaks` section and corresponding `undo tweak`, so users are able to remove the newly added tweaks if necessary, and comprehensive documentation is required for all code changes. Document your changes and briefly explain why you made your changes in your Pull Request Description. Failure to adhere to this format may result in the denial of the pull request. Additionally, any code lacking sufficient documentation may also be denied.
|
||||||
|
|
||||||
* By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
* By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
||||||
|
|
||||||
:::note
|
> [!NOTE]
|
||||||
When creating a function, please include "WPF" or "WinUtil" in the file name so it can be loaded into the runspace.
|
>
|
||||||
:::
|
> When creating a function, please include "WPF" or "WinUtil" in the file name so it can be loaded into the runspace.
|
||||||
|
|
||||||
## Walk through
|
## Walk through
|
||||||
|
|
||||||
@@ -70,23 +68,23 @@ graph TD
|
|||||||
classDef default stroke:#333,stroke-width:4px,font-size:12pt;
|
classDef default stroke:#333,stroke-width:4px,font-size:12pt;
|
||||||
```
|
```
|
||||||
|
|
||||||
:::note
|
> [!NOTE]
|
||||||
This is a diagram to guide you through the process. It may vary depending on the type of change you're making.
|
>
|
||||||
:::
|
> This is a diagram to guide you through the process. It may vary depending on the type of change you're making.
|
||||||
|
|
||||||
### Fork the Repo
|
### Fork the Repo
|
||||||
* Fork the WinUtil Repository [here](https://github.com/ChrisTitusTech/winutil) to create a copy that will be available in your repository list.
|
* Fork the WinUtil Repository [here](https://github.com/ChrisTitusTech/winutil) to create a copy that will be available in your repository list.
|
||||||
|
|
||||||

|
{{< image src="images/Fork-Button" alt="Fork Image" >}}
|
||||||
|
|
||||||
### Clone the Fork
|
### Clone the Fork
|
||||||
:::tip
|
> [!TIP]
|
||||||
While you can make your changes directly through the Web, we recommend cloning the repo to your device using the application GitHub Desktop (available in WinUtil) to test your fork easily.
|
>
|
||||||
:::
|
> While you can make your changes directly through the Web, we recommend cloning the repo to your device using the application GitHub Desktop (available in WinUtil) to test your fork easily.
|
||||||
|
|
||||||
* Install GitHub Desktop if it is not already installed.
|
* Install GitHub Desktop if it is not already installed.
|
||||||
* Log in using the same GitHub account you used to fork WinUtil.
|
* Log in using the same GitHub account you used to fork WinUtil.
|
||||||
* Choose the fork under "Your Repositories" and press "clone `{repo name}`"
|
* Choose the fork under "Your Repositories" and press "clone {repo name}"
|
||||||
* Create a new branch and name it something relatable to your changes.
|
* Create a new branch and name it something relatable to your changes.
|
||||||
|
|
||||||
* Now you can modify WinUtil to your liking using your preferred text editor.
|
* Now you can modify WinUtil to your liking using your preferred text editor.
|
||||||
@@ -101,22 +99,22 @@ While you can make your changes directly through the Web, we recommend cloning t
|
|||||||
* Run the following command to compile and run WinUtil:
|
* Run the following command to compile and run WinUtil:
|
||||||
* `.\Compile.ps1 -run`
|
* `.\Compile.ps1 -run`
|
||||||
|
|
||||||

|
{{< image src="images/Complie" alt="Compile" >}}
|
||||||
|
|
||||||
* After seeing that your changes work properly, feel free to commit the changes to the repository and make a PR. For help on that, follow the documentation below.
|
* After seeing that your changes work properly, feel free to commit the changes to the repository and make a PR. For help on that, follow the documentation below.
|
||||||
|
|
||||||
### Committing the changes
|
### Committing the changes
|
||||||
* Before committing your changes, please discard changes made to the `winutil.ps1` file, like the following:
|
* Before committing your changes, please discard changes made to the `winutil.ps1` file, like the following:
|
||||||
|
|
||||||

|
{{< image src="images/Discard-GHD" alt="Push Commit Image" >}}
|
||||||
|
|
||||||
* Now, commit your changes once you are happy with the result.
|
* Now, commit your changes once you are happy with the result.
|
||||||
|
|
||||||

|
{{< image src="images/Commit-GHD" alt="Commit Image" >}}
|
||||||
|
|
||||||
* Push the changes to upload them to your fork on GitHub.
|
* Push the changes to upload them to your fork on github.com.
|
||||||
|
|
||||||

|
{{< image src="images/Push-Commit" alt="Push Commit Image" >}}
|
||||||
|
|
||||||
### Making a PR
|
### Making a PR
|
||||||
* To make a PR on your repo under a new branch linking to the main branch, a button will show and say Preview and Create pull request. Click that button and fill in all the information that is provided on the template. Once all the information is filled in correctly, check your PR to make sure there is no WinUtil.ps1 file attached to the PR. Once everything is good, make the PR and wait for Chris (the maintainer) to accept or deny your PR. Once it is accepted by Chris, you will be able to see your changes in the "/windev" build.
|
* To make a PR on your repo under a new branch linking to the main branch, a button will show and say Preview and Create pull request. Click that button and fill in all the information that is provided on the template. Once all the information is filled in correctly, check your PR to make sure there is no WinUtil.ps1 file attached to the PR. Once everything is good, make the PR and wait for Chris (the maintainer) to accept or deny your PR. Once it is accepted by Chris, you will be able to see your changes in the "/windev" build.
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
title: Known Issues
|
||||||
|
toc: true
|
||||||
|
---
|
||||||
|
|
||||||
|
### Download not working
|
||||||
|
|
||||||
|
If `https://christitus.com/win` is not working, or you want to download the code from GitHub directly, you can use the direct download link:
|
||||||
|
|
||||||
|
```
|
||||||
|
irm https://github.com/ChrisTitusTech/Winutil/releases/latest/download/Winutil.ps1 | iex
|
||||||
|
```
|
||||||
|
|
||||||
|
If it still isn't working in your region, it may be due to temporary ISP or network filtering of GitHub content domains. This has been reported by some users in India in the past. See: [Times of India](https://timesofindia.indiatimes.com/gadgets-news/github-content-domain-blocked-for-these-indian-users-reports/articleshow/96687992.cms).
|
||||||
|
|
||||||
|
If you are still having issues, try using a **VPN**, or changing your **DNS provider** to one of the following two providers:
|
||||||
|
|
||||||
|
| Provider | Primary DNS | Secondary DNS |
|
||||||
|
| :--------: | :---------: | :-----------: |
|
||||||
|
| Cloudflare | `1.1.1.1` | `1.0.0.1` |
|
||||||
|
| Google | `8.8.8.8` | `8.8.4.4` |
|
||||||
|
|
||||||
|
### Script Won't Run
|
||||||
|
|
||||||
|
If you run WinUtil and get the error:
|
||||||
|
|
||||||
|
`"WinUtil is unable to run on your system, powershell execution is restricted by security policies,"`
|
||||||
|
|
||||||
|
this means that your PowerShell session is in **Constrained Language Mode**, which prevents WinUtil from running.
|
||||||
|
|
||||||
|
### Ultimate Performance Plan Not Working
|
||||||
|
|
||||||
|
The Ultimate Performance power plan may not work on some laptops who do not fully support this power plan.
|
||||||
|
|
||||||
|
In these cases, the power plan may fail to apply, This is expected behavior on unsupported hardware.
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: Welcome to Winutil Documentation!
|
||||||
|
toc: false
|
||||||
|
width: full
|
||||||
|
---
|
||||||
|
|
||||||
|
<div style="display: flex; justify-content: center; align-items: center; width: 100%; flex-wrap: wrap; gap: 5px;margin-top:30px;" >
|
||||||
|
<a href="https://github.com/ChrisTitusTech/Winutil/releases/latest"><img src="https://img.shields.io/github/v/release/ChrisTitusTech/Winutil?color=%230567ff&label=Latest%20Release&style=for-the-badge" alt="Version" style="height: 28px; width: auto; min-width: 10px; object-fit: contain; margin: 0;"></a>
|
||||||
|
<img src="https://img.shields.io/github/downloads/ChrisTitusTech/Winutil/Winutil.ps1?label=Total%20Downloads&style=for-the-badge" alt="GitHub Downloads" style="height: 28px; width: auto; min-width: 10px; object-fit: contain; margin: 0;">
|
||||||
|
<a href="https://discord.gg/RUbZUZyByQ"><img src="https://dcbadge.limes.pink/api/server/https://discord.gg/RUbZUZyByQ" alt="Discord Community Server" style="height: 28px; width: auto; min-width: 10px; object-fit: contain; margin: 0;"></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
Welcome to the official documentation for Winutil, your go-to utility for optimizing and managing your Windows environment. Whether you’re an IT professional, power user, or regular user, Winutil provides a comprehensive set of tools to enhance your Windows experience.
|
||||||
|
|
||||||
|
{{< image src="images/Title-Screen" alt="Winutil title screen" >}}
|
||||||
|
|
||||||
|
## Running the latest release of Winutil
|
||||||
|
|
||||||
|
* You will first need to start a PowerShell terminal **as Admin**.
|
||||||
|
* Now you can run the following command:
|
||||||
|
|
||||||
|
```
|
||||||
|
irm "https://christitus.com/win" | iex
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
> [!IMPORTANT]
|
||||||
|
> Winutil is updated frequently as of the time of writing. Consequently, features and functionalities may evolve, and the documentation may not always reflect the most current images or information.
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
title: Developer Reference
|
||||||
|
weight: 3
|
||||||
|
toc: false
|
||||||
|
---
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> This section contains technical documentation for developers. For end-user documentation, see the [User Guide](../userguide/).
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
- [Architecture & Design](architecture/) - Code structure, data flow, and how Winutil works internally
|
||||||
|
|
||||||
|
## Tweaks
|
||||||
|
|
||||||
|
### Essential Tweaks
|
||||||
|
|
||||||
|
{{< autolinks section="dev/tweaks/essential-tweaks" >}}
|
||||||
|
|
||||||
|
### Advanced Tweaks (CAUTION)
|
||||||
|
|
||||||
|
{{< autolinks section="dev/tweaks/z--advanced-tweaks---caution" >}}
|
||||||
|
|
||||||
|
### Customize Preferences
|
||||||
|
|
||||||
|
{{< autolinks section="dev/tweaks/customize-preferences" >}}
|
||||||
|
|
||||||
|
### Performance Plans
|
||||||
|
|
||||||
|
{{< autolinks section="dev/tweaks/performance-plans" >}}
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/fixes" >}}
|
||||||
|
|
||||||
|
### Legacy Windows Panels
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/legacy-windows-panels" >}}
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/features" >}}
|
||||||
|
|
||||||
|
### Remote Access
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/remote-access" >}}
|
||||||
|
|
||||||
|
### Powershell Profile Powershell 7+ Only
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/powershell-profile-powershell-7--only" >}}
|
||||||
@@ -1,11 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: Architecture & Design
|
title: Architecture & Design
|
||||||
description: How WinUtil's GUI, functions, and JSON configuration files fit together, plus a deep dive into the Win11 Creator subsystem.
|
weight: 1
|
||||||
|
toc: true
|
||||||
---
|
---
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
WinUtil is a PowerShell-based Windows utility with a WPF (Windows Presentation Foundation) GUI. This document explains the architecture, code structure, and how different components work together.
|
Winutil is a PowerShell-based Windows utility with a WPF (Windows Presentation Foundation) GUI. This document explains the architecture, code structure, and how different components work together.
|
||||||
|
|
||||||
## High-Level Architecture
|
## High-Level Architecture
|
||||||
|
|
||||||
@@ -73,7 +74,7 @@ winutil/
|
|||||||
1. Reads all function files from `/functions/`
|
1. Reads all function files from `/functions/`
|
||||||
2. Includes configuration JSON files
|
2. Includes configuration JSON files
|
||||||
3. Embeds XAML GUI definition
|
3. Embeds XAML GUI definition
|
||||||
4. Combines into a single script
|
4. Combines into single script
|
||||||
5. Outputs `winutil.ps1`
|
5. Outputs `winutil.ps1`
|
||||||
|
|
||||||
**Why**: Makes distribution easier (single file) and improves load time.
|
**Why**: Makes distribution easier (single file) and improves load time.
|
||||||
@@ -341,7 +342,7 @@ Update UI
|
|||||||
|
|
||||||
### applications.json Structure
|
### applications.json Structure
|
||||||
|
|
||||||
```json title="config/applications.json"
|
```json {filename="config/applications.json"}
|
||||||
{
|
{
|
||||||
"WPFInstall<AppName>": {
|
"WPFInstall<AppName>": {
|
||||||
"category": "Browsers",
|
"category": "Browsers",
|
||||||
@@ -364,7 +365,7 @@ Update UI
|
|||||||
|
|
||||||
### tweaks.json Structure
|
### tweaks.json Structure
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
```json {filename="config/tweaks.json"}
|
||||||
{
|
{
|
||||||
"WPFTweaksTelemetry": {
|
"WPFTweaksTelemetry": {
|
||||||
"Content": "Disable Telemetry",
|
"Content": "Disable Telemetry",
|
||||||
@@ -503,7 +504,7 @@ $sync.form.Dispatcher.Invoke([action]{
|
|||||||
### Adding a New Application
|
### Adding a New Application
|
||||||
|
|
||||||
1. Edit `config/applications.json`:
|
1. Edit `config/applications.json`:
|
||||||
```json title="config/applications.json"
|
```json {filename="config/applications.json"}
|
||||||
{
|
{
|
||||||
"WPFInstallNewApp": {
|
"WPFInstallNewApp": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
@@ -521,7 +522,7 @@ $sync.form.Dispatcher.Invoke([action]{
|
|||||||
### Adding a New Tweak
|
### Adding a New Tweak
|
||||||
|
|
||||||
1. Edit `config/tweaks.json`:
|
1. Edit `config/tweaks.json`:
|
||||||
```json title="config/tweaks.json"
|
```json {filename="config/tweaks.json"}
|
||||||
{
|
{
|
||||||
"WPFTweaksNewTweak": {
|
"WPFTweaksNewTweak": {
|
||||||
"Content": "New Tweak",
|
"Content": "New Tweak",
|
||||||
@@ -577,9 +578,7 @@ Tests are in `/pester/`:
|
|||||||
|
|
||||||
Run tests:
|
Run tests:
|
||||||
```powershell
|
```powershell
|
||||||
Install-Module -Name Pester -RequiredVersion 5.8.0 -Scope CurrentUser -Force -SkipPublisherCheck
|
Invoke-Pester
|
||||||
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
|
||||||
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed -CI
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Build Process
|
## Build Process
|
||||||
@@ -653,10 +652,10 @@ Outputs `winutil.ps1` in the root directory.
|
|||||||
|
|
||||||
## Related Documentation
|
## Related Documentation
|
||||||
|
|
||||||
- [Contributing Guide](/contributing/) - How to contribute code
|
- [Contributing Guide](../../contributing/) - How to contribute code
|
||||||
- [User Guide](/guides/) - End-user documentation
|
- [User Guide](../../userguide/) - End-user documentation
|
||||||
- [Win11 Creator Guide](/guides/win11creator/) - Building customized Windows 11 ISOs
|
- [Win11 Creator Guide](../../userguide/win11creator/) - Building customized Windows 11 ISOs
|
||||||
- [FAQ](/faq/) - Common questions
|
- [FAQ](../../faq/) - Common questions
|
||||||
|
|
||||||
## Additional Resources
|
## Additional Resources
|
||||||
|
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy F8 Boot Recovery - Disable"
|
title: "Legacy F8 Boot Recovery - Disable"
|
||||||
description: "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=110}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFFeatureDisableLegacyRecovery": {
|
"WPFFeatureDisableLegacyRecovery": {
|
||||||
"Content": "Legacy F8 Boot Recovery - Disable",
|
"Content": "Legacy F8 Boot Recovery - Disable",
|
||||||
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"bcdedit /set bootmenupolicy standard"
|
"bcdedit /set bootmenupolicy standard"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy F8 Boot Recovery - Enable"
|
title: "Legacy F8 Boot Recovery - Enable"
|
||||||
description: "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=99}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFFeatureEnableLegacyRecovery": {
|
"WPFFeatureEnableLegacyRecovery": {
|
||||||
"Content": "Legacy F8 Boot Recovery - Enable",
|
"Content": "Legacy F8 Boot Recovery - Enable",
|
||||||
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"bcdedit /set bootmenupolicy legacy"
|
"bcdedit /set bootmenupolicy legacy"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Registry Backup (Daily Task 12:30am) - Enable"
|
title: "Registry Backup (Daily Task 12:30am) - Enable"
|
||||||
description: "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=82}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFFeatureRegBackup": {
|
"WPFFeatureRegBackup": {
|
||||||
"Content": "Registry Backup (Daily Task 12:30am) - Enable",
|
"Content": "Registry Backup (Daily Task 12:30am) - Enable",
|
||||||
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
|
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
|
||||||
@@ -24,5 +19,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
Register-ScheduledTask -Action $action -Trigger $trigger -TaskName 'AutoRegBackup' -Description 'Create System Registry Backups' -User 'System'
|
Register-ScheduledTask -Action $action -Trigger $trigger -TaskName 'AutoRegBackup' -Description 'Create System Registry Backups' -User 'System'
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Sandbox - Enable"
|
title: "Windows Sandbox - Enable"
|
||||||
description: "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=121}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFFeaturesSandbox": {
|
"WPFFeaturesSandbox": {
|
||||||
"Content": "Windows Sandbox - Enable",
|
"Content": "Windows Sandbox - Enable",
|
||||||
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",
|
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",
|
||||||
@@ -17,5 +12,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"feature": [
|
"feature": [
|
||||||
"Containers-DisposableClientVM"
|
"Containers-DisposableClientVM"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: "Features"
|
||||||
|
weight: 1
|
||||||
|
toc: false
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/features" >}}
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: ".NET Framework (Versions 2, 3, 4) - Enable"
|
title: ".NET Framework (Versions 2, 3, 4) - Enable"
|
||||||
description: ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=2}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFFeaturesdotnet": {
|
"WPFFeaturesdotnet": {
|
||||||
"Content": ".NET Framework (Versions 2, 3, 4) - Enable",
|
"Content": ".NET Framework (Versions 2, 3, 4) - Enable",
|
||||||
"Description": ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.",
|
"Description": ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.",
|
||||||
@@ -19,5 +14,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"NetFx3"
|
"NetFx3"
|
||||||
],
|
],
|
||||||
"InvokeScript": [],
|
"InvokeScript": [],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
title: "Hyper-V - Enable"
|
||||||
|
description: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
```json {filename="config/feature.json",linenos=inline,linenostart=24}
|
||||||
|
"WPFFeatureshyperv": {
|
||||||
|
"Content": "Hyper-V - Enable",
|
||||||
|
"Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
|
||||||
|
"category": "Features",
|
||||||
|
"panel": "1",
|
||||||
|
"feature": [
|
||||||
|
"Microsoft-Hyper-V-All"
|
||||||
|
],
|
||||||
|
"InvokeScript": [
|
||||||
|
"bcdedit /set hypervisorschedulertype classic"
|
||||||
|
],
|
||||||
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy Media Components (WMP, DirectPlay) - Enable"
|
title: "Legacy Media Components (WMP, DirectPlay) - Enable"
|
||||||
description: "Enables legacy programs from previous versions of Windows."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=37}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFFeatureslegacymedia": {
|
"WPFFeatureslegacymedia": {
|
||||||
"Content": "Legacy Media Components (WMP, DirectPlay) - Enable",
|
"Content": "Legacy Media Components (WMP, DirectPlay) - Enable",
|
||||||
"Description": "Enables legacy programs from previous versions of Windows.",
|
"Description": "Enables legacy programs from previous versions of Windows.",
|
||||||
@@ -21,5 +16,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"LegacyComponents"
|
"LegacyComponents"
|
||||||
],
|
],
|
||||||
"InvokeScript": [],
|
"InvokeScript": [],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Network File System (NFS) - Enable"
|
title: "Network File System (NFS) - Enable"
|
||||||
description: "Network File System (NFS) is a mechanism for storing files on a network."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=63}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFFeaturenfs": {
|
"WPFFeaturenfs": {
|
||||||
"Content": "Network File System (NFS) - Enable",
|
"Content": "Network File System (NFS) - Enable",
|
||||||
"Description": "Network File System (NFS) is a mechanism for storing files on a network.",
|
"Description": "Network File System (NFS) is a mechanism for storing files on a network.",
|
||||||
@@ -26,5 +21,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"nfsadmin client start",
|
"nfsadmin client start",
|
||||||
"nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i"
|
"nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Subsystem for Linux (WSL) - Enable"
|
title: "Windows Subsystem for Linux (WSL) - Enable"
|
||||||
description: "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=51}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFFeaturewsl": {
|
"WPFFeaturewsl": {
|
||||||
"Content": "Windows Subsystem for Linux (WSL) - Enable",
|
"Content": "Windows Subsystem for Linux (WSL) - Enable",
|
||||||
"Description": "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting.",
|
"Description": "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting.",
|
||||||
@@ -19,5 +14,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"Microsoft-Windows-Subsystem-Linux"
|
"Microsoft-Windows-Subsystem-Linux"
|
||||||
],
|
],
|
||||||
"InvokeScript": [],
|
"InvokeScript": [],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
title: "AutoLogon - Run"
|
||||||
|
description: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
```powershell {filename="functions/public/Invoke-WPFPanelAutologin.ps1",linenos=inline,linenostart=1}
|
||||||
|
function Invoke-WPFPanelAutologin {
|
||||||
|
<#
|
||||||
|
|
||||||
|
.SYNOPSIS
|
||||||
|
Enables autologin using Sysinternals Autologon.exe
|
||||||
|
|
||||||
|
#>
|
||||||
|
|
||||||
|
# Official Microsoft recommendation: https://learn.microsoft.com/en-us/sysinternals/downloads/autologon
|
||||||
|
Invoke-WebRequest -Uri "https://live.sysinternals.com/Autologon.exe" -OutFile "$env:temp\autologin.exe"
|
||||||
|
cmd /c "$env:temp\autologin.exe" /accepteula
|
||||||
|
}
|
||||||
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "System Corruption Scan - Run"
|
title: "System Corruption Scan - Run"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```powershell {filename="functions/public/Invoke-WPFSystemRepair.ps1",linenos=inline,linenostart=1}
|
||||||
This page is generated from [`functions/public/Invoke-WPFSystemRepair.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFSystemRepair.ps1). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFSystemRepair.ps1"
|
|
||||||
function Invoke-WPFSystemRepair {
|
function Invoke-WPFSystemRepair {
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "NTP Server - Enable"
|
title: "NTP Server - Enable"
|
||||||
description: "Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```powershell {filename="functions/public/Invoke-WPFFixesNTPPool.ps1",linenos=inline,linenostart=1}
|
||||||
This page is generated from [`functions/public/Invoke-WPFFixesNTPPool.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesNTPPool.ps1). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFFixesNTPPool.ps1"
|
|
||||||
function Invoke-WPFFixesNTPPool {
|
function Invoke-WPFFixesNTPPool {
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
title: "Network - Reset"
|
||||||
|
description: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
```powershell {filename="functions/public/Invoke-WPFFixesNetwork.ps1",linenos=inline,linenostart=1}
|
||||||
|
function Invoke-WPFFixesNetwork {
|
||||||
|
<#
|
||||||
|
|
||||||
|
.SYNOPSIS
|
||||||
|
Resets various network configurations
|
||||||
|
|
||||||
|
#>
|
||||||
|
|
||||||
|
Write-Host "Resetting Network with netsh"
|
||||||
|
|
||||||
|
Set-WinUtilTaskbaritem -state "Normal" -value 0.01 -overlay "logo"
|
||||||
|
# Reset WinSock catalog to a clean state
|
||||||
|
Start-Process -NoNewWindow -FilePath "netsh" -ArgumentList "winsock", "reset"
|
||||||
|
|
||||||
|
Set-WinUtilTaskbaritem -state "Normal" -value 0.35 -overlay "logo"
|
||||||
|
# Resets WinHTTP proxy setting to DIRECT
|
||||||
|
Start-Process -NoNewWindow -FilePath "netsh" -ArgumentList "winhttp", "reset", "proxy"
|
||||||
|
|
||||||
|
Set-WinUtilTaskbaritem -state "Normal" -value 0.7 -overlay "logo"
|
||||||
|
# Removes all user configured IP settings
|
||||||
|
Start-Process -NoNewWindow -FilePath "netsh" -ArgumentList "int", "ip", "reset"
|
||||||
|
|
||||||
|
Set-WinUtilTaskbaritem -state "None" -overlay "checkmark"
|
||||||
|
|
||||||
|
Write-Host "Process complete. Please reboot your computer."
|
||||||
|
|
||||||
|
$ButtonType = [System.Windows.MessageBoxButton]::OK
|
||||||
|
$MessageboxTitle = "Network Reset "
|
||||||
|
$Messageboxbody = ("Stock settings loaded.`n Please reboot your computer")
|
||||||
|
$MessageIcon = [System.Windows.MessageBoxImage]::Information
|
||||||
|
|
||||||
|
[System.Windows.MessageBox]::Show($Messageboxbody, $MessageboxTitle, $ButtonType, $MessageIcon)
|
||||||
|
Write-Host "=========================================="
|
||||||
|
Write-Host "-- Network Configuration has been Reset --"
|
||||||
|
Write-Host "=========================================="
|
||||||
|
}
|
||||||
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Update - Reset"
|
title: "Windows Update - Reset"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```powershell {filename="functions/public/Invoke-WPFFixesUpdate.ps1",linenos=inline,linenostart=1}
|
||||||
This page is generated from [`functions/public/Invoke-WPFFixesUpdate.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesUpdate.ps1). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFFixesUpdate.ps1"
|
|
||||||
function Invoke-WPFFixesUpdate {
|
function Invoke-WPFFixesUpdate {
|
||||||
|
|
||||||
<#
|
<#
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "WinGet - Reinstall"
|
title: "WinGet - Reinstall"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```powershell {filename="functions/public/Invoke-WPFFixesWinget.ps1",linenos=inline,linenostart=1}
|
||||||
This page is generated from [`functions/public/Invoke-WPFFixesWinget.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFFixesWinget.ps1). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFFixesWinget.ps1"
|
|
||||||
function Invoke-WPFFixesWinget {
|
function Invoke-WPFFixesWinget {
|
||||||
|
|
||||||
<#
|
<#
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: "Fixes"
|
||||||
|
weight: 2
|
||||||
|
toc: false
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/fixes" >}}
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Computer Management"
|
title: "Computer Management"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=196}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelComputer": {
|
"WPFPanelComputer": {
|
||||||
"Content": "Computer Management",
|
"Content": "Computer Management",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"compmgmt.msc"
|
"compmgmt.msc"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Control Panel"
|
title: "Control Panel"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=185}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelControl": {
|
"WPFPanelControl": {
|
||||||
"Content": "Control Panel",
|
"Content": "Control Panel",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"control"
|
"control"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Network Connections"
|
title: "Network Connections"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=207}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelNetwork": {
|
"WPFPanelNetwork": {
|
||||||
"Content": "Network Connections",
|
"Content": "Network Connections",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"ncpa.cpl"
|
"ncpa.cpl"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Power Panel"
|
title: "Power Panel"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=218}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelPower": {
|
"WPFPanelPower": {
|
||||||
"Content": "Power Panel",
|
"Content": "Power Panel",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"powercfg.cpl"
|
"powercfg.cpl"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Printer Panel"
|
title: "Printer Panel"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=229}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelPrinter": {
|
"WPFPanelPrinter": {
|
||||||
"Content": "Printer Panel",
|
"Content": "Printer Panel",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"Start-Process 'shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A}'"
|
"Start-Process 'shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A}'"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Region"
|
title: "Region"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=240}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelRegion": {
|
"WPFPanelRegion": {
|
||||||
"Content": "Region",
|
"Content": "Region",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"intl.cpl"
|
"intl.cpl"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Restore"
|
title: "Windows Restore"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=251}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelRestore": {
|
"WPFPanelRestore": {
|
||||||
"Content": "Windows Restore",
|
"Content": "Windows Restore",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"rstrui.exe"
|
"rstrui.exe"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Sound Settings"
|
title: "Sound Settings"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=262}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelSound": {
|
"WPFPanelSound": {
|
||||||
"Content": "Sound Settings",
|
"Content": "Sound Settings",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"mmsys.cpl"
|
"mmsys.cpl"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "System Properties"
|
title: "System Properties"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=273}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelSystem": {
|
"WPFPanelSystem": {
|
||||||
"Content": "System Properties",
|
"Content": "System Properties",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"sysdm.cpl"
|
"sysdm.cpl"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Time and Date"
|
title: "Time and Date"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/feature.json",linenos=inline,linenostart=284}
|
||||||
This page is generated from [`config/feature.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/feature.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/feature.json"
|
|
||||||
"WPFPanelTimedate": {
|
"WPFPanelTimedate": {
|
||||||
"Content": "Time and Date",
|
"Content": "Time and Date",
|
||||||
"category": "Legacy Windows Panels",
|
"category": "Legacy Windows Panels",
|
||||||
@@ -18,5 +13,4 @@ This page is generated from [`config/feature.json`](https://github.com/ChrisTitu
|
|||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"timedate.cpl"
|
"timedate.cpl"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: "Legacy Windows Panels"
|
||||||
|
weight: 3
|
||||||
|
toc: false
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/legacy-windows-panels" >}}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
title: "CTT PowerShell Profile - Install"
|
||||||
|
description: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
```powershell {filename="functions/private/Invoke-WinUtilInstallPSProfile.ps1",linenos=inline,linenostart=1}
|
||||||
|
function Invoke-WinUtilInstallPSProfile {
|
||||||
|
if (-not (Get-Command wt)) {
|
||||||
|
Write-Host "Windows Terminal not found installing..."
|
||||||
|
Install-WinUtilWinget
|
||||||
|
winget install Microsoft.WindowsTerminal --source winget --silent
|
||||||
|
}
|
||||||
|
|
||||||
|
if (-not (Get-Command pwsh)) {
|
||||||
|
Write-Host "Powershell 7 not found installing..."
|
||||||
|
Install-WinUtilWinget
|
||||||
|
winget install Microsoft.PowerShell --source winget --silent
|
||||||
|
}
|
||||||
|
|
||||||
|
wt new-tab pwsh -NoExit -Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"
|
||||||
|
}
|
||||||
|
```
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "CTT PowerShell Profile - Remove"
|
title: "CTT PowerShell Profile - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```powershell {filename="functions/private/Invoke-WinUtilUninstallPSProfile.ps1",linenos=inline,linenostart=1}
|
||||||
This page is generated from [`functions/private/Invoke-WinUtilUninstallPSProfile.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/private/Invoke-WinUtilUninstallPSProfile.ps1). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```powershell title="functions/private/Invoke-WinUtilUninstallPSProfile.ps1"
|
|
||||||
function Invoke-WinUtilUninstallPSProfile {
|
function Invoke-WinUtilUninstallPSProfile {
|
||||||
|
|
||||||
if (Test-Path ($Profile + ".bak")) {
|
if (Test-Path ($Profile + ".bak")) {
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: "Powershell Profile Powershell 7+ Only"
|
||||||
|
weight: 5
|
||||||
|
toc: false
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/powershell-profile-powershell-7--only" >}}
|
||||||
@@ -1,14 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "OpenSSH Server - Enable"
|
title: "OpenSSH Server - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```powershell {filename="functions/public/Invoke-WPFSSHServer.ps1",linenos=inline,linenostart=1}
|
||||||
This page is generated from [`functions/public/Invoke-WPFSSHServer.ps1`](https://github.com/ChrisTitusTech/winutil/blob/main/functions/public/Invoke-WPFSSHServer.ps1). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```powershell title="functions/public/Invoke-WPFSSHServer.ps1"
|
|
||||||
function Invoke-WPFSSHServer {
|
function Invoke-WPFSSHServer {
|
||||||
<#
|
<#
|
||||||
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: "Remote Access"
|
||||||
|
weight: 4
|
||||||
|
toc: false
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/remote-access" >}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "Features"
|
||||||
|
weight: 1
|
||||||
|
toc: false
|
||||||
|
---
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/fixes" >}}
|
||||||
|
|
||||||
|
### Legacy Windows Panels
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/legacy-windows-panels" >}}
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/features" >}}
|
||||||
|
|
||||||
|
### Remote Access
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/remote-access" >}}
|
||||||
|
|
||||||
|
### Powershell Profile Powershell 7+ Only
|
||||||
|
|
||||||
|
{{< autolinks section="dev/features/powershell-profile-powershell-7--only" >}}
|
||||||
@@ -1,17 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "System Tray Battery Percentage"
|
title: "System Tray Battery Percentage"
|
||||||
description: "Shows numeric battery percentage next to the battery icon in the system tray."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1268}
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
|
||||||
"WPFToggleBatteryPercentage": {
|
"WPFToggleBatteryPercentage": {
|
||||||
"Content": "System Tray Battery Percentage",
|
"Content": "System Tray Battery Percentage",
|
||||||
"Description": "Shows numeric battery percentage next to the battery icon in the system tray.",
|
"Description": "If enabled, Shows numeric battery percentage next to the battery icon in the system tray.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -25,7 +20,6 @@ This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitus
|
|||||||
"DefaultState": "false"
|
"DefaultState": "false"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Registry Changes
|
## Registry Changes
|
||||||
@@ -1,17 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "Start Menu Bing Search"
|
title: "Start Menu Bing Search"
|
||||||
description: "Toggles Bing web search results in Windows Search."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1603}
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
|
||||||
"WPFToggleBingSearch": {
|
"WPFToggleBingSearch": {
|
||||||
"Content": "Start Menu Bing Search",
|
"Content": "Start Menu Bing Search",
|
||||||
"Description": "Toggles Bing web search results in Windows Search.",
|
"Description": "If enabled, Bing web search results will be included in your Start Menu search.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -25,7 +20,6 @@ This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitus
|
|||||||
"DefaultState": "true"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Registry Changes
|
## Registry Changes
|
||||||
@@ -1,17 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "Dark Theme for Windows"
|
title: "Dark Theme for Windows"
|
||||||
description: "Dark Mode for the system and applications."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1286}
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
|
||||||
"WPFToggleDarkMode": {
|
"WPFToggleDarkMode": {
|
||||||
"Content": "Dark Theme for Windows",
|
"Content": "Dark Theme for Windows",
|
||||||
"Description": "Dark Mode for the system and applications.",
|
"Description": "Enable/Disable Dark Mode.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -49,7 +44,6 @@ This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitus
|
|||||||
}
|
}
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Registry Changes
|
## Registry Changes
|
||||||
@@ -1,17 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "BSoD Verbose Mode"
|
title: "BSoD Verbose Mode"
|
||||||
description: "Gives more information when you blue screen."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1242}
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
|
||||||
"WPFToggleDetailedBSoD": {
|
"WPFToggleDetailedBSoD": {
|
||||||
"Content": "BSoD Verbose Mode",
|
"Content": "BSoD Verbose Mode",
|
||||||
"Description": "Gives more information when you blue screen.",
|
"Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -33,7 +28,6 @@ This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitus
|
|||||||
"DefaultState": "false"
|
"DefaultState": "false"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Registry Changes
|
## Registry Changes
|
||||||
@@ -1,31 +1,25 @@
|
|||||||
---
|
---
|
||||||
title: "Window Snapping"
|
title: "Cross-Device Resume"
|
||||||
description: "Toggles the window snapping feature when dragging windows."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1224}
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
"WPFToggleDisableCrossDeviceResume": {
|
||||||
:::
|
"Content": "Cross-Device Resume",
|
||||||
|
"Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.",
|
||||||
```json title="config/tweaks.json"
|
|
||||||
"WPFToggleWindowSnapping": {
|
|
||||||
"Content": "Window Snapping",
|
|
||||||
"Description": "Toggles the window snapping feature when dragging windows.",
|
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
"registry": [
|
"registry": [
|
||||||
{
|
{
|
||||||
"Path": "HKCU:\\Control Panel\\Desktop",
|
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\CrossDeviceResume\\Configuration",
|
||||||
"Name": "WindowArrangementActive",
|
"Name": "IsResumeAllowed",
|
||||||
"Value": "1",
|
"Value": "1",
|
||||||
"Type": "String",
|
"Type": "DWord",
|
||||||
"OriginalValue": "0",
|
"OriginalValue": "0",
|
||||||
"DefaultState": "true"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Registry Changes
|
## Registry Changes
|
||||||
@@ -1,17 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "Game Mode"
|
title: "Game Mode"
|
||||||
description: "Toggles Windows prioritizes gaming performance by allocating system resources to games."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1765}
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
|
||||||
"WPFToggleGameMode": {
|
"WPFToggleGameMode": {
|
||||||
"Content": "Game Mode",
|
"Content": "Game Mode",
|
||||||
"Description": "Toggles Windows prioritizes gaming performance by allocating system resources to games.",
|
"Description": "If enabled, Windows prioritizes gaming performance by allocating system resources. Disable for audio/video production to prevent interference.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -33,7 +28,6 @@ This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitus
|
|||||||
"DefaultState": "true"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Registry Changes
|
## Registry Changes
|
||||||
@@ -1,17 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "File Explorer Hidden Files"
|
title: "File Explorer Hidden Files"
|
||||||
description: "Reveals hidden files in Explorer."
|
description: ""
|
||||||
editUrl: false
|
|
||||||
---
|
---
|
||||||
|
|
||||||
:::note
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1356}
|
||||||
This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitusTech/winutil/blob/main/config/tweaks.json). Do not edit this page directly.
|
|
||||||
:::
|
|
||||||
|
|
||||||
```json title="config/tweaks.json"
|
|
||||||
"WPFToggleHiddenFiles": {
|
"WPFToggleHiddenFiles": {
|
||||||
"Content": "File Explorer Hidden Files",
|
"Content": "File Explorer Hidden Files",
|
||||||
"Description": "Reveals hidden files in Explorer.",
|
"Description": "If enabled, Hidden Files will be shown.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -35,7 +30,6 @@ This page is generated from [`config/tweaks.json`](https://github.com/ChrisTitus
|
|||||||
Invoke-WinUtilExplorerUpdate -action \"restart\"
|
Invoke-WinUtilExplorerUpdate -action \"restart\"
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Registry Changes
|
## Registry Changes
|
||||||