diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 00000000..30a94605
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,38 @@
+# Pull Request
+
+## Title
+[Provide a succinct and descriptive title for the pull request.]
+
+## Type of Change
+- [ ] New feature
+- [ ] Bug fix
+- [ ] Documentation update
+- [ ] Refactoring
+- [ ] Hotfix
+- [ ] Security patch
+- [ ] UI/UX improvement
+
+## Description
+[Provide a detailed explanation of the changes you have made. Include the reasons behind these changes and any relevant context. Link any related issues.]
+
+## Testing
+[Detail the testing you have performed to ensure that these changes function as intended. Include information about any added tests.]
+
+## Impact
+[Discuss the impact of your changes on the project. This might include effects on performance, new dependencies, or changes in behaviour.]
+
+## Issue related to PR
+[What issue is related to this PR (if any)]
+- Resolves #
+[What discussion is related to this PR (if any)]
+- Discussion: #
+
+## Additional Information
+[Any additional information that reviewers should be aware of.]
+
+## Checklist
+- [ ] My code adheres to the coding and style guidelines of the project.
+- [ ] I have performed a self-review of my own code.
+- [ ] I have commented my code, particularly in hard-to-understand areas.
+- [ ] I have made corresponding changes to the documentation.
+- [ ] My changes generate no errors/warnings/merge conflicts.
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 00000000..1e853399
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,23 @@
+name: ci
+on:
+ push:
+ branches:
+ - master
+ - main
+permissions:
+ contents: write
+jobs:
+ deploy:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/setup-python@v4
+ with:
+ python-version: 3.x
+ - uses: actions/cache@v2
+ with:
+ key: ${{ github.ref }}
+ path: .cache
+ - run: pip install mkdocs-material
+ - run: pip install pillow cairosvg
+ - run: mkdocs gh-deploy --force
\ No newline at end of file
diff --git a/.github/workflows/close-discussion.yml b/.github/workflows/close-discussion.yml
new file mode 100644
index 00000000..c320a275
--- /dev/null
+++ b/.github/workflows/close-discussion.yml
@@ -0,0 +1,30 @@
+name: Close Discussion on PR Merge
+
+on:
+ pull_request:
+ types: [closed]
+
+jobs:
+ closeDiscussion:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Check if PR was merged
+ if: github.event.pull_request.merged == true
+ run: echo "PR was merged"
+
+ - name: Extract Discussion Number
+ if: github.event.pull_request.merged == true
+ id: extract-discussion
+ run: |
+ echo "::set-output name=discussion::$(echo "${{ github.event.pull_request.body }}" | grep -oP '(?<=Discussion: #)\d+')"
+ shell: bash
+
+ - name: Close the discussion
+ if: github.event.pull_request.merged == true && steps.extract-discussion.outputs.discussion
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ DISCUSSION_ID: ${{ steps.extract-discussion.outputs.discussion }}
+ run: |
+ curl -X PATCH -H "Authorization: token $GITHUB_TOKEN" \
+ -d '{"state": "closed"}' \
+ "https://api.github.com/repos/${{ github.repository }}/discussions/${DISCUSSION_ID}"
diff --git a/.github/workflows/close-old-issues.yaml b/.github/workflows/close-old-issues.yaml
index a91b3363..ace4bb34 100644
--- a/.github/workflows/close-old-issues.yaml
+++ b/.github/workflows/close-old-issues.yaml
@@ -14,7 +14,7 @@ jobs:
contents: none
steps:
- name: Close inactive issues
- uses: actions/stale@v9.0.0
+ uses: actions/stale@v8
with:
# A list of labels to reference when looking through issues,
# and only when one (or even more) of these labels are found..
@@ -33,7 +33,7 @@ jobs:
# Increase this value if the project receives a lot of
# PRs (yes.. apparently they're processed no matter what) & Issues.
# Default value for it (according to the docs) is 30
- operations-per-run: 100
+ operations-per-run: 200
# Make this field equal true if you want to test your configuration if it works correctly or not
debug-only: false
repo-token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/createchangelog.yml b/.github/workflows/createchangelog.yml
new file mode 100644
index 00000000..425d3048
--- /dev/null
+++ b/.github/workflows/createchangelog.yml
@@ -0,0 +1,17 @@
+name: On release published
+on:
+ release:
+ types: [published]
+
+jobs:
+ changelog:
+ name: Update changelog
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ ref: main
+ - uses: rhysd/changelog-from-release/action@v3
+ with:
+ file: /docs/updates.md
+ github_token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/wiki/Battery.md b/Battery.txt
similarity index 100%
rename from wiki/Battery.md
rename to Battery.txt
diff --git a/wiki/Error-in-Winutil-MicroWin-during-ISO-mounting.md b/Error-in-Winutil-MicroWin-during-ISO-mounting.txt
similarity index 100%
rename from wiki/Error-in-Winutil-MicroWin-during-ISO-mounting.md
rename to Error-in-Winutil-MicroWin-during-ISO-mounting.txt
diff --git a/README.md b/README.md
index 2de945a9..71fd1d31 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,14 @@
# Chris Titus Tech's Windows Utility
[![Version](https://img.shields.io/github/v/release/ChrisTitusTech/winutil?color=7a39fb)](https://github.com/ChrisTitusTech/winutil/releases/latest)
+![GitHub Downloads (all assets, latest release)](https://img.shields.io/github/downloads/ChrisTitusTech/winutil/latest/total)
+[![](https://dcbadge.limes.pink/api/server/https://discord.gg/RUbZUZyByQ)](https://discord.gg/RUbZUZyByQ)
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.
-![screen-install](screen-install.png)
+![screen-install](./docs/assets/screen-install.png)
-## Usage
+## 💡 Usage
Winutil must be run in Admin mode because it performs system-wide tweaks. To achieve this, open PowerShell or Windows Terminal as an administrator. Here are a few ways to do it:
@@ -22,111 +24,39 @@ Winutil must be run in Admin mode because it performs system-wide tweaks. To ach
### Launch Command
-#### Simple way
+#### Stable Branch
```ps1
irm "https://christitus.com/win" | iex
```
-Courtesy of the issue: [#144](/../../issues/144)
+#### Dev Branch
-If this site is not reachable from your country, please try running it directly from GitHub.
```ps1
-irm "https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1" | iex
+irm "https://christitus.com/windev" | iex
```
-If you still have Issues, refer to [Known Issues](https://github.com/ChrisTitusTech/winutil/blob/main/KnownIssues.md).
+If you have Issues, refer to [Known Issues](https://christitustech.github.io/winutil/KnownIssues/)
+## 🎓 Documenation
-#### Automation
+### [WinUtil Official Documentation](https://christitustech.github.io/winutil/)
-Some features are available through automation. This allows you to save your config file pass it to Winutil walk away and come back to a finished system. Here is how you can set it up currently with Winutil >24.01.15
-
-1. On the Install Tab, click "Get Installed", this will get all installed apps **supported by Winutil** on the system
- ![GetInstalled](/wiki/Get-Installed.png)
-2. Click on the Settings cog in the upper right corner and chose Export, chose file file and location, this will export the setting file.
- ![SettingsExport](/wiki/Settings-Export.png)
-3. Copy this file to a USB or somewhere you can use after Windows installation.
-4. Use Microwin tab to create a custom Windows image.
-5. Install the Windows image.
-6. In the new Windows, Open PowerShell in the admin mode and run command to automatically apply tweaks and install apps from the config file.
-```
-iex "& { $(irm christitus.com/win) } -Config [path-to-your-config] -Run"
-```
-7. Have a cup of coffee! Come back when it's done.
-
-
-
-## Support
-- To morally and mentally support the project, make sure to leave a ⭐️!
-- EXE Wrapper for $10 @ https://www.cttstore.com/windows-toolbox
-
-## Tutorial
+### YouTube Tutorial
[![Watch the video](https://img.youtube.com/vi/6UQZ5oQg8XA/hqdefault.jpg)](https://www.youtube.com/watch?v=6UQZ5oQg8XA)
-## Overview
-
-- Install
- - Install Selection: Organize programs by category and facilitate installation by enabling users to select programs and initiate the installation process with a single click.
-
- - Upgrade All: Upgrade all existing programs to their latest versions, ensuring users have the most up-to-date and feature-rich software.
-
- - Uninstall Selection: Effortlessly uninstall selected programs, providing users with a streamlined way to remove unwanted software from their system.
-
- - Get Installed: Retrieve a comprehensive list of installed programs on the system, offering users visibility into the software currently installed on their computer.
-
- - Import / Export: Enable users to import or export the selection list of programs, allowing them to save their preferred program configurations or share them with others. This feature promotes convenience and flexibility in managing program selections across different systems.
-
-- Tweaks
- - Recommended Selection: Provides pre-defined templates tailored for desktop, laptop, and minimal configurations, allowing users to select recommended settings and optimizations specific to their system type.
-
- - Essential Tweaks: Offers a collection of essential tweaks aimed at improving system performance, privacy, and resource utilization. These tweaks include creating a system restore point, disabling telemetry, Wi-Fi Sense, setting services to manual, disabling location tracking, and HomeGroup, among others.
-
- - Advanced Tweaks: Encompasses a range of various advanced power user tweaks to further optimize the system. These tweaks include removing OneDrive and Edge, disabling User Account Control (UAC), notification panel, among others.
-
- - Toggles: Adds easy to use, one click shortcuts for toggling dark mode, NumLock on startup, file extensions, sticky keys, among others.
-
- - Additional Tweaks: Introduces various other tweaks such as enabling dark mode, changing DNS settings, adding an Ultimate Performance mode, and creating shortcuts for WinUtil tools. These tweaks provide users with additional customization options to tailor their system to their preferences.
-
-- Config
- - Features: Allows users to easily install various essential components and features to enhance their Windows experience. These features include installing .NET Frameworks, enabling Hyper-V virtualization, enabling legacy media support for Windows Media Player and DirectPlay, enabling NFS (Network File System) for network file sharing, and enabling Windows Subsystem for Linux (WSL) for running Linux applications on Windows.
-
- - Fixes: Provides a range of helpful fixes to address common issues and improve system stability. This includes setting up autologon for seamless login experiences, resetting Windows updates to resolve update-related problems, performing a system corruption scan to detect and repair corrupted files, and resetting network settings to troubleshoot network connectivity issues.
-
- - Legacy Windows Panels: Includes access to legacy Windows panels from Windows 7, allowing users to access familiar and powerful tools. These panels include Control Panel for managing system settings, Network Connections for configuring network adapters and connections, Power Panel for adjusting power and sleep settings, Sound Settings for managing audio devices and settings, System Properties for viewing and modifying system information, and User Accounts for managing user profiles and account settings.
+### [ChrisTitus.com Article](https://christitus.com/windows-tool/)
-- Updates:
- - Default (Out of Box) Settings: Provides the default settings that come with Windows for updates.
+## 💖 Support
+- To morally and mentally support the project, make sure to leave a ⭐️!
+- EXE Wrapper for $10 @ https://www.cttstore.com/windows-toolbox
- - Security (Recommended) Settings: Offers recommended settings, including a slight delay of feature updates by 2 years and installation of security updates 4 days after release.
-
- - Disable All Updates (Not Recommended!): Allows users to disable all Windows updates, but it's not recommended due to potential security risks.
-
-
-Video and Written Article walkthrough @
-
-## Issues
-
-If you encounter any challenges or problems with the script, I kindly request that you submit them via the "Issues" tab on the GitHub repository. By filling out the provided template, you can provide specific details about the issue, allowing me to promptly address any bugs or consider feature requests.
-
-## Contribute Code
-
-Pull Requests are now handled directly on the MAIN branch. This was done since we can now select specific releases to launch via releases in GitHub.
-
-If doing a code change and you can submit a PR to main branch, but I am very selective about these. Do not use a code formatter, massive amounts of line changes, and make multiple feature changes. EACH FEATURE CHANGE SHOULD BE IT'S OWN Pull Request!
-
-When creating pull requests, it is essential to thoroughly document all changes made. This includes documenting any additions made to the tweaks section and ensuring that corresponding undo measures are in place to remove the newly added tweaks if necessary. Failure to adhere to this format may result in denial of the pull request. Additionally, comprehensive documentation is required for all code changes. 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.
-
-NOTE: When creating a function please include "WPF" or "WinUtil" in the name so that it can be loaded into the runspace.
-
-## Thanks to all Contributors
+## 🏅 Thanks to all Contributors
Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.
[![Contributors](https://contrib.rocks/image?repo=ChrisTitusTech/winutil)](https://github.com/ChrisTitusTech/winutil/graphs/contributors)
-## GitHub Stats
+## 📊 GitHub Stats
![Alt](https://repobeats.axiom.co/api/embed/aad37eec9114c507f109d34ff8d38a59adc9503f.svg "Repobeats analytics image")
diff --git a/config/applications.json b/config/applications.json
index 16ba3aae..c2926d03 100644
--- a/config/applications.json
+++ b/config/applications.json
@@ -951,69 +951,37 @@
"link": "https://jami.net/",
"winget": "SFLinux.Jami"
},
- "java16": {
+ "java8": {
"category": "Development",
- "choco": "temurin16jre",
- "content": "OpenJDK Java 16",
- "description": "OpenJDK Java 16 is the latest version of the open-source Java development kit.",
- "link": "https://adoptopenjdk.net/",
- "winget": "AdoptOpenJDK.OpenJDK.16"
+ "choco": "corretto8jdk",
+ "content": "Amazon Corretto 8 (LTS)",
+ "description": "Amazon Corretto is a no-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).",
+ "link": "https://aws.amazon.com/corretto",
+ "winget": "Amazon.Corretto.8.JDK"
},
- "java18": {
+ "java11": {
"category": "Development",
- "choco": "temurin18jre",
- "content": "Oracle Java 18",
- "description": "Oracle Java 18 is the latest version of the official Java development kit from Oracle.",
- "link": "https://www.oracle.com/java/",
- "winget": "EclipseAdoptium.Temurin.18.JRE"
+ "choco": "corretto11jdk",
+ "content": "Amazon Corretto 11 (LTS)",
+ "description": "Amazon Corretto is a no-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).",
+ "link": "https://aws.amazon.com/corretto",
+ "winget": "Amazon.Corretto.11.JDK"
+ },
+ "java17": {
+ "category": "Development",
+ "choco": "corretto17jdk",
+ "content": "Amazon Corretto 17 (LTS)",
+ "description": "Amazon Corretto is a no-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).",
+ "link": "https://aws.amazon.com/corretto",
+ "winget": "Amazon.Corretto.17.JDK"
},
"java21": {
"category": "Development",
- "choco": "na",
- "content": "Azul Zulu JDK 21",
- "description": "Azul Zulu JDK 21 is a distribution of the OpenJDK with long-term support, performance enhancements, and security updates.",
- "link": "https://www.azul.com/downloads/zulu-community/",
- "winget": "Azul.Zulu.21.JDK"
- },
- "java8": {
- "category": "Development",
- "choco": "temurin8jre",
- "content": "OpenJDK Java 8",
- "description": "OpenJDK Java 8 is an open-source implementation of the Java Platform, Standard Edition.",
- "link": "https://adoptopenjdk.net/",
- "winget": "EclipseAdoptium.Temurin.8.JRE"
- },
- "java11runtime": {
- "category": "Development",
- "choco": "na",
- "content": "Eclipse Temurin JRE 11",
- "description": "Eclipse Temurin JRE is the open source Java SE build based upon OpenJRE.",
- "link": "https://adoptium.net/",
- "winget": "EclipseAdoptium.Temurin.11.JRE"
- },
- "java17runtime": {
- "category": "Development",
- "choco": "na",
- "content": "Eclipse Temurin JRE 17",
- "description": "Eclipse Temurin JRE is the open source Java SE build based upon OpenJRE.",
- "link": "https://adoptium.net/",
- "winget": "EclipseAdoptium.Temurin.17.JRE"
- },
- "java18runtime": {
- "category": "Development",
- "choco": "na",
- "content": "Eclipse Temurin JRE 18",
- "description": "Eclipse Temurin JRE is the open source Java SE build based upon OpenJRE.",
- "link": "https://adoptium.net/",
- "winget": "EclipseAdoptium.Temurin.18.JRE"
- },
- "java19runtime": {
- "category": "Development",
- "choco": "na",
- "content": "Eclipse Temurin JRE 19",
- "description": "Eclipse Temurin JRE is the open source Java SE build based upon OpenJRE.",
- "link": "https://adoptium.net/",
- "winget": "EclipseAdoptium.Temurin.19.JRE"
+ "choco": "corretto21jdk",
+ "content": "Amazon Corretto 21 (LTS)",
+ "description": "Amazon Corretto is a no-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).",
+ "link": "https://aws.amazon.com/corretto",
+ "winget": "Amazon.Corretto.21.JDK"
},
"jdownloader": {
"category": "Utilities",
@@ -1215,6 +1183,14 @@
"link": "https://meldmerge.org/",
"winget": "Meld.Meld"
},
+ "ModernFlyouts": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "Modern Flyouts",
+ "description": "An open source, modern, Fluent Design-based set of flyouts for Windows.",
+ "link": "https://github.com/ModernFlyouts-Community/ModernFlyouts/",
+ "winget": "ModernFlyouts.ModernFlyouts"
+ },
"monitorian": {
"category": "Utilities",
"choco": "monitorian",
@@ -1943,10 +1919,10 @@
"link": "https://getsharex.com/",
"winget": "ShareX.ShareX"
},
- "nilesoftShel": {
+ "nilesoftShell": {
"category": "Utilities",
"choco": "nilesoft-shell",
- "content": "Shell (Expanded Context Menu)",
+ "content": "Nilesoft Shell",
"description": "Shell is an expanded context menu tool that adds extra functionality and customization options to the Windows context menu.",
"link": "https://nilesoft.org/",
"winget": "Nilesoft.Shell"
@@ -2482,7 +2458,7 @@
"wingetui": {
"category": "Utilities",
"choco": "wingetui",
- "content": "WingetUI",
+ "content": "UnigetUI",
"description": "WingetUI is a graphical user interface for Microsoft's Windows Package Manager (winget).",
"link": "https://www.marticliment.com/wingetui/",
"winget": "SomePythonThings.WingetUIStore"
@@ -2872,7 +2848,7 @@
"winget": "NDI.NDITools"
},
"kicad": {
- "category": "Pro Tools",
+ "category": "Multimedia Tools",
"choco": "na",
"content": "Kicad",
"description":"Kicad is an open-source EDA tool. It's a good starting point for those who want to do electrical design and is even used by professionals in the industry.",
@@ -2902,5 +2878,13 @@
"description":"GUI Tool To Removes Ads From Various Places Around Windows 11",
"link": "https://github.com/xM4ddy/OFGB",
"winget": "xM4ddy.OFGB"
+ },
+ "Shotcut": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "Shotcut",
+ "description": "Shotcut is a free, open source, cross-platform video editor.",
+ "link": "https://shotcut.org/",
+ "winget": "Meltytech.Shotcut"
}
}
diff --git a/config/dns.json b/config/dns.json
index f661ef0a..8f5ca14c 100644
--- a/config/dns.json
+++ b/config/dns.json
@@ -1,30 +1,50 @@
{
"Google":{
"Primary": "8.8.8.8",
- "Secondary": "8.8.4.4"
+ "Secondary": "8.8.4.4",
+ "Primary6": "2001:4860:4860::8888",
+ "Secondary6": "2001:4860:4860::8844"
},
"Cloudflare":{
"Primary": "1.1.1.1",
- "Secondary": "1.0.0.1"
+ "Secondary": "1.0.0.1",
+ "Primary6": "2606:4700:4700::1111",
+ "Secondary6": "2606:4700:4700::1001"
},
"Cloudflare_Malware":{
"Primary": "1.1.1.2",
- "Secondary": "1.0.0.2"
+ "Secondary": "1.0.0.2",
+ "Primary6": "2606:4700:4700::1112",
+ "Secondary6": "2606:4700:4700::1002"
},
"Cloudflare_Malware_Adult":{
"Primary": "1.1.1.3",
- "Secondary": "1.0.0.3"
- },
- "Level3":{
- "Primary": "4.2.2.2",
- "Secondary": "4.2.2.1"
+ "Secondary": "1.0.0.3",
+ "Primary6": "2606:4700:4700::1113",
+ "Secondary6": "2606:4700:4700::1003"
},
"Open_DNS":{
"Primary": "208.67.222.222",
- "Secondary": "208.67.220.220"
+ "Secondary": "208.67.220.220",
+ "Primary6": "2620:119:35::35",
+ "Secondary6": "2620:119:53::53"
},
"Quad9":{
"Primary": "9.9.9.9",
- "Secondary": "149.112.112.112"
+ "Secondary": "149.112.112.112",
+ "Primary6": "2620:fe::fe",
+ "Secondary6": "2620:fe::9"
+ },
+ "AdGuard_Ads_Trackers":{
+ "Primary": "94.140.14.14",
+ "Secondary": "94.140.15.15",
+ "Primary6": "2a10:50c0::ad1:ff",
+ "Secondary6": "2a10:50c0::ad2:ff"
+ },
+ "AdGuard_Ads_Trackers_Malware_Adult":{
+ "Primary": "94.140.14.15",
+ "Secondary": "94.140.15.16",
+ "Primary6": "2a10:50c0::bad1:ff",
+ "Secondary6": "2a10:50c0::bad2:ff"
}
}
\ No newline at end of file
diff --git a/config/feature.json b/config/feature.json
index d2f5a161..bd66859a 100644
--- a/config/feature.json
+++ b/config/feature.json
@@ -184,90 +184,104 @@
"category": "Features",
"panel": "1",
"Order": "a060_",
- "Type": "150"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPanelAutologin": {
"Content": "Set Up Autologin",
"category": "Fixes",
"Order": "a040_",
"panel": "1",
- "Type": "300"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFFixesUpdate": {
"Content": "Reset Windows Update",
"category": "Fixes",
"panel": "1",
"Order": "a041_",
- "Type": "300"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFFixesNetwork": {
"Content": "Reset Network",
"category": "Fixes",
"Order": "a042_",
"panel": "1",
- "Type": "300"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPanelDISM": {
"Content": "System Corruption Scan",
"category": "Fixes",
"panel": "1",
"Order": "a043_",
- "Type": "300"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFFixesWinget": {
"Content": "WinGet Reinstall",
"category": "Fixes",
"panel": "1",
"Order": "a044_",
- "Type": "300"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFRunAdobeCCCleanerTool": {
"Content": "Remove Adobe Creative Cloud",
"category": "Fixes",
"panel": "1",
"Order": "a045_",
- "Type": "300"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPanelnetwork": {
"Content": "Network Connections",
"category": "Legacy Windows Panels",
"panel": "2",
- "Type": "200"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPanelcontrol": {
"Content": "Control Panel",
"category": "Legacy Windows Panels",
"panel": "2",
- "Type": "200"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPanelpower": {
"Content": "Power Panel",
"category": "Legacy Windows Panels",
"panel": "2",
- "Type": "200"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPanelregion": {
"Content": "Region",
"category": "Legacy Windows Panels",
"panel": "2",
- "Type": "200"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPanelsound": {
"Content": "Sound Settings",
"category": "Legacy Windows Panels",
"panel": "2",
- "Type": "200"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPanelsystem": {
"Content": "System Properties",
"category": "Legacy Windows Panels",
"panel": "2",
- "Type": "200"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFPaneluser": {
"Content": "User Accounts",
"category": "Legacy Windows Panels",
"panel": "2",
- "Type": "200"
+ "Type": "Button",
+ "ButtonWidth": "300"
}
}
diff --git a/config/helperscript.ps1 b/config/helperscript.ps1
deleted file mode 100644
index 1b1b6d7a..00000000
--- a/config/helperscript.ps1
+++ /dev/null
@@ -1,399 +0,0 @@
-# This file is meant to assist in building out the json files inside this folder.
-
-#===========================================================================
-# applications.json
-#===========================================================================
-
-<#
- Applications.json
- -----------------
- This file holds all the install commands to install the applications.
- This file has the ability to expect multiple frameworks per checkbox.
- You can also add multiple install commands by separating them with ;
-
- The structure of the json is as follows
-
-{
- "Name of Button": {
- "winget": "Winget command"
- "choco": "Chocolatey command"
- },
-}
-
-Example:
-
-{
- "WPFInstalladobe": {
- "winget": "Adobe.Acrobat.Reader.64-bit"
- "choco": "adobereader"
- },
- "WPFInstalladvancedip": {
- "winget": "Famatech.AdvancedIPScanner"
- "choco": "advanced-ip-scanner"
- }
-}
-
-#>
-
-# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
-#------Do not delete WPF------
-
-$NameofButton = "WPF" + ""
-$WingetCommand = ""
-$ChocoCommand = ""
-
-$ButtonToAdd = New-Object psobject
-$jsonfile = Get-Content ./config/applications.json | ConvertFrom-Json
-
-# Remove if already exists
-if($jsonfile.$NameofButton){
- $jsonfile.psobject.Properties.remove($NameofButton)
-}
-
-Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "Winget" -Value $WingetCommand
-Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "choco" -Value $ChocoCommand
-Add-Member -InputObject $jsonfile.install -MemberType NoteProperty -Name $NameofButton -Value $ButtonToAdd
-
-$jsonfile | ConvertTo-Json | Out-File ./config/applications.json
-
-#===========================================================================
-# feature.json
-#===========================================================================
-
-<#
- feature.json
- -----------------
- This file holds all the windows commands to install specific features (IE Hyper-v)
-
- The structure of the json is as follows
-
-{
- "Name of Button": [
- "Array of",
- "commands"
- ]
-}
-
-Example:
-{
- "Featurewsl": [
- "VirtualMachinePlatform",
- "Microsoft-Windows-Subsystem-Linux"
- ],
- "Featurenfs": [
- "ServicesForNFS-ClientOnly",
- "ClientForNFS-Infrastructure",
- "NFS-Administration"
- ]
-}
-#>
-
-# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
-
-$NameofButton = ""
-$commands = @(
-
-)
-
-$jsonfile = Get-Content ./config/feature.json | ConvertFrom-Json
-
-# Remove if already exists
-if($jsonfile.$NameofButton){
- $jsonfile.psobject.Properties.remove($NameofButton)
-}
-
-Add-Member -InputObject $jsonfile -MemberType NoteProperty -Name $NameofButton -Value $commands
-
-$jsonfile | ConvertTo-Json | Out-File ./config/feature.json
-
-#===========================================================================
-# preset.json
-#===========================================================================
-
-<#
- preset.json
- -----------------
- This file holds all check boxes you wish to check when clicking a preset button in the tweaks section.
-
- The structure of the json is as follows
-
-{
- "Name of Button": [
- "Array of",
- "checkboxes to check"
- ]
-}
-
-Example:
-{
- "laptop": [
- "EssTweaksAH",
- "EssTweaksDVR",
- "EssTweaksHome",
- "EssTweaksLoc",
- "EssTweaksOO",
- "EssTweaksRP",
- "EssTweaksServices",
- "EssTweaksStorage",
- "EssTweaksTele",
- "EssTweaksWifi",
- "MiscTweaksLapPower",
- "MiscTweaksLapNum"
- ],
- "minimal": [
- "EssTweaksHome",
- "EssTweaksOO",
- "EssTweaksRP",
- "EssTweaksServices",
- "EssTweaksTele"
- ]
-}
-#>
-
-# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
-
-$NameofButton = "WPF" + ""
-$commands = @(
-
-)
-
-$jsonfile = Get-Content ./config/preset.json | ConvertFrom-Json
-
-# Remove if already exists
-if($jsonfile.$NameofButton){
- $jsonfile.psobject.Properties.remove($NameofButton)
-}
-
-Add-Member -InputObject $jsonfile -MemberType NoteProperty -Name $NameofButton -Value $commands
-
-$jsonfile | ConvertTo-Json | Out-File ./config/preset.json
-
-#===========================================================================
-# tweaks.json
-#===========================================================================
-
-<#
- tweaks.json
- -----------------
- This file holds all the tweaks needed to make modifications to windows. This file is the most complicated so modify with care.
-
- The structure of the json is as follows
-
-{
- "Name of button": {
- "registry" : [
- {
- "Path": "Path in registry",
- "Name": "Name of Registry key",
- "Type": "Item type",
- "Value": "Value to modify",
- "OriginalValue": "value to reset"
- }
- ],
- "service" : [
- {
- "Name": "Name of service",
- "StartupType": "Startup type to set",
- "OriginalType": "Startup type to reset"
- }
- ],
- "ScheduledTask" : [
- {
- "Name": "Path to scheduled task",
- "State": "State to set",
- "OriginalState": "State to reset"
- }
- ],
- "appx": [
- List of appx,
- files to uninstall
- ],
- "InvokeScript": [
- "Script to make modifications not possible with the above types
- Special care needs to be taken here as converting from json to a scriptblock
- can cause weird issues. Please look at the example below to get an idea of how things should work"
- ],
- "UndoScript": [
- "Same as above however is meant to undo what you did above"
- ]
- }
-}
-
-Example:
-
-{
- EssTweaksAH": {
- "registry" : [
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
- "Name": "EnableActivityFeed",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
- "Name": "PublishUserActivities",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- }
- ]
- },
- "EssTweaksHome": {
- "service" : [
- {
- "Name": "HomeGroupListener",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "HomeGroupProvider",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- }
- ]
- },
- "EssTweaksTele": {
- "ScheduledTask" : [
- {
- "Name": "Microsoft\\Windows\\Application Experience\\Microsoft Compatibility Appraiser",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Application Experience\\ProgramDataUpdater",
- "State": "Disabled",
- "OriginalState": "Enabled"
- }
- ]
- },
- "EssTweaksDeBloat": {
- "appx": [
- "Microsoft.Microsoft3DViewer",
- "Microsoft.AppConnector"
- ]
- },
- "EssTweaksOO": {
- "InvokeScript": [
- "Import-Module BitsTransfer
- Start-BitsTransfer -Source \"https://raw.githubusercontent.com/ChrisTitusTech/win10script/master/ooshutup10.cfg\" -Destination C:\\Windows\\Temp\\ooshutup10.cfg
- Start-BitsTransfer -Source \"https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe\" -Destination C:\\Windows\\Temp\\OOSU10.exe
- C:\\Windows\\Temp\\OOSU10.exe C:\\Windows\\Temp\\ooshutup10.cfg /quiet"
- ]
- }
-}
-
-#>
-
-# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
-# Make sure to uncomment the sections you which to add.
-
-#$Registry = @(
-# # To add more repeat this separated by a comma
-# @{
-# Path = ""
-# Name = ""
-# Type = ""
-# Value = ""
-# OriginalValue = ""
-# }
-#)
-
-#$Service = @(
-# # To add more repeat this separated by a comma
-# @{
-# Name = ""
-# StartupType = ""
-# OriginalType = ""
-# }
-#)
-
-#$ScheduledTask = @(
-# # To add more repeat this separated by a comma
-# @{
-# Name = ""
-# State = ""
-# OriginalState = ""
-# }
-#)
-
-#$Appx = @(
-# ""
-#)
-
-#$InvokeScript = @(
-# ""
-#)
-
-#$UndoScript = @(
-# ""
-#)
-
-$NameofButton = "WPF" + ""
-
-$ButtonToAdd = New-Object psobject
-$jsonfile = Get-Content ./config/tweaks.json | ConvertFrom-Json
-
-# Remove if already exists
-if($jsonfile.$NameofButton){
- $jsonfile.psobject.Properties.remove($NameofButton)
-}
-
-if($Registry){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "registry" -Value $Registry}
-if($Service){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "service" -Value $Service}
-if($ScheduledTask){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "ScheduledTask" -Value $ScheduledTask}
-if($Appx){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "Appx" -Value $Appx}
-if($InvokeScript){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "InvokeScript" -Value $InvokeScript}
-if($UndoScript){Add-Member -InputObject $ButtonToAdd -MemberType NoteProperty -Name "UndoScript" -Value $UndoScript}
-
-Add-Member -InputObject $jsonfile -MemberType NoteProperty -Name $NameofButton -Value $ButtonToAdd
-
-($jsonfile | ConvertTo-Json -Depth 5).replace('\r\n',"`r`n") | Out-File ./config/tweaks.json
-
-#===========================================================================
-# dns.json
-#===========================================================================
-
-<#
- dns.json
- -----------------
- This file holds all the DNS entries.
-
- The structure of the json is as follows
-
-{
- "DNS Provider": [
- "Primary": "IP address",
- "Secondary": "IP address"
- ]
-}
-
-Example:
-{
- "Cloudflare":{
- "Primary": "1.1.1.1",
- "Secondary": "1.0.0.1"
- }
-}
-#>
-
-# Modify the variables and run his code. It will import the current file and add your addition. From there you can create a pull request.
-
-$NameofProvider = "" -replace " ","_"
-$IPAddress = @{
- "Primary" = "0.0.0.0"
- "Secondary" = "0.0.0.0"
-}
-
-$ButtonToAdd = New-Object psobject
-$jsonfile = Get-Content ./config/dns.json | ConvertFrom-Json
-
-# Remove if already exists
-if($jsonfile.$NameofProvider){
- $jsonfile.psobject.Properties.remove($NameofProvider)
-}
-
-Add-Member -InputObject $jsonfile -MemberType NoteProperty -Name $NameofProvider -Value $IPAddress
-
-($jsonfile | ConvertTo-Json -Depth 5).replace('\r\n',"`r`n") | Out-File ./config/dns.json
\ No newline at end of file
diff --git a/config/preset.json b/config/preset.json
index f19742d0..78083d15 100644
--- a/config/preset.json
+++ b/config/preset.json
@@ -14,7 +14,8 @@
"WPFTweaksDeleteTempFiles",
"WPFTweaksEndTaskOnTaskbar",
"WPFTweaksRestorePoint",
- "WPFTweaksTeredo"
+ "WPFTweaksTeredo",
+ "WPFTweaksPowershell7Tele"
],
"Minimal": [
"WPFTweaksConsumerFeatures",
diff --git a/config/themes.json b/config/themes.json
index 7500bb87..4bc3766b 100644
--- a/config/themes.json
+++ b/config/themes.json
@@ -1,5 +1,30 @@
{
"Classic": {
+ "CustomDialogFontSize": "12",
+ "CustomDialogFontSizeHeader": "14",
+ "CustomDialogIconSize": "25",
+ "CustomDialogWidth": "400",
+ "CustomDialogHeight": "200",
+
+ "FontSize": "12",
+ "FontFamily": "Arial",
+ "FontSizeHeading": "14",
+ "HeaderFontFamily": "Consolas, Monaco",
+
+ "CheckBoxBulletDecoratorFontSize": "14",
+ "CheckBoxMargin": "15,0,0,2",
+
+ "TabButtonFontSize": "14",
+ "TabButtonWidth": "100",
+ "TabButtonHeight": "25",
+ "TabRowHeightInPixels": "50",
+ "IconFontSize": "14",
+ "IconButtonSize": "35",
+ "WinUtilIconSize": "Auto",
+ "SettingsIconFontSize": "18",
+
+ "MicroWinLogoSize": "10",
+
"ComboBoxBackgroundColor": "#FFFFFF",
"LabelboxForegroundColor": "#000000",
"MainForegroundColor": "#000000",
@@ -9,6 +34,18 @@
"LinkHoverForegroundColor": "#000000",
"GroupBorderBackgroundColor": "#000000",
"ComboBoxForegroundColor": "#000000",
+
+ "ButtonFontSize": "12",
+ "ButtonFontFamily": "Arial",
+ "ButtonWidth": "200",
+ "ButtonHeight": "25",
+ "ConfigTabButtonFontSize": "16",
+
+ "SearchBarWidth": "200",
+ "SearchBarHeight": "25",
+ "SearchBarTextBoxFontSize": "16",
+ "SearchBarClearButtonFontSize": "14",
+
"ButtonInstallBackgroundColor": "#FFFFFF",
"ButtonTweaksBackgroundColor": "#FFFFFF",
"ButtonConfigBackgroundColor": "#FFFFFF",
@@ -24,74 +61,148 @@
"ButtonBackgroundSelectedColor": "#F0F0F0",
"ButtonForegroundColor": "#000000",
"ToggleButtonOnColor": "#2e77ff",
+
"ButtonBorderThickness": "1",
"ButtonMargin": "1",
"ButtonCornerRadius": "2",
- "ToggleButtonHeight": "25",
"BorderColor": "#000000",
"BorderOpacity": "0.2",
"ShadowPulse": "Forever"
},
"Matrix": {
- "ComboBoxBackgroundColor": "#000000",
- "LabelboxForegroundColor": "#FFEE58",
- "MainForegroundColor": "#9CCC65",
- "MainBackgroundColor": "#000000",
- "LabelBackgroundColor": "#000000",
- "LinkForegroundColor": "#add8e6",
- "LinkHoverForegroundColor": "#FFFFFF",
- "ComboBoxForegroundColor": "#FFEE58",
- "ButtonInstallBackgroundColor": "#222222",
- "ButtonTweaksBackgroundColor": "#333333",
- "ButtonConfigBackgroundColor": "#444444",
- "ButtonUpdatesBackgroundColor": "#555555",
- "ButtonInstallForegroundColor": "#FFFFFF",
- "ButtonTweaksForegroundColor": "#FFFFFF",
- "ButtonConfigForegroundColor": "#FFFFFF",
- "ButtonUpdatesForegroundColor": "#FFFFFF",
- "ButtonBackgroundColor": "#000019",
- "ButtonBackgroundPressedColor": "#FFFFFF",
- "ButtonBackgroundMouseoverColor": "#A55A64",
- "ButtonBackgroundSelectedColor": "#FF5733",
- "ButtonForegroundColor": "#9CCC65",
- "ToggleButtonOnColor": "#2e77ff",
- "ButtonBorderThickness": "1",
- "ButtonMargin": "1",
- "ButtonCornerRadius": "2",
- "ToggleButtonHeight": "25",
- "BorderColor": "#FFAC1C",
- "BorderOpacity": "0.8",
- "ShadowPulse": "0:0:3"
+ "CustomDialogFontSize": "12",
+ "CustomDialogFontSizeHeader": "14",
+ "CustomDialogIconSize": "25",
+ "CustomDialogWidth": "400",
+ "CustomDialogHeight": "200",
+
+ "FontSize": "12",
+ "FontFamily": "Arial",
+ "FontSizeHeading": "14",
+ "HeaderFontFamily": "Consolas, Monaco",
+
+ "CheckBoxBulletDecoratorFontSize": "14",
+ "CheckBoxMargin": "15,0,0,2",
+
+ "TabButtonFontSize": "14",
+ "TabButtonWidth": "100",
+ "TabButtonHeight": "25",
+ "TabRowHeightInPixels": "50",
+ "IconFontSize": "14",
+ "IconButtonSize": "35",
+ "WinUtilIconSize": "Auto",
+ "SettingsIconFontSize": "18",
+
+ "MicroWinLogoSize": "10",
+
+ "ComboBoxBackgroundColor": "#000000",
+ "LabelboxForegroundColor": "#FFEE58",
+ "MainForegroundColor": "#9CCC65",
+ "MainBackgroundColor": "#000000",
+ "LabelBackgroundColor": "#000000",
+ "LinkForegroundColor": "#add8e6",
+ "LinkHoverForegroundColor": "#FFFFFF",
+ "ComboBoxForegroundColor": "#FFEE58",
+
+ "ButtonFontSize": "12",
+ "ButtonFontFamily": "Arial",
+ "ButtonWidth": "200",
+ "ButtonHeight": "25",
+ "ConfigTabButtonFontSize": "16",
+
+ "SearchBarWidth": "200",
+ "SearchBarHeight": "25",
+ "SearchBarTextBoxFontSize": "16",
+ "SearchBarClearButtonFontSize": "14",
+
+ "ButtonInstallBackgroundColor": "#222222",
+ "ButtonTweaksBackgroundColor": "#333333",
+ "ButtonConfigBackgroundColor": "#444444",
+ "ButtonUpdatesBackgroundColor": "#555555",
+ "ButtonInstallForegroundColor": "#FFFFFF",
+ "ButtonTweaksForegroundColor": "#FFFFFF",
+ "ButtonConfigForegroundColor": "#FFFFFF",
+ "ButtonUpdatesForegroundColor": "#FFFFFF",
+ "ButtonBackgroundColor": "#000019",
+ "ButtonBackgroundPressedColor": "#FFFFFF",
+ "ButtonBackgroundMouseoverColor": "#A55A64",
+ "ButtonBackgroundSelectedColor": "#FF5733",
+ "ButtonForegroundColor": "#9CCC65",
+ "ToggleButtonOnColor": "#2e77ff",
+
+ "ButtonBorderThickness": "1",
+ "ButtonMargin": "1",
+ "ButtonCornerRadius": "2",
+ "BorderColor": "#FFAC1C",
+ "BorderOpacity": "0.8",
+ "ShadowPulse": "0:0:3"
},
"Dark": {
- "ComboBoxBackgroundColor": "#000000",
- "LabelboxForegroundColor": "#FFEE58",
- "MainForegroundColor": "#9CCC65",
- "MainBackgroundColor": "#000000",
- "LabelBackgroundColor": "#000000",
- "LinkForegroundColor": "#add8e6",
- "LinkHoverForegroundColor": "#FFFFFF",
- "ComboBoxForegroundColor": "#FFEE58",
- "ButtonInstallBackgroundColor": "#222222",
- "ButtonTweaksBackgroundColor": "#333333",
- "ButtonConfigBackgroundColor": "#444444",
- "ButtonUpdatesBackgroundColor": "#555555",
- "ButtonInstallForegroundColor": "#FFFFFF",
- "ButtonTweaksForegroundColor": "#FFFFFF",
- "ButtonConfigForegroundColor": "#FFFFFF",
- "ButtonUpdatesForegroundColor": "#FFFFFF",
- "ButtonBackgroundColor": "#000019",
- "ButtonBackgroundPressedColor": "#9CCC65",
- "ButtonBackgroundMouseoverColor": "#FF5733",
- "ButtonBackgroundSelectedColor": "#FF5733",
- "ButtonForegroundColor": "#9CCC65",
- "ToggleButtonOnColor": "#2e77ff",
- "ButtonBorderThickness": "1",
- "ButtonMargin": "1",
- "ButtonCornerRadius": "2",
- "ToggleButtonHeight": "25",
- "BorderColor": "#FFAC1C",
- "BorderOpacity": "0.2",
- "ShadowPulse": "Forever"
+ "CustomDialogFontSize": "12",
+ "CustomDialogFontSizeHeader": "14",
+ "CustomDialogIconSize": "25",
+ "CustomDialogWidth": "400",
+ "CustomDialogHeight": "200",
+
+ "FontSize": "12",
+ "FontFamily": "Arial",
+ "FontSizeHeading": "14",
+ "HeaderFontFamily": "Consolas, Monaco",
+
+ "CheckBoxBulletDecoratorFontSize": "14",
+ "CheckBoxMargin": "15,0,0,2",
+
+ "TabButtonFontSize": "14",
+ "TabButtonWidth": "100",
+ "TabButtonHeight": "25",
+ "TabRowHeightInPixels": "50",
+ "IconFontSize": "14",
+ "IconButtonSize": "35",
+ "WinUtilIconSize": "Auto",
+ "SettingsIconFontSize": "18",
+
+ "MicroWinLogoSize": "10",
+
+ "ComboBoxBackgroundColor": "#000000",
+ "LabelboxForegroundColor": "#FFEE58",
+ "MainForegroundColor": "#9CCC65",
+ "MainBackgroundColor": "#000000",
+ "LabelBackgroundColor": "#000000",
+ "LinkForegroundColor": "#add8e6",
+ "LinkHoverForegroundColor": "#FFFFFF",
+ "ComboBoxForegroundColor": "#FFEE58",
+
+ "ButtonFontSize": "12",
+ "ButtonFontFamily": "Arial",
+ "ButtonWidth": "200",
+ "ButtonHeight": "25",
+ "ConfigTabButtonFontSize": "16",
+
+ "SearchBarWidth": "200",
+ "SearchBarHeight": "25",
+ "SearchBarTextBoxFontSize": "16",
+ "SearchBarClearButtonFontSize": "14",
+
+ "ButtonInstallBackgroundColor": "#222222",
+ "ButtonTweaksBackgroundColor": "#333333",
+ "ButtonConfigBackgroundColor": "#444444",
+ "ButtonUpdatesBackgroundColor": "#555555",
+ "ButtonInstallForegroundColor": "#FFFFFF",
+ "ButtonTweaksForegroundColor": "#FFFFFF",
+ "ButtonConfigForegroundColor": "#FFFFFF",
+ "ButtonUpdatesForegroundColor": "#FFFFFF",
+ "ButtonBackgroundColor": "#000019",
+ "ButtonBackgroundPressedColor": "#9CCC65",
+ "ButtonBackgroundMouseoverColor": "#FF5733",
+ "ButtonBackgroundSelectedColor": "#FF5733",
+ "ButtonForegroundColor": "#9CCC65",
+ "ToggleButtonOnColor": "#2e77ff",
+
+ "ButtonBorderThickness": "1",
+ "ButtonMargin": "1",
+ "ButtonCornerRadius": "2",
+ "BorderColor": "#FFAC1C",
+ "BorderOpacity": "0.2",
+ "ShadowPulse": "Forever"
}
-}
\ No newline at end of file
+}
diff --git a/config/tweaks.json b/config/tweaks.json
index 637aa9dc..afae0216 100644
--- a/config/tweaks.json
+++ b/config/tweaks.json
@@ -2317,6 +2317,19 @@
"Invoke-WPFTweakPS7 -action \"PS5\""
]
},
+ "WPFTweaksPowershell7Tele": {
+ "Content": "Disable Powershell 7 Telemetry",
+ "Description": "This will create an Environment Variable called 'POWERSHELL_TELEMETRY_OPTOUT' with a value of '1' which will tell Powershell 7 to not send Telemetry Data.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a009_",
+ "InvokeScript": [
+ "[Environment]::SetEnvironmentVariable('POWERSHELL_TELEMETRY_OPTOUT', '1', 'Machine')"
+ ],
+ "UndoScript": [
+ "[Environment]::SetEnvironmentVariable('POWERSHELL_TELEMETRY_OPTOUT', '', 'Machine')"
+ ]
+ },
"WPFTweaksStorage": {
"Content": "Disable Storage Sense",
"Description": "Storage Sense deletes temp files automatically.",
@@ -2983,35 +2996,75 @@
]
},
"WPFToggleDarkMode": {
- "Content": "Dark Theme",
+ "Content": "Enable Dark Theme for Windows",
"Description": "Enable/Disable Dark Mode.",
"category": "Customize Preferences",
"panel": "2",
- "Order": "a060_",
+ "Order": "a100_",
"Type": "Toggle"
},
"WPFToggleBingSearch": {
- "Content": "Bing Search in Start Menu",
+ "Content": "Enable Bing Search in Start Menu",
"Description": "If enable then includes web search results from Bing in your Start Menu search.",
"category": "Customize Preferences",
"panel": "2",
- "Order": "a061_",
+ "Order": "a101_",
"Type": "Toggle"
},
"WPFToggleNumLock": {
- "Content": "NumLock on Startup",
+ "Content": "Enable NumLock on Startup",
"Description": "Toggle the Num Lock key state when your computer starts.",
"category": "Customize Preferences",
"panel": "2",
- "Order": "a062_",
+ "Order": "a102_",
"Type": "Toggle"
},
"WPFToggleVerboseLogon": {
- "Content": "Verbose Logon Messages",
+ "Content": "Enable Verbose Messages During Logon",
"Description": "Show detailed messages during the login process for troubleshooting and diagnostics.",
"category": "Customize Preferences",
"panel": "2",
- "Order": "a063_",
+ "Order": "a103_",
+ "Type": "Toggle"
+ },
+ "WPFToggleSnapWindow": {
+ "Content": "Enable Snap Window",
+ "Description": "If enabled you can align windows by dragging them. | Relogin Required",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a104_",
+ "Type": "Toggle"
+ },
+ "WPFToggleSnapFlyout": {
+ "Content": "Enable Snap Assist Flyout",
+ "Description": "If enabled then Snap preview is disabled when maximize button is hovered.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a105_",
+ "Type": "Toggle"
+ },
+ "WPFToggleSnapSuggestion": {
+ "Content": "Enable Snap Assist Suggestion",
+ "Description": "If enabled then you will get suggestions to snap other applications in the left over spaces.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a106_",
+ "Type": "Toggle"
+ },
+ "WPFToggleMouseAcceleration": {
+ "Content": "Enable Mouse Acceleration",
+ "Description": "If Enabled then Cursor movement is affected by the speed of your physical mouse movements.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a107_",
+ "Type": "Toggle"
+ },
+ "WPFToggleStickyKeys": {
+ "Content": "Enable Sticky Keys",
+ "Description": "If Enabled then Sticky Keys is activated - Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a108_",
"Type": "Toggle"
},
"WPFToggleShowExt": {
@@ -3019,55 +3072,31 @@
"Description": "If enabled then File extensions (e.g., .txt, .jpg) are visible.",
"category": "Customize Preferences",
"panel": "2",
- "Order": "a064_",
- "Type": "Toggle"
- },
- "WPFToggleSnapWindow": {
- "Content": "Snap Window",
- "Description": "If enabled you can align windows by dragging them. | Relogin Required",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a065_",
- "Type": "Toggle"
- },
- "WPFToggleSnapFlyout": {
- "Content": "Snap Assist Flyout",
- "Description": "If enabled then Snap preview is disabled when maximize button is hovered.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a066_",
- "Type": "Toggle"
- },
- "WPFToggleSnapSuggestion": {
- "Content": "Snap Assist Suggestion",
- "Description": "If enabled then you will get suggestions to snap other applications in the left over spaces.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a067_",
- "Type": "Toggle"
- },
- "WPFToggleMouseAcceleration": {
- "Content": "Mouse Acceleration",
- "Description": "If Enabled then Cursor movement is affected by the speed of your physical mouse movements.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a068_",
- "Type": "Toggle"
- },
- "WPFToggleStickyKeys": {
- "Content": "Sticky Keys",
- "Description": "If Enabled then Sticky Keys is activated - Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a070_",
+ "Order": "a200_",
"Type": "Toggle"
},
"WPFToggleTaskbarSearch": {
- "Content": "Taskbar Search",
+ "Content": "Show Search Button in Taskbar",
"Description": "If Enabled Search Button will be on the taskbar.",
"category": "Customize Preferences",
"panel": "2",
- "Order": "a068_",
+ "Order": "a201_",
+ "Type": "Toggle"
+ },
+ "WPFToggleTaskView": {
+ "Content": "Show Task View Button in Taskbar",
+ "Description": "If Enabled then Task View Button in Taskbar will be shown.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a202_",
+ "Type": "Toggle"
+ },
+ "WPFToggleTaskbarWidgets": {
+ "Content": "Show Widgets Button in Taskbar",
+ "Description": "If Enabled then Widgets Button in Taskbar will be shown.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a203_",
"Type": "Toggle"
},
"WPFOOSUbutton": {
@@ -3075,15 +3104,7 @@
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a039_",
- "Type": "220"
- },
- "WPFToggleTaskbarWidgets": {
- "Content": "Taskbar Widgets",
- "Description": "If Enabled then Widgets Icon in Taskbar will be shown.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a069_",
- "Type": "Toggle"
+ "Type": "Button"
},
"WPFchangedns": {
"Content": "DNS",
@@ -3098,42 +3119,37 @@
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a041_",
- "Type": "160"
+ "Type": "Button"
},
"WPFUndoall": {
"Content": "Undo Selected Tweaks",
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"Order": "a042_",
- "Type": "160"
+ "Type": "Button"
},
"WPFAddUltPerf": {
"Content": "Add and Activate Ultimate Performance Profile",
"category": "Performance Plans",
"panel": "2",
"Order": "a080_",
- "Type": "300"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFRemoveUltPerf": {
"Content": "Remove Ultimate Performance Profile",
"category": "Performance Plans",
"panel": "2",
"Order": "a081_",
- "Type": "300"
+ "Type": "Button",
+ "ButtonWidth": "300"
},
"WPFWinUtilShortcut": {
"Content": "Create WinUtil Shortcut",
"category": "Shortcuts",
"panel": "2",
"Order": "a082_",
- "Type": "300"
- },
- "WPFToggleTaskView": {
- "Content": "Task View",
- "Description": "If Enabled then Task View Icon in Taskbar will be shown.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a069_",
- "Type": "Toggle"
+ "Type": "Button",
+ "ButtonWidth": "300"
}
}
diff --git a/KnownIssues.md b/docs/KnownIssues.md
similarity index 89%
rename from KnownIssues.md
rename to docs/KnownIssues.md
index 4acc89d1..3f1e5ce8 100644
--- a/KnownIssues.md
+++ b/docs/KnownIssues.md
@@ -7,7 +7,7 @@
- If you are having TLS 1.2 issues, or are having trouble resolving `christitus.com/win` then run with the following command:
-```
+```ps1
[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12;iex(New-Object Net.WebClient).DownloadString('https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1')
```
@@ -22,14 +22,14 @@ If you are still having issues try using a **VPN**, or changing your **DNS provi
- Script doesn't run/PowerShell crashes:
1. Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11)
2. Run:
- ```
+ ```ps1
Set-ExecutionPolicy Unrestricted -Scope Process -Force
```
3. Run:
- ```
+ ```ps1
irm christitus.com/win | iex
```
-
+
### Other Issues:
- Windows taking longer to shut down:
@@ -38,12 +38,12 @@ If you are still having issues try using a **VPN**, or changing your **DNS provi
control /name Microsoft.PowerOptions /page pageGlobalSettings
```
- If that doesn't work, Disable Hibernation: Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11) and enter:
- ```
+ ```ps1
powercfg /H off
```
- [#69](https://github.com/ChrisTitusTech/winutil/issues/69) [95](https://github.com/ChrisTitusTech/winutil/issues/95) [#232](https://github.com/ChrisTitusTech/winutil/issues/232) Windows Search does not work: Enable Background Apps
- [#198](https://github.com/ChrisTitusTech/winutil/issues/198) Xbox Game Bar Activation Broken: Set the Xbox Accessory Management Service to Automatic
-```
+```ps1
Get-Service -Name "XboxGipSvc" | Set-Service -StartupType Automatic
```
@@ -51,14 +51,3 @@ Get-Service -Name "XboxGipSvc" | Set-Service -StartupType Automatic
- (Windows 11) Quick Settings no longer works: Launch the Script and click 'Enable Action Center'
- Explorer no longer launches: Go to Control Panel, File Explorer Options, Change the 'Open File Explorer to' option to 'This PC'.
-
-- Script doesn't run/PowerShell crashes:
- 1. Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11)
- 2. Run:
- ```
- Set-ExecutionPolicy Unrestricted -Scope Process -Force
- ```
- 3. Run:
- ```
- irm christitus.com/win | iex
- ```
diff --git a/docs/assets/CommitGHD.png b/docs/assets/CommitGHD.png
new file mode 100644
index 00000000..8ab089b2
Binary files /dev/null and b/docs/assets/CommitGHD.png differ
diff --git a/docs/assets/CreateBranch.png b/docs/assets/CreateBranch.png
new file mode 100644
index 00000000..8d5eef07
Binary files /dev/null and b/docs/assets/CreateBranch.png differ
diff --git a/docs/assets/ForkButton.png b/docs/assets/ForkButton.png
new file mode 100644
index 00000000..9632f271
Binary files /dev/null and b/docs/assets/ForkButton.png differ
diff --git a/wiki/Get-Installed.png b/docs/assets/Get-Installed.png
similarity index 100%
rename from wiki/Get-Installed.png
rename to docs/assets/Get-Installed.png
diff --git a/docs/assets/MicroWinScreen.png b/docs/assets/MicroWinScreen.png
new file mode 100644
index 00000000..b815187d
Binary files /dev/null and b/docs/assets/MicroWinScreen.png differ
diff --git a/docs/assets/ProgramInstall.png b/docs/assets/ProgramInstall.png
new file mode 100644
index 00000000..654fcadc
Binary files /dev/null and b/docs/assets/ProgramInstall.png differ
diff --git a/docs/assets/ProgramInstallButton.png b/docs/assets/ProgramInstallButton.png
new file mode 100644
index 00000000..1bfb5cb0
Binary files /dev/null and b/docs/assets/ProgramInstallButton.png differ
diff --git a/docs/assets/ProgramUninstall.png b/docs/assets/ProgramUninstall.png
new file mode 100644
index 00000000..0f1b8d3d
Binary files /dev/null and b/docs/assets/ProgramUninstall.png differ
diff --git a/wiki/Settings-Export.png b/docs/assets/Settings-Export.png
similarity index 100%
rename from wiki/Settings-Export.png
rename to docs/assets/Settings-Export.png
diff --git a/docs/assets/TweaksScreen.PNG b/docs/assets/TweaksScreen.PNG
new file mode 100644
index 00000000..6ed96b0e
Binary files /dev/null and b/docs/assets/TweaksScreen.PNG differ
diff --git a/docs/assets/favicon.png b/docs/assets/favicon.png
new file mode 100644
index 00000000..a4f4bc5d
Binary files /dev/null and b/docs/assets/favicon.png differ
diff --git a/screen-install.png b/docs/assets/screen-install.png
similarity index 100%
rename from screen-install.png
rename to docs/assets/screen-install.png
diff --git a/docs/contribute.md b/docs/contribute.md
new file mode 100644
index 00000000..857f425e
--- /dev/null
+++ b/docs/contribute.md
@@ -0,0 +1,57 @@
+# How to Contribute?
+
+## Issues
+
+* If you encounter any challenges or problems with the script, I kindly request that you submit them via the "Issues" tab on the GitHub repository. By filling out the provided template, you can provide specific details about the issue, allowing me (and others in the community) to promptly address any bugs, or consider feature requests.
+
+## Contribute Code
+
+* Pull Requests are now handled directly on the **MAIN branch**. This was done since we can now select specific releases to launch via releases in GitHub.
+
+* If you're doing code changes, then you can submit a PR to `main` branch, but I am very selective about these.
+
+> [!WARNING]
+> Do not use a code formatter, massive amounts of line changes, and make multiple feature changes.
+> EACH FEATURE CHANGE SHOULD BE IT'S OWN Pull Request!
+
+* When creating pull requests, it is essential to thoroughly document all changes made. This includes, but 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 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.
+
+> [!NOTE]
+> When creating a function, please include "WPF" or "WinUtil" in the file name so it can be loaded into the runspace.
+
+## Walk through
+
+### 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](assets/ForkButton.png)
+
+### Clone the Fork
+* While you can make your changes directly through the Web, we recommend cloning the repo to your device to test your fork easily.
+* Using the application GitHub Desktop (available in WinUtil) you can easily manage your repos locally. You can do it using other tools like git-cli (available in WinUtil), we recommend GitHub Desktop for ease of use.
+* Install GitHub Desktop if not already installed
+* Log in using the same GitHub account u used to fork WinUtil
+* Choose the fork under "Your Repositories" and press "clone {repo name}"
+* Create a new Branch and name it something relatable to your changes,
+
+* Now you can modify WinUtil to your liking using your prefered text editor.
+
+
+### Testing your changes
+* To test to see if your changes work as intended run following commands in a powershell teminal:
+
+* Change the directory where you are running the commands to the forked project.
+* `cd {path to the folder with the compile.ps1}`
+* Run following command to compile and run Winutil
+* `.\Compile.ps1 -run`
+* 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.
+
+### Commiting the changes
+* Commit your changes once you are fine with the result
+* Push the changes to "upload" them to your fork on github.com.
+
+### 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 information that is provided on the template. Once all the information is filled in correctly check your PR to make sure there is not a 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 in by Chris you will be able to see your changes in the /windev build.
+* If you do not see your feature in the main /win build that is fine. As all new changes go into the /windev build to make sure everything is working ok before going fully public.
+* Congrats you just submitted your first PR. Thank you so much for contributing to WinUtil.
\ No newline at end of file
diff --git a/docs/faq.md b/docs/faq.md
new file mode 100644
index 00000000..e3b3daef
--- /dev/null
+++ b/docs/faq.md
@@ -0,0 +1,4 @@
+# FAQ's
+
+## How do I uninstall WinUtil?
+* You do not have to uninstall WinUtil. As it is a script you run from Powershell it only loads into your RAM. This means as soon as you close WinUtil it will be deleted off your system.
\ No newline at end of file
diff --git a/docs/img/ProgramInstall.png b/docs/img/ProgramInstall.png
new file mode 100644
index 00000000..654fcadc
Binary files /dev/null and b/docs/img/ProgramInstall.png differ
diff --git a/docs/img/ProgramInstallButton.png b/docs/img/ProgramInstallButton.png
new file mode 100644
index 00000000..4a3b181b
Binary files /dev/null and b/docs/img/ProgramInstallButton.png differ
diff --git a/docs/img/favicon.png b/docs/img/favicon.png
new file mode 100644
index 00000000..a4f4bc5d
Binary files /dev/null and b/docs/img/favicon.png differ
diff --git a/docs/index.md b/docs/index.md
new file mode 100644
index 00000000..ace691f3
--- /dev/null
+++ b/docs/index.md
@@ -0,0 +1,12 @@
+# Welcome to Chris Titus WinUtil Official Documentation!
+
+[![](https://dcbadge.limes.pink/api/server/https://discord.gg/RUbZUZyByQ)](https://discord.gg/RUbZUZyByQ)
+
+## Running
+
+There are 4 ways to run WinUtil. The 4 ways goes as follows:
+
+* `irm christitus.com/win | iex` - Runs WinUtil from ChrisTitus's website using the latest Full Releases.
+* `irm https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1 | iex` - Runs WinUtil from github using the latest Full Release.
+* `irm christitus.com/windev | iex` - Runs WinUtil from ChrisTitus website using the latest Pre-Release.
+* `irm https://github.com/ChrisTitusTech/winutil/releases/latest/download/windev.ps1 | iex` - Runs WinUtil from github using the latest Pre-Release.
\ No newline at end of file
diff --git a/docs/updates.md b/docs/updates.md
new file mode 100644
index 00000000..758fc4bd
--- /dev/null
+++ b/docs/updates.md
@@ -0,0 +1,3 @@
+# Update Log
+
+#
\ No newline at end of file
diff --git a/docs/userguide.md b/docs/userguide.md
new file mode 100644
index 00000000..38a1e412
--- /dev/null
+++ b/docs/userguide.md
@@ -0,0 +1,159 @@
+# User Guide
+
+## Overview
+* short one
+
+
+## Walkthrough
+
+### Program
+
+#### Installation & Updates
+* To install programs select the programs you wish to install or update like the picture below.
+![Program Install](assets/ProgramInstall.png)
+* Once you have selected the programs you wish to install click the select Install/Upgrade Selected button as seen below.
+![Program Install Button](assets/ProgramInstallButton.png)
+
+#### Upgrade All
+* Press the button to upgrade all installed programs that are supported by WinGet, there is no selection needed.
+
+#### Uninstall
+* To uninstall programs select the programs you wish to uninstall like the picture below.
+![Program Uninstall](assets/ProgramInstall.png)
+* Once you have selected the programs you wish to uninstall click the select Uninstall Selected button as seen below.
+![Program Uninstall Button](assets/ProgramUninstall.png)
+
+#### Get Installed
+* Checks for installed programs that are supported by WinGet and selects them in the Utility.
+
+#### Clear Selection
+* Clears ur current selection so no program is checked.
+
+### Tweaks
+
+#### Tweaks Addition
+* To enable tweaks on your system select Tweaks at the top next to Install.
+* Then you can select what tweaks you want adding to your system. We do have some presets you can select from at the top you can see this in the picture below.
+![Tweaks Screen](assets/TweaksScreen.PNG)
+* After you have chosen your tweaks click the Run Tweaks button at the bottom of the screen.
+
+#### Tweaks Removal
+* To disable tweaks on your system select Tweaks at the top next to Install.
+* Then you can select what tweaks you want removing from your system.
+* After you have chosen your tweaks you want to remove click the Undo Selected Tweaks button at the bottom of the screen.
+
+#### Essential Tweaks
+* The Tweaks under the Essential
+
+#### Advanced Tweaks - CAUTION
+
+#### O&O Shutup
+
+#### DNS
+
+#### Customize Preferences
+
+#### Performance Plans
+
+#### Shortcuts
+
+
+![Tweaks Screen](assets/TweaksScreen.PNG)
+
+### Config
+
+#### Features
+* Install the most used Windows Features by checking the checkbox and clicking "Install Features" to install them
+
+#### Fixes
+* Quick Fixes for your system if you are having Issues.
+
+* Set Up Autologin
+* Reset Windows Update
+* Reset Network
+* System Corruption Scan
+* WinGet Reinstall
+* Remove Adobe Creative Cloud
+
+#### Legacy Windows Panels
+
+### Updates | Not working rn
+
+### MicroWin
+
+**MicroWin** lets you customize your Windows 10 and 11 installation images by debloating them however you want.
+
+![MicroWin](assets/MicroWinScreen.png)
+
+#### Basic usage
+
+1. Specify the source Windows ISO to customize
+
+ * If you don't have a Windows ISO file prepared, you can download it using the Media Creation Tool for the respective Windows version. [Here](https://go.microsoft.com/fwlink/?linkid=2156295) is the Windows 11 version, and [here](https://go.microsoft.com/fwlink/?LinkId=2265055) is the Windows 10 version
+
+2. Configure the debloat process
+3. Specify the target location for the new ISO file
+4. Let the magic happen!
+
+**NOTE:** this feature is still in development and you may encounter some issues with the generated images. If that happens, don't hesitate to report an issue!
+
+#### Options
+
+* **Download oscdimg.exe from CTT GitHub repo** will grab a OSCDIMG executable from the GitHub repository instead of a Chocolatey package
+
+ OSCDIMG is the tool that lets the program create ISO images. Typically, you would find this in the [Windows Assessment and Deployment Kit](https://learn.microsoft.com/en-us/windows-hardware/get-started/adk-install)
+
+* Selecting a scratch directory will copy the contents of the ISO file to the directory you specify instead of an automatically generated folder on the `%TEMP%` directory
+* You can select an edition of Windows to debloat (**SKU**) using the convenient drop-down menu
+
+ By default, MicroWin will debloat the Pro edition, but you can choose any edition you want
+
+
+##### Customization options
+
+* **Keep Provisioned Packages**: leaving this option unticked (default) will try to remove every operating system package
+
+ Some packages may remain after processing. This can happen if the packages in question were permanent ones or had been superseded by newer versions
+
+* **Keep Appx Packages**: leaving this option unticked (default) will try to remove every Microsoft Store app from the Windows image
+
+ This option will exclude some applications that are essential in the case that you want or need to add a Store app later on
+
+* **Keep Defender**: leaving this option unticked will try to remove every part of Windows Defender, including the Windows Security app
+
+ Leaving this option unticked is **NOT recommended** unless you plan to use a third-party antivirus solution on your MicroWin installation. On that regard, don't install AVs with bad reputation or rogueware
+
+* **Keep Edge**: leaving this option unticked will try to remove every part of the Microsoft Edge browser using the best methods available
+
+ Leaving this option unticked is not recommended because it might break some applications that might depend on the `Edge WebView2` runtime. However, if that happens, you can easily [reinstall it](https://developer.microsoft.com/en-us/microsoft-edge/webview2)
+
+
+##### Driver integration options
+
+* **Inject drivers** will add the drivers in the folder that you specify to the target Windows image
+* **Import drivers from current system** will add every third-party driver that is present in your active installation
+
+ This makes the target image have the same hardware compatibility of the active installation. However, this means that you will only be able to install the target Windows image and take full advantage of it on computers with **the same hardware**. To avoid this, you'll need to customize the `install.wim` file of the target ISO in the `sources` folder
+
+
+##### Ventoy options
+
+* **Copy to Ventoy** will copy the target ISO file to any USB drive with [Ventoy](https://ventoy.net/en/index.html) installed
+
+ Ventoy is a solution that lets you boot to any ISO file stored in a drive. Think of it as having multiple bootable USBs in one. Do note though that your drive needs to have enough free space for the target ISO file
+
+
+## Automation
+
+* Some features are available through automation. This allows you to save your config file pass it to Winutil walk away and come back to a finished system. Here is how you can set it up currently with Winutil >24.01.15
+
+* On the Install Tab, click "Get Installed", this will get all installed apps **supported by Winutil** on the system
+![GetInstalled](assets/Get-Installed.png)
+* Click on the Settings cog in the upper right corner and chose Export, chose file file and location, this will export the setting file.
+![SettingsExport](assets/Settings-Export.png)
+* Copy this file to a USB or somewhere you can use after Windows installation.
+* Use Microwin tab to create a custom Windows image.
+* Install the Windows image.
+* In the new Windows, Open PowerShell in the admin mode and run command to automatically apply tweaks and install apps from the config file.
+* ``` iex "& { $(irm christitus.com/win) } -Config [path-to-your-config] -Run" ```
+* Have a cup of coffee! Come back when it's done.
\ No newline at end of file
diff --git a/functions/private/ConvertTo-Icon.ps1 b/functions/private/ConvertTo-Icon.ps1
index 5ed7f5e7..44f4d6be 100644
--- a/functions/private/ConvertTo-Icon.ps1
+++ b/functions/private/ConvertTo-Icon.ps1
@@ -2,26 +2,92 @@ function ConvertTo-Icon {
<#
.DESCRIPTION
- This function will convert PNG to ICO file
+ This function will convert BMP, GIF, EXIF, JPG, PNG and TIFF to ICO file
+
+ .PARAMETER bitmapPath
+ The file path to bitmap image to make '.ico' file out of.
+ Supported file types according to Microsoft Documentation is the following:
+ BMP, GIF, EXIF, JPG, PNG and TIFF.
+
+ .PARAMETER iconPath
+ The file path to write the new '.ico' resource.
+
+ .PARAMETER overrideIconFile
+ An optional boolean Parameter that makes the function overrides
+ the Icon File Path if the file exists. Defaults to $true.
.EXAMPLE
- ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath $iconPath
+ try {
+ ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico"
+ } catch [System.IO.FileNotFoundException] {
+ # Handle the thrown exception here...
+ }
+
+ This Example makes a '.ico' file at "$env:TEMP\cttlogo.ico" File Path using the bitmap file
+ found in "$env:TEMP\cttlogo.png", the function overrides the '.ico' File if it's found.
+ this function will throw a FileNotFound Exception at the event of not finding the provided bitmap File Path.
+
+ .EXAMPLE
+ try {
+ ConvertTo-Icon "$env:TEMP\cttlogo.png" "$env:TEMP\cttlogo.ico"
+ } catch [System.IO.FileNotFoundException] {
+ # Handle the thrown exception here...
+ }
+
+ This Example is the same as Example 1, but uses Positional Parameters instead.
+
+ .EXAMPLE
+ if (Test-Path "$env:TEMP\cttlogo.png") {
+ ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico"
+ }
+
+ This Example is same as Example 1, but checks if the bitmap File exists before calling 'ConvertTo-Icon' Function.
+ This's the recommended way of using this function, as it doesn't require any try-catch blocks.
+
+ .EXAMPLE
+ try {
+ ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico" -overrideIconFile $false
+ } catch [System.IO.FileNotFoundException] {
+ # Handle the thrown exception here...
+ }
+
+ This Example make use of '-overrideIconFile' Optional Parameter, the default for this paramter is $true.
+ By doing '-overrideIconFile $false', the 'ConvertTo-Icon' function will raise an exception that needs to be catched throw a 'catch' Code Block,
+ otherwise it'll crash the running PowerShell instance/process.
+
#>
- param( [Parameter(Mandatory=$true)]
- $bitmapPath,
- $iconPath = "$env:temp\newicon.ico"
+ param(
+ [Parameter(Mandatory=$true, position=0)]
+ [string]$bitmapPath,
+ [Parameter(Mandatory=$true, position=1)]
+ [string]$iconPath,
+ [Parameter(position=2)]
+ [bool]$overrideIconFile = $true
)
Add-Type -AssemblyName System.Drawing
if (Test-Path $bitmapPath) {
+ if ((Test-Path $iconPath) -AND ($overrideIconFile -eq $false)) {
+ Write-Host "[ConvertTo-Icon] Icon File is found at '$iconPath', and the 'overrideIconFile' Parameter is set to '$overrideIconFile'. Skipping the bitmap to icon convertion..." -ForegroundColor Yellow
+ return
+ }
+
+ # Load bitmap file into memory, and make an Icon version out of it
$b = [System.Drawing.Bitmap]::FromFile($bitmapPath)
$icon = [System.Drawing.Icon]::FromHandle($b.GetHicon())
+
+ # Create the folder for the new icon file if it doesn't exists
+ $iconFolder = (New-Object System.IO.FileInfo($iconPath)).Directory.FullName
+ [System.IO.Directory]::CreateDirectory($iconFolder) | Out-Null
+
+ # Write the Icon File and do some cleaning-up
$file = New-Object System.IO.FileStream($iconPath, 'OpenOrCreate')
$icon.Save($file)
$file.Close()
$icon.Dispose()
- #explorer "/SELECT,$iconpath"
}
- else { Write-Warning "$BitmapPath does not exist" }
-}
\ No newline at end of file
+ else {
+ throw [System.IO.FileNotFoundException] "[ConvertTo-Icon] The provided bitmap File Path is not found at '$bitmapPath'."
+ }
+}
diff --git a/functions/private/Get-TabXaml.ps1 b/functions/private/Get-TabXaml.ps1
index ea6d69f5..231af7af 100644
--- a/functions/private/Get-TabXaml.ps1
+++ b/functions/private/Get-TabXaml.ps1
@@ -6,8 +6,10 @@ function Get-TabXaml {
It takes the tabname and the number of columns to display the applications in as input and returns the XAML for the tab as output
.PARAMETER tabname
The name of the tab to generate XAML for
+ Note: the 'tabname' parameter must equal one of the json files found in $sync.configs variable
+ Otherwise, it'll throw an exception
.PARAMETER columncount
- The number of columns to display the applications in
+ The number of columns to display the applications in, default is 0
.OUTPUTS
The XAML for the tab
.EXAMPLE
@@ -15,10 +17,20 @@ function Get-TabXaml {
#>
- param( [Parameter(Mandatory=$true)]
- $tabname,
- $columncount = 0
+ param(
+ [Parameter(Mandatory, position=0)]
+ [string]$tabname,
+
+ [Parameter(position=1)]
+ [ValidateRange(0,10)] # 10 panels as max number is more then enough
+ [int]$columncount = 0
)
+
+ # Validate tabname
+ if ($sync.configs.$tabname -eq $null) {
+ throw "Invalid parameter passed, can't find '$tabname' in '`$sync.configs' variable, please double check any calls to 'Get-TabXaml' function."
+ }
+
$organizedData = @{}
# Iterate through JSON data and organize by panel and category
foreach ($appName in $sync.configs.$tabname.PSObject.Properties.Name) {
@@ -39,6 +51,7 @@ function Get-TabXaml {
ComboItems = $appInfo.ComboItems
# Checked is the property to set startup checked status of checkbox (Default is false)
Checked = $appInfo.Checked
+ ButtonWidth = $appInfo.ButtonWidth
}
if (-not $organizedData.ContainsKey($appObject.panel)) {
@@ -53,7 +66,22 @@ function Get-TabXaml {
# Add Order property to keep the original order of tweaks and features
$organizedData[$appObject.panel][$appInfo.Category]["$($appInfo.order)$appName"] = $appObject
}
- $panelcount=0
+
+ # Same tab amount in last line of 'inputXML.xaml' file
+ # TODO: Get the base repeat (amount) of tabs from last line (or even lines)
+ # so it can dynamicly react to whatever is before this generated XML string.
+ # .. may be solve this even before calling this function, and pass the result as a parameter?
+ $tab_repeat = 7
+ $spaces_per_tab = 4 # The convenction used across the code base
+ $tab_as_spaces = $(" " * $spaces_per_tab)
+ $precal_indent = $($tab_as_spaces * $tab_repeat)
+ $precal_indent_p1 = $($tab_as_spaces * ($tab_repeat + 1))
+ $precal_indent_p2 = $($tab_as_spaces * ($tab_repeat + 2))
+ $precal_indent_m1 = $($tab_as_spaces * ($tab_repeat - 1))
+ $precal_indent_m2 = $($tab_as_spaces * ($tab_repeat - 2))
+
+ # Calculate the needed number of panels
+ $panelcount = 0
$paneltotal = $organizedData.Keys.Count
if ($columncount -gt 0) {
$appcount = $sync.configs.$tabname.PSObject.Properties.Name.count + $organizedData["0"].Keys.count
@@ -61,19 +89,27 @@ function Get-TabXaml {
$paneltotal = $columncount
}
# add ColumnDefinitions to evenly draw colums
- $blockXml="`r`n"+("`r`n"*($paneltotal))+"`r`n"
- # Iterate through organizedData by panel, category, and application
+ $blockXml = ""
+ $blockXml += $("`r`n" + " " * ($spaces_per_tab * $tab_repeat) +
+ "") * $paneltotal
+ $blockXml += $("`r`n" + " " * ($spaces_per_tab * ($tab_repeat - 1))) +
+ "" + "`r`n"
+
+ # Iterate through 'organizedData' by panel, category, and application
$count = 0
foreach ($panel in ($organizedData.Keys | Sort-Object)) {
- $blockXml += "`r`n`r`n"
+ $blockXml += $precal_indent_m1 + "" + "`r`n"
+ $blockXml += $precal_indent + "" + "`r`n"
$panelcount++
foreach ($category in ($organizedData[$panel].Keys | Sort-Object)) {
$count++
if ($columncount -gt 0) {
$panelcount2 = [Int](($count)/$maxcount-0.5)
if ($panelcount -eq $panelcount2 ) {
- $blockXml +="`r`n`r`n`r`n"
- $blockXml += "`r`n`r`n"
+ $blockXml += $precal_indent_p2 + "" + "`r`n"
+ $blockXml += $precal_indent_p1 + "" + "`r`n"
+ $blockXml += $precal_indent_p1 + "" + "`r`n"
+ $blockXml += $precal_indent_p2 + "" + "`r`n"
$panelcount++
}
}
@@ -83,49 +119,99 @@ function Get-TabXaml {
$categorycontent = $($category -replace '^.__', '')
$categoryname = Get-WPFObjectName -type "Label" -name $categorycontent
- $blockXml += "`r`n"
+ $blockXml += $("`r`n" + " " * ($spaces_per_tab * $tab_repeat)) +
+ "" + "`r`n" + "`r`n"
$sortedApps = $organizedData[$panel][$category].Keys | Sort-Object
foreach ($appName in $sortedApps) {
$count++
+
if ($columncount -gt 0) {
$panelcount2 = [Int](($count)/$maxcount-0.5)
+ # Verify the indentation actually works...
if ($panelcount -eq $panelcount2 ) {
- $blockXml +="`r`n`r`n`r`n"
- $blockXml += "`r`n`r`n"
+ $blockXml += $precal_indent_m1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent_m2 +
+ "" + "`r`n"
+ $blockXml += $precal_indent_m2 +
+ "" + "`r`n"
+ $blockXml += $precal_indent_m1 +
+ "" + "`r`n"
$panelcount++
}
}
+
$appInfo = $organizedData[$panel][$category][$appName]
- if ("Toggle" -eq $appInfo.Type) {
- $blockXml += "`r`n`r`n"
- } elseif ("Combobox" -eq $appInfo.Type) {
- $blockXml += "`r`n"
- # If it is a digit, type is button and button length is digits
- } elseif ($appInfo.Type -match "^[\d\.]+$") {
- $blockXml += "`r`n"
- # else it is a checkbox
- } else {
- $checkedStatus = If ($null -eq $appInfo.Checked) {""} Else {"IsChecked=`"$($appInfo.Checked)`" "}
- if ($null -eq $appInfo.Link)
- {
- $blockXml += "`r`n"
+
+ "Combobox" {
+ $blockXml += $precal_indent_m1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent + "" + "`r`n"
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+
+ $addfirst="IsSelected=""True"""
+ foreach ($comboitem in ($appInfo.ComboItems -split " ")) {
+ $blockXml += $precal_indent_p1 +
+ "" + "`r`n"
+ $addfirst=""
+ }
+
+ $blockXml += $precal_indent_p1 + "" + "`r`n"
+ $blockXml += $precal_indent + "" + "`r`n"
}
- else
- {
- $blockXml += "`r`n`r`n`r`n"
+
+ "Button" {
+ if ($appInfo.ButtonWidth -ne $null) {
+ $ButtonWidthStr = "Width=""$($appInfo.ButtonWidth)"""
+ }
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ }
+
+ # else it is a checkbox
+ default {
+ $checkedStatus = If ($appInfo.Checked -eq $null) {""} Else {" IsChecked=""$($appInfo.Checked)"""}
+ if ($appInfo.Link -eq $null) {
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ } else {
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ $blockXml += $precal_indent_p1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent_p1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ }
}
}
}
}
- $blockXml +="`r`n`r`n`r`n"
+
+ $blockXml += $precal_indent_p1 + "" + "`r`n"
+ $blockXml += $precal_indent + "" + "`r`n"
}
return ($blockXml)
}
diff --git a/functions/private/Invoke-WinUtilCurrentSystem.ps1 b/functions/private/Invoke-WinUtilCurrentSystem.ps1
index 000dea4c..a65ef60c 100644
--- a/functions/private/Invoke-WinUtilCurrentSystem.ps1
+++ b/functions/private/Invoke-WinUtilCurrentSystem.ps1
@@ -58,6 +58,9 @@ Function Invoke-WinUtilCurrentSystem {
$values += $False
}
}
+ else {
+ $values += $False
+ }
}
}
diff --git a/functions/private/Invoke-WinUtilTaskbarSearch.ps1 b/functions/private/Invoke-WinUtilTaskbarSearch.ps1
index e022cf89..b297c023 100644
--- a/functions/private/Invoke-WinUtilTaskbarSearch.ps1
+++ b/functions/private/Invoke-WinUtilTaskbarSearch.ps1
@@ -2,10 +2,10 @@ function Invoke-WinUtilTaskbarSearch {
<#
.SYNOPSIS
- Enable/Disable Taskbar Widgets
+ Enable/Disable Taskbar Search Button.
.PARAMETER Enabled
- Indicates whether to enable or disable Taskbar Widgets
+ Indicates whether to enable or disable Taskbar Search Button.
#>
Param($Enabled)
diff --git a/functions/private/Set-WinUtilDNS.ps1 b/functions/private/Set-WinUtilDNS.ps1
index 314a5ac8..0810e6d2 100644
--- a/functions/private/Set-WinUtilDNS.ps1
+++ b/functions/private/Set-WinUtilDNS.ps1
@@ -24,6 +24,7 @@ function Set-WinUtilDNS {
}
Else{
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary)", "$($sync.configs.dns.$DNSProvider.Secondary)")
+ Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary6)", "$($sync.configs.dns.$DNSProvider.Secondary6)")
}
}
}
@@ -31,4 +32,4 @@ function Set-WinUtilDNS {
Write-Warning "Unable to set DNS Provider due to an unhandled exception"
Write-Warning $psitem.Exception.StackTrace
}
-}
+}
\ No newline at end of file
diff --git a/functions/private/Show-CustomDialog.ps1 b/functions/private/Show-CustomDialog.ps1
index 594d9019..dc6eb0de 100644
--- a/functions/private/Show-CustomDialog.ps1
+++ b/functions/private/Show-CustomDialog.ps1
@@ -15,6 +15,15 @@ function Show-CustomDialog {
.PARAMETER Height
The height of the custom dialog window.
+ .PARAMETER FontSize
+ The Font Size for text shown inside the custom dialog window.
+
+ .PARAMETER HeaderFontSize
+ The Font Size for the Header of the custom dialog window.
+
+ .PARAMETER IconSize
+ The Size to use for Icon inside the custom dialog window.
+
.EXAMPLE
Show-CustomDialog -Message "This is a custom dialog with a message and an image above." -Width 300 -Height 200
@@ -22,7 +31,10 @@ function Show-CustomDialog {
param(
[string]$Message,
[int]$Width = 300,
- [int]$Height = 200
+ [int]$Height = 200,
+ [int]$FontSize = 10,
+ [int]$HeaderFontSize = 14,
+ [int]$IconSize = 25
)
Add-Type -AssemblyName PresentationFramework
@@ -48,6 +60,7 @@ function Show-CustomDialog {
$dialog.Foreground = $foregroundColor
$dialog.Background = $backgroundColor
$dialog.FontFamily = $font
+ $dialog.FontSize = $FontSize
# Create a Border for the green edge with rounded corners
$border = New-Object Windows.Controls.Border
@@ -111,8 +124,8 @@ function Show-CustomDialog {
[Windows.Controls.Grid]::SetRow($stackPanel, 0) # Set the row to the second row (0-based index)
$viewbox = New-Object Windows.Controls.Viewbox
- $viewbox.Width = 25
- $viewbox.Height = 25
+ $viewbox.Width = $IconSize
+ $viewbox.Height = $IconSize
# Combine the paths into a single string
# $cttLogoPath = @"
@@ -174,7 +187,7 @@ $cttLogoPath = @"
# Add "Winutil" text
$winutilTextBlock = New-Object Windows.Controls.TextBlock
$winutilTextBlock.Text = "Winutil"
- $winutilTextBlock.FontSize = 18 # Adjust font size as needed
+ $winutilTextBlock.FontSize = $HeaderFontSize
$winutilTextBlock.Foreground = $foregroundColor
$winutilTextBlock.Margin = New-Object Windows.Thickness(10, 5, 10, 5) # Add margins around the text block
$stackPanel.Children.Add($winutilTextBlock)
@@ -242,6 +255,7 @@ $cttLogoPath = @"
# Add OK button
$okButton = New-Object Windows.Controls.Button
$okButton.Content = "OK"
+ $okButton.FontSize = $FontSize
$okButton.Width = 80
$okButton.Height = 30
$okButton.HorizontalAlignment = [Windows.HorizontalAlignment]::Center
diff --git a/functions/public/Invoke-WPFButton.ps1 b/functions/public/Invoke-WPFButton.ps1
index 5ca1dc78..b2ed9c12 100644
--- a/functions/public/Invoke-WPFButton.ps1
+++ b/functions/public/Invoke-WPFButton.ps1
@@ -27,8 +27,8 @@ function Invoke-WPFButton {
"WPFclearWinget" {Invoke-WPFPresets -preset $null -imported $true -CheckBox "WPFInstall"}
"WPFtweaksbutton" {Invoke-WPFtweaksbutton}
"WPFOOSUbutton" {Invoke-WPFOOSU}
- "WPFAddUltPerf" {Invoke-WPFUltimatePerformance -State "Enabled"}
- "WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance -State "Disabled"}
+ "WPFAddUltPerf" {Invoke-WPFUltimatePerformance -State "Enable"}
+ "WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance -State "Disable"}
"WPFundoall" {Invoke-WPFundoall}
"WPFFeatureInstall" {Invoke-WPFFeatureInstall}
"WPFPanelDISM" {Invoke-WPFPanelDISM}
diff --git a/functions/public/Invoke-WPFMicrowin.ps1 b/functions/public/Invoke-WPFMicrowin.ps1
index 10b3037f..d796491e 100644
--- a/functions/public/Invoke-WPFMicrowin.ps1
+++ b/functions/public/Invoke-WPFMicrowin.ps1
@@ -178,13 +178,14 @@ public class PowerManagement {
Remove-Features -keepDefender:$keepDefender
Write-Host "Removing features complete!"
- Write-Host "Removing Appx Bloat"
if (!$keepPackages)
{
+ Write-Host "Removing OS packages"
Remove-Packages
}
if (!$keepProvisionedPackages)
{
+ Write-Host "Removing Appx Bloat"
Remove-ProvisionedPackages -keepSecurity:$keepDefender
}
diff --git a/functions/public/Invoke-WPFShortcut.ps1 b/functions/public/Invoke-WPFShortcut.ps1
index f8ae04f9..8a26b82a 100644
--- a/functions/public/Invoke-WPFShortcut.ps1
+++ b/functions/public/Invoke-WPFShortcut.ps1
@@ -27,8 +27,10 @@ function Invoke-WPFShortcut {
$ArgumentsToSourceExe = "$powershell '$IRM'"
$DestinationName = "WinUtil.lnk"
+ Invoke-WebRequest -Uri "https://christitus.com/images/logo-full.png" -OutFile "$env:TEMP\cttlogo.png"
+
if (Test-Path -Path "$env:TEMP\cttlogo.png") {
- $iconPath = "$env:SystempRoot\cttlogo.ico"
+ $iconPath = "$env:LOCALAPPDATA\winutil\cttlogo.ico"
ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath $iconPath
}
}
@@ -40,20 +42,23 @@ function Invoke-WPFShortcut {
$FileBrowser.Filter = "Shortcut Files (*.lnk)|*.lnk"
$FileBrowser.FileName = $DestinationName
- # Do an Early Return if The Save Shortcut operation was cancel by User's Input.
+ # Do an Early Return if the Save Operation was canceled by User's Input.
$FileBrowserResult = $FileBrowser.ShowDialog()
$DialogResultEnum = New-Object System.Windows.Forms.DialogResult
if (-not ($FileBrowserResult -eq $DialogResultEnum::OK)) {
return
}
+ # Prepare the Shortcut paramter
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut($FileBrowser.FileName)
$Shortcut.TargetPath = $SourceExe
$Shortcut.Arguments = $ArgumentsToSourceExe
- if ($null -ne $iconPath) {
+ if ($iconPath -ne $null) {
$shortcut.IconLocation = $iconPath
}
+
+ # Save the Shortcut to disk
$Shortcut.Save()
if ($RunAsAdmin -eq $true) {
diff --git a/functions/public/Invoke-WPFUltimatePerformance.ps1 b/functions/public/Invoke-WPFUltimatePerformance.ps1
index 28d4c241..599f12df 100644
--- a/functions/public/Invoke-WPFUltimatePerformance.ps1
+++ b/functions/public/Invoke-WPFUltimatePerformance.ps1
@@ -10,69 +10,44 @@ Function Invoke-WPFUltimatePerformance {
#>
param($State)
Try{
-
- if($state -eq "Enabled"){
- # Define the name and GUID of the power scheme
- $powerSchemeName = "Ultimate Performance"
- $powerSchemeGuid = "e9a42b02-d5df-448d-aa00-03f14749eb61"
-
- # Get all power schemes
- $schemes = powercfg /list | Out-String -Stream
-
- # Check if the power scheme already exists
- $ultimateScheme = $schemes | Where-Object { $_ -match $powerSchemeName }
-
- if ($null -eq $ultimateScheme) {
- Write-Host "Power scheme '$powerSchemeName' not found. Adding..."
-
- # Add the power scheme
- powercfg /duplicatescheme $powerSchemeGuid
- powercfg -attributes SUB_SLEEP 7bc4a2f9-d8fc-4469-b07b-33eb785aaca0 -ATTRIB_HIDE
- powercfg -setactive $powerSchemeGuid
- powercfg -change -monitor-timeout-ac 0
-
-
- Write-Host "Power scheme added successfully."
+ # Check if Ultimate Performance plan is installed
+ $ultimatePlan = powercfg -list | Select-String -Pattern "Ultimate Performance"
+ if($state -eq "Enable"){
+ if ($ultimatePlan) {
+ Write-Host "Ultimate Performance plan is already installed."
+ } else {
+ Write-Host "Installing Ultimate Performance plan..."
+ powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
+ Write-Host "> Ultimate Performance plan installed."
}
- else {
- Write-Host "Power scheme '$powerSchemeName' already exists."
+
+ # Set the Ultimate Performance plan as active
+ $ultimatePlanGUID = (powercfg -list | Select-String -Pattern "Ultimate Performance").Line.Split()[3]
+ powercfg -setactive $ultimatePlanGUID
+
+ Write-Host "Ultimate Performance plan is now active."
+
+
+ }
+ elseif($state -eq "Disable"){
+ if ($ultimatePlan) {
+ # Extract the GUID of the Ultimate Performance plan
+ $ultimatePlanGUID = $ultimatePlan.Line.Split()[3]
+
+ # Set a different power plan as active before deleting the Ultimate Performance plan
+ $balancedPlanGUID = (powercfg -list | Select-String -Pattern "Balanced").Line.Split()[3]
+ powercfg -setactive $balancedPlanGUID
+
+ # Delete the Ultimate Performance plan
+ powercfg -delete $ultimatePlanGUID
+
+ Write-Host "Ultimate Performance plan has been uninstalled."
+ Write-Host "> Balanced plan is now active."
+ } else {
+ Write-Host "Ultimate Performance plan is not installed."
}
}
- elseif($state -eq "Disabled"){
- # Define the name of the power scheme
- $powerSchemeName = "Ultimate Performance"
-
- # Get all power schemes
- $schemes = powercfg /list | Out-String -Stream
-
- # Find the scheme to be removed
- $ultimateScheme = $schemes | Where-Object { $_ -match $powerSchemeName }
-
- # If the scheme exists, remove it
- if ($null -ne $ultimateScheme) {
- # Extract the GUID of the power scheme
- $guid = ($ultimateScheme -split '\s+')[3]
-
- if($null -ne $guid){
- Write-Host "Found power scheme '$powerSchemeName' with GUID $guid. Removing..."
-
- # Remove the power scheme
- powercfg /delete $guid
-
- Write-Host "Power scheme removed successfully."
- }
- else {
- Write-Host "Could not find GUID for power scheme '$powerSchemeName'."
- }
- }
- else {
- Write-Host "Power scheme '$powerSchemeName' not found."
- }
-
- }
-
- }
- Catch{
+ } Catch{
Write-Warning $psitem.Exception.Message
}
-}
+}
\ No newline at end of file
diff --git a/mkdocs.yml b/mkdocs.yml
new file mode 100644
index 00000000..afe7ea72
--- /dev/null
+++ b/mkdocs.yml
@@ -0,0 +1,42 @@
+site_name: Chris Titus WinUtil Official Documentation
+repo_url: https://github.com/ChrisTitusTech/winutil
+
+nav:
+ - Introduction: 'index.md'
+ - User Guide: 'userguide.md'
+ - Contribute: 'contribute.md'
+ - Updates: 'updates.md'
+ - Known Issues: 'KnownIssues.md'
+ - FAQ: 'faq.md'
+
+theme:
+ name: material
+ custom_dir: 'overrides'
+ features:
+ - navigation.tabs
+ - navigation.sections
+ - toc.integrate
+ - navigation.top
+ - search.suggest
+ - search.highlight
+ - content.tabs.link
+ - content.code.annotation
+ - content.code.copy
+ language: en
+ logo: assets/favicon.png
+ favicon: assets/favicon.png
+ palette:
+ - scheme: default
+ toggle:
+ icon: material/toggle-switch-off-outline
+ name: Switch to dark mode
+ primary: black
+ accent: purple
+ - scheme: slate
+ toggle:
+ icon: material/toggle-switch
+ name: Switch to light mode
+ primary: teal
+ accent: lime
+ markdown_extensions:
+ - admonition
diff --git a/overrides/main.html b/overrides/main.html
new file mode 100644
index 00000000..0cebb4ac
--- /dev/null
+++ b/overrides/main.html
@@ -0,0 +1,12 @@
+{% extends "base.html" %}
+
+{% block header %}
+ {{ super() }}
+
+ Announcement: This documentation is still in progress.
+
+{% endblock %}
+
+{% block footer %}
+ {# Empty block to override the footer #}
+{% endblock %}
\ No newline at end of file
diff --git a/scripts/main.ps1 b/scripts/main.ps1
index 174a2c34..4d6e0950 100644
--- a/scripts/main.ps1
+++ b/scripts/main.ps1
@@ -70,15 +70,16 @@ $inputXML = Set-WinUtilUITheme -inputXML $inputXML -themeName $ctttheme
# Read the XAML file
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
-try { $sync["Form"] = [Windows.Markup.XamlReader]::Load( $reader ) }
-catch [System.Management.Automation.MethodInvocationException] {
+try {
+ $sync["Form"] = [Windows.Markup.XamlReader]::Load( $reader )
+} catch [System.Management.Automation.MethodInvocationException] {
Write-Warning "We ran into a problem with the XAML code. Check the syntax for this control..."
Write-Host $error[0].Exception.Message -ForegroundColor Red
+
If ($error[0].Exception.Message -like "*button*") {
write-warning "Ensure your <button in the `$inputXML does NOT have a Click=ButtonClick property. PS can't handle this`n`n`n`n"
}
-}
-catch {
+} catch {
Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
}
@@ -179,9 +180,9 @@ $sync["Form"].Add_Closing({
})
# Attach the event handler to the Click event
-$sync.CheckboxFilterClear.Add_Click({
- $sync.CheckboxFilter.Text = ""
- $sync.CheckboxFilterClear.Visibility = "Collapsed"
+$sync.SearchBarClearButton.Add_Click({
+ $sync.SearchBar.Text = ""
+ $sync.SearchBarClearButton.Visibility = "Collapsed"
})
# add some shortcuts for people that don't like clicking
@@ -192,9 +193,9 @@ $commonKeyEvents = {
if ($_.Key -eq "Escape")
{
- $sync.CheckboxFilter.SelectAll()
- $sync.CheckboxFilter.Text = ""
- $sync.CheckboxFilterClear.Visibility = "Collapsed"
+ $sync.SearchBar.SelectAll()
+ $sync.SearchBar.Text = ""
+ $sync.SearchBarClearButton.Visibility = "Collapsed"
return
}
@@ -225,11 +226,11 @@ $commonKeyEvents = {
}
# shortcut for the filter box
if ($_.Key -eq "F" -and $_.KeyboardDevice.Modifiers -eq "Ctrl") {
- if ($sync.CheckboxFilter.Text -eq "Ctrl-F to filter") {
- $sync.CheckboxFilter.SelectAll()
- $sync.CheckboxFilter.Text = ""
+ if ($sync.SearchBar.Text -eq "Ctrl-F to filter") {
+ $sync.SearchBar.SelectAll()
+ $sync.SearchBar.Text = ""
}
- $sync.CheckboxFilter.Focus()
+ $sync.SearchBar.Focus()
}
}
@@ -377,7 +378,7 @@ Add-Type @"
})
-# Load Checkboxes and Labels outside of the Filter fuction only once on startup for performance reasons
+# Load Checkboxes and Labels outside of the Filter function only once on startup for performance reasons
$filter = Get-WinUtilVariables -Type CheckBox
$CheckBoxes = ($sync.GetEnumerator()).where{ $psitem.Key -in $filter }
@@ -387,13 +388,13 @@ $labels = @{}
$allCategories = $checkBoxes.Name | ForEach-Object {$sync.configs.applications.$_} | Select-Object -Unique -ExpandProperty category
-$sync["CheckboxFilter"].Add_TextChanged({
+$sync["SearchBar"].Add_TextChanged({
- if ($sync.CheckboxFilter.Text -ne "") {
- $sync.CheckboxFilterClear.Visibility = "Visible"
+ if ($sync.SearchBar.Text -ne "") {
+ $sync.SearchBarClearButton.Visibility = "Visible"
}
else {
- $sync.CheckboxFilterClear.Visibility = "Collapsed"
+ $sync.SearchBarClearButton.Visibility = "Collapsed"
}
$activeApplications = @()
@@ -404,7 +405,7 @@ $sync["CheckboxFilter"].Add_TextChanged({
continue
}
- $textToSearch = $sync.CheckboxFilter.Text.ToLower()
+ $textToSearch = $sync.SearchBar.Text.ToLower()
$checkBoxName = $CheckBox.Key
$textBlockName = $checkBoxName + "Link"
@@ -488,7 +489,12 @@ MicroWin : @KonTy
GitHub : ChrisTitusTech/winutil
Version : $($sync.version)
"@
- Show-CustomDialog -Message $authorInfo -Width 400
+ $FontSize = $sync.configs.themes.$ctttheme.CustomDialogFontSize
+ $HeaderFontSize = $sync.configs.themes.$ctttheme.CustomDialogFontSizeHeader
+ $IconSize = $sync.configs.themes.$ctttheme.CustomDialogIconSize
+ $Width = $sync.configs.themes.$ctttheme.CustomDialogWidth
+ $Height = $sync.configs.themes.$ctttheme.CustomDialogHeight
+ Show-CustomDialog -Message $authorInfo -Width $Width -Height $Height -FontSize $FontSize -HeaderFontSize $HeaderFontSize -IconSize $IconSize
})
$sync["Form"].ShowDialog() | out-null
Stop-Transcript
diff --git a/windev.ps1 b/windev.ps1
index 2efc3e77..6ad84f4f 100644
--- a/windev.ps1
+++ b/windev.ps1
@@ -20,7 +20,7 @@ function Get-LatestRelease {
return $latestRelease.tag_name
} catch {
Write-Host "Error fetching release data: $_" -ForegroundColor Red
- return $null
+ return $latestRelease.tag_name
}
}
@@ -29,12 +29,14 @@ function RedirectToLatestPreRelease {
$latestRelease = Get-LatestRelease
if ($latestRelease) {
$url = "https://raw.githubusercontent.com/ChrisTitusTech/winutil/$latestRelease/winutil.ps1"
- Invoke-RestMethod $url | Invoke-Expression
} else {
Write-Host 'Unable to determine latest pre-release version.' -ForegroundColor Red
+ Write-Host "Using latest Full Release"
+ $url = "https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1"
}
+ Invoke-RestMethod $url | Invoke-Expression
}
# Call the redirect function
-RedirectToLatestPreRelease
\ No newline at end of file
+RedirectToLatestPreRelease
diff --git a/winutil.ps1 b/winutil.ps1
index eb7e456e..483d5e12 100644
--- a/winutil.ps1
+++ b/winutil.ps1
@@ -8,7 +8,7 @@
Author : Chris Titus @christitustech
Runspace Author: @DeveloperDurp
GitHub : https://github.com/ChrisTitusTech
- Version : 24.07.12
+ Version : 24.07.13
#>
param (
[switch]$Debug,
@@ -45,7 +45,7 @@ Add-Type -AssemblyName System.Windows.Forms
# Variable to sync between runspaces
$sync = [Hashtable]::Synchronized(@{})
$sync.PSScriptRoot = $PSScriptRoot
-$sync.version = "24.07.12"
+$sync.version = "24.07.13"
$sync.configs = @{}
$sync.ProcessRunning = $false
@@ -66,28 +66,94 @@ function ConvertTo-Icon {
<#
.DESCRIPTION
- This function will convert PNG to ICO file
+ This function will convert BMP, GIF, EXIF, JPG, PNG and TIFF to ICO file
+
+ .PARAMETER bitmapPath
+ The file path to bitmap image to make '.ico' file out of.
+ Supported file types according to Microsoft Documentation is the following:
+ BMP, GIF, EXIF, JPG, PNG and TIFF.
+
+ .PARAMETER iconPath
+ The file path to write the new '.ico' resource.
+
+ .PARAMETER overrideIconFile
+ An optional boolean Parameter that makes the function overrides
+ the Icon File Path if the file exists. Defaults to $true.
.EXAMPLE
- ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath $iconPath
+ try {
+ ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico"
+ } catch [System.IO.FileNotFoundException] {
+ # Handle the thrown exception here...
+ }
+
+ This Example makes a '.ico' file at "$env:TEMP\cttlogo.ico" File Path using the bitmap file
+ found in "$env:TEMP\cttlogo.png", the function overrides the '.ico' File if it's found.
+ this function will throw a FileNotFound Exception at the event of not finding the provided bitmap File Path.
+
+ .EXAMPLE
+ try {
+ ConvertTo-Icon "$env:TEMP\cttlogo.png" "$env:TEMP\cttlogo.ico"
+ } catch [System.IO.FileNotFoundException] {
+ # Handle the thrown exception here...
+ }
+
+ This Example is the same as Example 1, but uses Positional Parameters instead.
+
+ .EXAMPLE
+ if (Test-Path "$env:TEMP\cttlogo.png") {
+ ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico"
+ }
+
+ This Example is same as Example 1, but checks if the bitmap File exists before calling 'ConvertTo-Icon' Function.
+ This's the recommended way of using this function, as it doesn't require any try-catch blocks.
+
+ .EXAMPLE
+ try {
+ ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath "$env:TEMP\cttlogo.ico" -overrideIconFile $false
+ } catch [System.IO.FileNotFoundException] {
+ # Handle the thrown exception here...
+ }
+
+ This Example make use of '-overrideIconFile' Optional Parameter, the default for this paramter is $true.
+ By doing '-overrideIconFile $false', the 'ConvertTo-Icon' function will raise an exception that needs to be catched throw a 'catch' Code Block,
+ otherwise it'll crash the running PowerShell instance/process.
+
#>
- param( [Parameter(Mandatory=$true)]
- $bitmapPath,
- $iconPath = "$env:temp\newicon.ico"
+ param(
+ [Parameter(Mandatory=$true, position=0)]
+ [string]$bitmapPath,
+ [Parameter(Mandatory=$true, position=1)]
+ [string]$iconPath,
+ [Parameter(position=2)]
+ [bool]$overrideIconFile = $true
)
Add-Type -AssemblyName System.Drawing
if (Test-Path $bitmapPath) {
+ if ((Test-Path $iconPath) -AND ($overrideIconFile -eq $false)) {
+ Write-Host "[ConvertTo-Icon] Icon File is found at '$iconPath', and the 'overrideIconFile' Parameter is set to '$overrideIconFile'. Skipping the bitmap to icon convertion..." -ForegroundColor Yellow
+ return
+ }
+
+ # Load bitmap file into memory, and make an Icon version out of it
$b = [System.Drawing.Bitmap]::FromFile($bitmapPath)
$icon = [System.Drawing.Icon]::FromHandle($b.GetHicon())
+
+ # Create the folder for the new icon file if it doesn't exists
+ $iconFolder = (New-Object System.IO.FileInfo($iconPath)).Directory.FullName
+ [System.IO.Directory]::CreateDirectory($iconFolder) | Out-Null
+
+ # Write the Icon File and do some cleaning-up
$file = New-Object System.IO.FileStream($iconPath, 'OpenOrCreate')
$icon.Save($file)
$file.Close()
$icon.Dispose()
- #explorer "/SELECT,$iconpath"
}
- else { Write-Warning "$BitmapPath does not exist" }
+ else {
+ throw [System.IO.FileNotFoundException] "[ConvertTo-Icon] The provided bitmap File Path is not found at '$bitmapPath'."
+ }
}
function Copy-Files {
<#
@@ -206,8 +272,10 @@ function Get-TabXaml {
It takes the tabname and the number of columns to display the applications in as input and returns the XAML for the tab as output
.PARAMETER tabname
The name of the tab to generate XAML for
+ Note: the 'tabname' parameter must equal one of the json files found in $sync.configs variable
+ Otherwise, it'll throw an exception
.PARAMETER columncount
- The number of columns to display the applications in
+ The number of columns to display the applications in, default is 0
.OUTPUTS
The XAML for the tab
.EXAMPLE
@@ -215,10 +283,20 @@ function Get-TabXaml {
#>
- param( [Parameter(Mandatory=$true)]
- $tabname,
- $columncount = 0
+ param(
+ [Parameter(Mandatory, position=0)]
+ [string]$tabname,
+
+ [Parameter(position=1)]
+ [ValidateRange(0,10)] # 10 panels as max number is more then enough
+ [int]$columncount = 0
)
+
+ # Validate tabname
+ if ($sync.configs.$tabname -eq $null) {
+ throw "Invalid parameter passed, can't find '$tabname' in '`$sync.configs' variable, please double check any calls to 'Get-TabXaml' function."
+ }
+
$organizedData = @{}
# Iterate through JSON data and organize by panel and category
foreach ($appName in $sync.configs.$tabname.PSObject.Properties.Name) {
@@ -239,6 +317,7 @@ function Get-TabXaml {
ComboItems = $appInfo.ComboItems
# Checked is the property to set startup checked status of checkbox (Default is false)
Checked = $appInfo.Checked
+ ButtonWidth = $appInfo.ButtonWidth
}
if (-not $organizedData.ContainsKey($appObject.panel)) {
@@ -253,7 +332,22 @@ function Get-TabXaml {
# Add Order property to keep the original order of tweaks and features
$organizedData[$appObject.panel][$appInfo.Category]["$($appInfo.order)$appName"] = $appObject
}
- $panelcount=0
+
+ # Same tab amount in last line of 'inputXML.xaml' file
+ # TODO: Get the base repeat (amount) of tabs from last line (or even lines)
+ # so it can dynamicly react to whatever is before this generated XML string.
+ # .. may be solve this even before calling this function, and pass the result as a parameter?
+ $tab_repeat = 7
+ $spaces_per_tab = 4 # The convenction used across the code base
+ $tab_as_spaces = $(" " * $spaces_per_tab)
+ $precal_indent = $($tab_as_spaces * $tab_repeat)
+ $precal_indent_p1 = $($tab_as_spaces * ($tab_repeat + 1))
+ $precal_indent_p2 = $($tab_as_spaces * ($tab_repeat + 2))
+ $precal_indent_m1 = $($tab_as_spaces * ($tab_repeat - 1))
+ $precal_indent_m2 = $($tab_as_spaces * ($tab_repeat - 2))
+
+ # Calculate the needed number of panels
+ $panelcount = 0
$paneltotal = $organizedData.Keys.Count
if ($columncount -gt 0) {
$appcount = $sync.configs.$tabname.PSObject.Properties.Name.count + $organizedData["0"].Keys.count
@@ -261,19 +355,27 @@ function Get-TabXaml {
$paneltotal = $columncount
}
# add ColumnDefinitions to evenly draw colums
- $blockXml="`r`n"+("`r`n"*($paneltotal))+"`r`n"
- # Iterate through organizedData by panel, category, and application
+ $blockXml = ""
+ $blockXml += $("`r`n" + " " * ($spaces_per_tab * $tab_repeat) +
+ "") * $paneltotal
+ $blockXml += $("`r`n" + " " * ($spaces_per_tab * ($tab_repeat - 1))) +
+ "" + "`r`n"
+
+ # Iterate through 'organizedData' by panel, category, and application
$count = 0
foreach ($panel in ($organizedData.Keys | Sort-Object)) {
- $blockXml += "`r`n`r`n"
+ $blockXml += $precal_indent_m1 + "" + "`r`n"
+ $blockXml += $precal_indent + "" + "`r`n"
$panelcount++
foreach ($category in ($organizedData[$panel].Keys | Sort-Object)) {
$count++
if ($columncount -gt 0) {
$panelcount2 = [Int](($count)/$maxcount-0.5)
if ($panelcount -eq $panelcount2 ) {
- $blockXml +="`r`n`r`n`r`n"
- $blockXml += "`r`n`r`n"
+ $blockXml += $precal_indent_p2 + "" + "`r`n"
+ $blockXml += $precal_indent_p1 + "" + "`r`n"
+ $blockXml += $precal_indent_p1 + "" + "`r`n"
+ $blockXml += $precal_indent_p2 + "" + "`r`n"
$panelcount++
}
}
@@ -283,49 +385,99 @@ function Get-TabXaml {
$categorycontent = $($category -replace '^.__', '')
$categoryname = Get-WPFObjectName -type "Label" -name $categorycontent
- $blockXml += "`r`n"
+ $blockXml += $("`r`n" + " " * ($spaces_per_tab * $tab_repeat)) +
+ "" + "`r`n" + "`r`n"
$sortedApps = $organizedData[$panel][$category].Keys | Sort-Object
foreach ($appName in $sortedApps) {
$count++
+
if ($columncount -gt 0) {
$panelcount2 = [Int](($count)/$maxcount-0.5)
+ # Verify the indentation actually works...
if ($panelcount -eq $panelcount2 ) {
- $blockXml +="`r`n`r`n`r`n"
- $blockXml += "`r`n`r`n"
+ $blockXml += $precal_indent_m1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent_m2 +
+ "" + "`r`n"
+ $blockXml += $precal_indent_m2 +
+ "" + "`r`n"
+ $blockXml += $precal_indent_m1 +
+ "" + "`r`n"
$panelcount++
}
}
+
$appInfo = $organizedData[$panel][$category][$appName]
- if ("Toggle" -eq $appInfo.Type) {
- $blockXml += "`r`n`r`n"
- $blockXml += "`r`n`r`n"
- } elseif ("Combobox" -eq $appInfo.Type) {
- $blockXml += "`r`n`r`n"
- $blockXml += "`r`n"
- $addfirst="IsSelected=`"True`""
- foreach ($comboitem in ($appInfo.ComboItems -split " ")) {
- $blockXml += "`r`n"
- $addfirst=""
+ switch ($appInfo.Type) {
+ "Toggle" {
+ $blockXml += $precal_indent_m1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ $blockXml += $precal_indent_m1 +
+ "" + "`r`n"
}
- $blockXml += "`r`n"
- # If it is a digit, type is button and button length is digits
- } elseif ($appInfo.Type -match "^[\d\.]+$") {
- $blockXml += "`r`n"
- # else it is a checkbox
- } else {
- $checkedStatus = If ($null -eq $appInfo.Checked) {""} Else {"IsChecked=`"$($appInfo.Checked)`" "}
- if ($null -eq $appInfo.Link)
- {
- $blockXml += "`r`n"
+
+ "Combobox" {
+ $blockXml += $precal_indent_m1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent + "" + "`r`n"
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+
+ $addfirst="IsSelected=""True"""
+ foreach ($comboitem in ($appInfo.ComboItems -split " ")) {
+ $blockXml += $precal_indent_p1 +
+ "" + "`r`n"
+ $addfirst=""
+ }
+
+ $blockXml += $precal_indent_p1 + "" + "`r`n"
+ $blockXml += $precal_indent + "" + "`r`n"
}
- else
- {
- $blockXml += "`r`n`r`n`r`n"
+
+ "Button" {
+ if ($appInfo.ButtonWidth -ne $null) {
+ $ButtonWidthStr = "Width=""$($appInfo.ButtonWidth)"""
+ }
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ }
+
+ # else it is a checkbox
+ default {
+ $checkedStatus = If ($appInfo.Checked -eq $null) {""} Else {" IsChecked=""$($appInfo.Checked)"""}
+ if ($appInfo.Link -eq $null) {
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ } else {
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ $blockXml += $precal_indent_p1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent_p1 +
+ "" + "`r`n"
+ $blockXml += $precal_indent +
+ "" + "`r`n"
+ }
}
}
}
}
- $blockXml +="`r`n`r`n`r`n"
+
+ $blockXml += $precal_indent_p1 + "" + "`r`n"
+ $blockXml += $precal_indent + "" + "`r`n"
}
return ($blockXml)
}
@@ -701,20 +853,16 @@ function Install-WinUtilChoco {
if((Test-WinUtilPackageManager -choco) -eq "installed") {
return
}
-
- Set-WinUtilTaskbaritem -state "Indeterminate"
Write-Host "Seems Chocolatey is not installed, installing now."
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) -ErrorAction Stop
powershell choco feature enable -n allowGlobalConfirmation
- Set-WinUtilTaskbaritem -state "None"
}
Catch {
Write-Host "===========================================" -Foregroundcolor Red
Write-Host "-- Chocolatey failed to install ---" -Foregroundcolor Red
Write-Host "===========================================" -Foregroundcolor Red
- Set-WinUtilTaskbaritem -state "Error"
}
}
@@ -800,7 +948,6 @@ function Install-WinUtilProgramChoco {
}
}
$x++
- # Set-WinUtilTaskbaritem -state "Normal" -value $x/$count
}
Write-Progress -Activity "$manage Applications" -Status "Finished" -Completed
@@ -834,17 +981,18 @@ Function Install-WinUtilProgramWinget {
[Parameter(Position=1)]
[String]$manage = "Installing"
)
- $x = 0
+
$count = $ProgramsToInstall.Count
Write-Progress -Activity "$manage Applications" -Status "Starting" -PercentComplete 0
Write-Host "==========================================="
Write-Host "-- Configuring winget packages ---"
Write-Host "==========================================="
- Foreach ($Program in $ProgramsToInstall){
+ for ($i = 0; $i -le $ProgramsToInstall.Count; $i++) {
+ $Program = $ProgramsToInstall[$i]
$failedPackages = @()
- Write-Progress -Activity "$manage Applications" -Status "$manage $($Program.winget) $($x + 1) of $count" -PercentComplete $($x/$count*100)
- if($manage -eq "Installing"){
+ Write-Progress -Activity "$manage Applications" -Status "$manage $($Program.winget) $($i + 1) of $count" -PercentComplete $(($i/$count) * 100)
+ if($manage -eq "Installing") {
# Install package via ID, if it fails try again with different scope and then with an unelevated prompt.
# Since Install-WinGetPackage might not be directly available, we use winget install command as a workaround.
# Winget, not all installers honor any of the following: System-wide, User Installs, or Unelevated Prompt OR Silent Install Mode.
@@ -852,21 +1000,21 @@ Function Install-WinUtilProgramWinget {
Write-Host "Starting install of $($Program.winget) with winget."
try {
$status = $(Start-Process -FilePath "winget" -ArgumentList "install --id $($Program.winget) --silent --accept-source-agreements --accept-package-agreements" -Wait -PassThru -NoNewWindow).ExitCode
- if($status -eq 0){
+ if($status -eq 0) {
Write-Host "$($Program.winget) installed successfully."
continue
}
- if ($status -eq -1978335189){
+ if ($status -eq -1978335189) {
Write-Host "$($Program.winget) No applicable update found"
continue
}
Write-Host "Attempt with User scope"
$status = $(Start-Process -FilePath "winget" -ArgumentList "install --id $($Program.winget) --scope user --silent --accept-source-agreements --accept-package-agreements" -Wait -PassThru -NoNewWindow).ExitCode
- if($status -eq 0){
+ if($status -eq 0) {
Write-Host "$($Program.winget) installed successfully with User scope."
continue
}
- if ($status -eq -1978335189){
+ if ($status -eq -1978335189) {
Write-Host "$($Program.winget) No applicable update found"
continue
}
@@ -880,11 +1028,11 @@ Function Install-WinUtilProgramWinget {
} else {
Write-Host "Skipping installation with specific user credentials."
}
- if($status -eq 0){
+ if($status -eq 0) {
Write-Host "$($Program.winget) installed successfully with User prompt."
continue
}
- if ($status -eq -1978335189){
+ if ($status -eq -1978335189) {
Write-Host "$($Program.winget) No applicable update found"
continue
}
@@ -893,11 +1041,11 @@ Function Install-WinUtilProgramWinget {
$failedPackages += $Program
}
}
- if($manage -eq "Uninstalling"){
+ elseif($manage -eq "Uninstalling") {
# Uninstall package via ID using winget directly.
try {
$status = $(Start-Process -FilePath "winget" -ArgumentList "uninstall --id $($Program.winget) --silent" -Wait -PassThru -NoNewWindow).ExitCode
- if($status -ne 0){
+ if($status -ne 0) {
Write-Host "Failed to uninstall $($Program.winget)."
} else {
Write-Host "$($Program.winget) uninstalled successfully."
@@ -908,8 +1056,9 @@ Function Install-WinUtilProgramWinget {
$failedPackages += $Program
}
}
- $X++
- # Set-WinUtilTaskbaritem -state "Normal" -value $x/$count
+ else {
+ throw "[Install-WinUtilProgramWinget] Invalid Value for Parameter 'manage', Provided Value is: $manage"
+ }
}
Write-Progress -Activity "$manage Applications" -Status "Finished" -Completed
return $failedPackages;
@@ -935,8 +1084,6 @@ function Install-WinUtilWinget {
Write-Host "`nWinget is not Installed. Continuing with install.`r" -ForegroundColor Red
}
- Set-WinUtilTaskbaritem -state "Indeterminate"
-
# Gets the computer's information
if ($null -eq $sync.ComputerInfo){
$ComputerInfo = Get-ComputerInfo -ErrorAction Stop
@@ -981,8 +1128,6 @@ function Install-WinUtilWinget {
throw [WingetFailedInstall]::new('Failed to install!')
}
}
- Set-WinUtilTaskbaritem -state "None"
-
}
function Test-CompatibleImage() {
<#
@@ -1732,6 +1877,9 @@ Function Invoke-WinUtilCurrentSystem {
$values += $False
}
}
+ else {
+ $values += $False
+ }
}
}
@@ -1819,8 +1967,6 @@ function Invoke-WinUtilFeatureInstall {
$CheckBox
)
- Set-WinUtilTaskbaritem -state "Normal" -value 1
-
$CheckBox | ForEach-Object {
if($sync.configs.feature.$psitem.feature){
Foreach( $feature in $sync.configs.feature.$psitem.feature ){
@@ -1834,7 +1980,6 @@ function Invoke-WinUtilFeatureInstall {
}
else{
- Set-WinUtilTaskbaritem -state "Error"
Write-Warning "Unable to Install $feature due to unhandled exception"
Write-Warning $psitem.Exception.StackTrace
}
@@ -1855,7 +2000,6 @@ function Invoke-WinUtilFeatureInstall {
}
else{
- Set-WinUtilTaskbaritem -state "Error"
Write-Warning "Unable to Install $feature due to unhandled exception"
Write-Warning $psitem.Exception.StackTrace
}
@@ -1863,9 +2007,6 @@ function Invoke-WinUtilFeatureInstall {
}
}
}
- if ($sync["Form"].taskbarItemInfo.ProgressState -ne "Error"){
- Set-WinUtilTaskbaritem -state "None"
- }
}
function Invoke-WinUtilGPU {
$gpuInfo = Get-CimInstance Win32_VideoController
@@ -2176,10 +2317,10 @@ function Invoke-WinUtilTaskbarSearch {
<#
.SYNOPSIS
- Enable/Disable Taskbar Widgets
+ Enable/Disable Taskbar Search Button.
.PARAMETER Enabled
- Indicates whether to enable or disable Taskbar Widgets
+ Indicates whether to enable or disable Taskbar Search Button.
#>
Param($Enabled)
@@ -2465,6 +2606,7 @@ function Set-WinUtilDNS {
}
Else{
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary)", "$($sync.configs.dns.$DNSProvider.Secondary)")
+ Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary6)", "$($sync.configs.dns.$DNSProvider.Secondary6)")
}
}
}
@@ -2606,73 +2748,6 @@ Function Set-WinUtilService {
Write-Warning $_.Exception.Message
}
-}
- <#
-
- .SYNOPSIS
- Modifies the Taskbaritem of the WPF Form
-
- .PARAMETER state & value
- Value can be between 0 and 1, 0 being no progress done yet and 1 being fully completed
- State can be 'None' > No progress, 'Indeterminate' > Without value, 'Normal' > when using value, 'Error' > Red (when using value), 'Paused' > Yellow (when using value)
-
- .PARAMETER overlay
- Overlay icon to display on the taskbar item
-
- .EXAMPLE
- Set-WinUtilTaskbaritem -value 0.5 -state "Normal"
- Set-WinUtilTaskbaritem -state "Error"
- Set-WinUtilTaskbaritem -state "Indeterminate"
- Set-WinUtilTaskbaritem -description "This is a description"
- Set-WinUtilTaskbaritem -overlay "C:\path\to\icon.png"
-
- #>
-
-
-function Set-WinUtilTaskbaritem {
- param (
- [double]$value,
- $state,
- $overlay,
- $description
- )
-
- if ($value) {
- $sync["Form"].taskbarItemInfo.ProgressValue = $value
- }
-
- if ($state) {
- $sync["Form"].taskbarItemInfo.ProgressState = $state
- }
-
- if ($overlay -and (Test-Path $overlay)) {
- # Read the image file as a byte array
- $imageBytes = [System.IO.File]::ReadAllBytes($overlay)
-
- # Convert the byte array to a Base64 string
- [System.Convert]::ToBase64String($imageBytes)
-
- # Load the image file as a bitmap
- $bitmap = [System.Drawing.Bitmap]::new($overlay)
-
- # Create a streaming image by streaming the bitmap to a memory stream
- $memoryStream = [System.IO.MemoryStream]::new()
- $bitmap.Save($memoryStream, [System.Drawing.Imaging.ImageFormat]::Png)
- $memoryStream.Position = 0
-
- # Create a bitmap image from the memory stream
- $bitmapImage = [System.Windows.Media.Imaging.BitmapImage]::new()
- $bitmapImage.BeginInit()
- $bitmapImage.StreamSource = $memoryStream
- $bitmapImage.EndInit()
- $bitmapImage.Freeze()
-
- $sync["Form"].taskbarItemInfo.Overlay = $bitmapImage
- }
-
- if ($description) {
- $sync["Form"].taskbarItemInfo.Description = $description
- }
}
function Set-WinUtilUITheme {
<#
@@ -2744,6 +2819,15 @@ function Show-CustomDialog {
.PARAMETER Height
The height of the custom dialog window.
+ .PARAMETER FontSize
+ The Font Size for text shown inside the custom dialog window.
+
+ .PARAMETER HeaderFontSize
+ The Font Size for the Header of the custom dialog window.
+
+ .PARAMETER IconSize
+ The Size to use for Icon inside the custom dialog window.
+
.EXAMPLE
Show-CustomDialog -Message "This is a custom dialog with a message and an image above." -Width 300 -Height 200
@@ -2751,7 +2835,10 @@ function Show-CustomDialog {
param(
[string]$Message,
[int]$Width = 300,
- [int]$Height = 200
+ [int]$Height = 200,
+ [int]$FontSize = 10,
+ [int]$HeaderFontSize = 14,
+ [int]$IconSize = 25
)
Add-Type -AssemblyName PresentationFramework
@@ -2777,6 +2864,7 @@ function Show-CustomDialog {
$dialog.Foreground = $foregroundColor
$dialog.Background = $backgroundColor
$dialog.FontFamily = $font
+ $dialog.FontSize = $FontSize
# Create a Border for the green edge with rounded corners
$border = New-Object Windows.Controls.Border
@@ -2840,8 +2928,8 @@ function Show-CustomDialog {
[Windows.Controls.Grid]::SetRow($stackPanel, 0) # Set the row to the second row (0-based index)
$viewbox = New-Object Windows.Controls.Viewbox
- $viewbox.Width = 25
- $viewbox.Height = 25
+ $viewbox.Width = $IconSize
+ $viewbox.Height = $IconSize
# Combine the paths into a single string
# $cttLogoPath = @"
@@ -2903,7 +2991,7 @@ $cttLogoPath = @"
# Add "Winutil" text
$winutilTextBlock = New-Object Windows.Controls.TextBlock
$winutilTextBlock.Text = "Winutil"
- $winutilTextBlock.FontSize = 18 # Adjust font size as needed
+ $winutilTextBlock.FontSize = $HeaderFontSize
$winutilTextBlock.Foreground = $foregroundColor
$winutilTextBlock.Margin = New-Object Windows.Thickness(10, 5, 10, 5) # Add margins around the text block
$stackPanel.Children.Add($winutilTextBlock)
@@ -2971,6 +3059,7 @@ $cttLogoPath = @"
# Add OK button
$okButton = New-Object Windows.Controls.Button
$okButton.Content = "OK"
+ $okButton.FontSize = $FontSize
$okButton.Width = 80
$okButton.Height = 30
$okButton.HorizontalAlignment = [Windows.HorizontalAlignment]::Center
@@ -3174,8 +3263,8 @@ function Invoke-WPFButton {
"WPFclearWinget" {Invoke-WPFPresets -preset $null -imported $true -CheckBox "WPFInstall"}
"WPFtweaksbutton" {Invoke-WPFtweaksbutton}
"WPFOOSUbutton" {Invoke-WPFOOSU}
- "WPFAddUltPerf" {Invoke-WPFUltimatePerformance -State "Enabled"}
- "WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance -State "Disabled"}
+ "WPFAddUltPerf" {Invoke-WPFUltimatePerformance -State "Enable"}
+ "WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance -State "Disable"}
"WPFundoall" {Invoke-WPFundoall}
"WPFFeatureInstall" {Invoke-WPFFeatureInstall}
"WPFPanelDISM" {Invoke-WPFPanelDISM}
@@ -3664,7 +3753,6 @@ function Invoke-WPFGetInstalled {
param($checkbox, $DebugPreference)
$sync.ProcessRunning = $true
- Set-WinUtilTaskbaritem -state "Indeterminate"
if($checkbox -eq "winget"){
Write-Host "Getting Installed Programs..."
@@ -3683,7 +3771,6 @@ function Invoke-WPFGetInstalled {
Write-Host "Done..."
$sync.ProcessRunning = $false
- Set-WinUtilTaskbaritem -state "None"
}
}
function Invoke-WPFGetIso {
@@ -3704,7 +3791,6 @@ function Invoke-WPFGetIso {
$sync.BusyText.Text="N Busy"
-
Write-Host " _ __ __ _ "
Write-Host " /\/\ (_) ___ _ __ ___ / / /\ \ \(_) _ __ "
Write-Host " / \ | | / __|| '__| / _ \ \ \/ \/ /| || '_ \ "
@@ -3777,8 +3863,6 @@ function Invoke-WPFGetIso {
return
}
- Set-WinUtilTaskbaritem -state "Indeterminate"
-
# Detect the file size of the ISO and compare it with the free space of the system drive
$isoSize = (Get-Item -Path $filePath).Length
Write-Debug "Size of ISO file: $($isoSize) bytes"
@@ -3930,7 +4014,6 @@ function Invoke-WPFGetIso {
$sync.BusyMessage.Visibility="Hidden"
$sync.ProcessRunning = $false
- Set-WinUtilTaskbaritem -state "None"
}
@@ -4017,10 +4100,8 @@ function Invoke-WPFInstall {
return
}
-
Invoke-WPFRunspace -ArgumentList $PackagesToInstall -DebugPreference $DebugPreference -ScriptBlock {
param($PackagesToInstall, $DebugPreference)
- Set-WinUtilTaskbaritem -state "Normal" -value 1/$PackagesToInstall.Count
$packagesWinget, $packagesChoco = {
$packagesWinget = [System.Collections.Generic.List`1[System.Object]]::new()
$packagesChoco = [System.Collections.Generic.List`1[System.Object]]::new()
@@ -4051,13 +4132,11 @@ function Invoke-WPFInstall {
Write-Host "==========================================="
Write-Host "-- Installs have finished ---"
Write-Host "==========================================="
- # Set-WinUtilTaskbaritem -state "None"
}
Catch {
Write-Host "==========================================="
Write-Host "Error: $_"
Write-Host "==========================================="
- # Set-WinUtilTaskbaritem -state "Error"
}
Start-Sleep -Seconds 5
$sync.ProcessRunning = $False
@@ -4093,7 +4172,6 @@ function Invoke-WPFMicrowin {
Invoke MicroWin routines...
#>
-
if($sync.ProcessRunning) {
$msg = "GetIso process is currently running."
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
@@ -4132,8 +4210,6 @@ public class PowerManagement {
return
}
- Set-WinUtilTaskbaritem -state "Indeterminate"
-
Write-Host "Target ISO location: $($SaveDialog.FileName)"
$index = $sync.MicrowinWindowsFlavors.SelectedValue.Split(":")[0].Trim()
@@ -4263,13 +4339,14 @@ public class PowerManagement {
Remove-Features -keepDefender:$keepDefender
Write-Host "Removing features complete!"
- Write-Host "Removing Appx Bloat"
if (!$keepPackages)
{
+ Write-Host "Removing OS packages"
Remove-Packages
}
if (!$keepProvisionedPackages)
{
+ Write-Host "Removing Appx Bloat"
Remove-ProvisionedPackages -keepSecurity:$keepDefender
}
@@ -4569,7 +4646,6 @@ public class PowerManagement {
# Allow the machine to sleep again (optional)
[PowerManagement]::SetThreadExecutionState(0)
$sync.ProcessRunning = $false
- Set-WinUtilTaskbaritem -state "None"
}
}
function Invoke-WPFOOSU {
@@ -4803,8 +4879,10 @@ function Invoke-WPFShortcut {
$ArgumentsToSourceExe = "$powershell '$IRM'"
$DestinationName = "WinUtil.lnk"
+ Invoke-WebRequest -Uri "https://christitus.com/images/logo-full.png" -OutFile "$env:TEMP\cttlogo.png"
+
if (Test-Path -Path "$env:TEMP\cttlogo.png") {
- $iconPath = "$env:SystempRoot\cttlogo.ico"
+ $iconPath = "$env:LOCALAPPDATA\winutil\cttlogo.ico"
ConvertTo-Icon -bitmapPath "$env:TEMP\cttlogo.png" -iconPath $iconPath
}
}
@@ -4816,20 +4894,23 @@ function Invoke-WPFShortcut {
$FileBrowser.Filter = "Shortcut Files (*.lnk)|*.lnk"
$FileBrowser.FileName = $DestinationName
- # Do an Early Return if The Save Shortcut operation was cancel by User's Input.
+ # Do an Early Return if the Save Operation was canceled by User's Input.
$FileBrowserResult = $FileBrowser.ShowDialog()
$DialogResultEnum = New-Object System.Windows.Forms.DialogResult
if (-not ($FileBrowserResult -eq $DialogResultEnum::OK)) {
return
}
+ # Prepare the Shortcut paramter
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut($FileBrowser.FileName)
$Shortcut.TargetPath = $SourceExe
$Shortcut.Arguments = $ArgumentsToSourceExe
- if ($null -ne $iconPath) {
+ if ($iconPath -ne $null) {
$shortcut.IconLocation = $iconPath
}
+
+ # Save the Shortcut to disk
$Shortcut.Save()
if ($RunAsAdmin -eq $true) {
@@ -5016,69 +5097,44 @@ Function Invoke-WPFUltimatePerformance {
#>
param($State)
Try{
-
- if($state -eq "Enabled"){
- # Define the name and GUID of the power scheme
- $powerSchemeName = "Ultimate Performance"
- $powerSchemeGuid = "e9a42b02-d5df-448d-aa00-03f14749eb61"
-
- # Get all power schemes
- $schemes = powercfg /list | Out-String -Stream
-
- # Check if the power scheme already exists
- $ultimateScheme = $schemes | Where-Object { $_ -match $powerSchemeName }
-
- if ($null -eq $ultimateScheme) {
- Write-Host "Power scheme '$powerSchemeName' not found. Adding..."
-
- # Add the power scheme
- powercfg /duplicatescheme $powerSchemeGuid
- powercfg -attributes SUB_SLEEP 7bc4a2f9-d8fc-4469-b07b-33eb785aaca0 -ATTRIB_HIDE
- powercfg -setactive $powerSchemeGuid
- powercfg -change -monitor-timeout-ac 0
-
-
- Write-Host "Power scheme added successfully."
+ # Check if Ultimate Performance plan is installed
+ $ultimatePlan = powercfg -list | Select-String -Pattern "Ultimate Performance"
+ if($state -eq "Enable"){
+ if ($ultimatePlan) {
+ Write-Host "Ultimate Performance plan is already installed."
+ } else {
+ Write-Host "Installing Ultimate Performance plan..."
+ powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
+ Write-Host "> Ultimate Performance plan installed."
}
- else {
- Write-Host "Power scheme '$powerSchemeName' already exists."
+
+ # Set the Ultimate Performance plan as active
+ $ultimatePlanGUID = (powercfg -list | Select-String -Pattern "Ultimate Performance").Line.Split()[3]
+ powercfg -setactive $ultimatePlanGUID
+
+ Write-Host "Ultimate Performance plan is now active."
+
+
+ }
+ elseif($state -eq "Disable"){
+ if ($ultimatePlan) {
+ # Extract the GUID of the Ultimate Performance plan
+ $ultimatePlanGUID = $ultimatePlan.Line.Split()[3]
+
+ # Set a different power plan as active before deleting the Ultimate Performance plan
+ $balancedPlanGUID = (powercfg -list | Select-String -Pattern "Balanced").Line.Split()[3]
+ powercfg -setactive $balancedPlanGUID
+
+ # Delete the Ultimate Performance plan
+ powercfg -delete $ultimatePlanGUID
+
+ Write-Host "Ultimate Performance plan has been uninstalled."
+ Write-Host "> Balanced plan is now active."
+ } else {
+ Write-Host "Ultimate Performance plan is not installed."
}
}
- elseif($state -eq "Disabled"){
- # Define the name of the power scheme
- $powerSchemeName = "Ultimate Performance"
-
- # Get all power schemes
- $schemes = powercfg /list | Out-String -Stream
-
- # Find the scheme to be removed
- $ultimateScheme = $schemes | Where-Object { $_ -match $powerSchemeName }
-
- # If the scheme exists, remove it
- if ($null -ne $ultimateScheme) {
- # Extract the GUID of the power scheme
- $guid = ($ultimateScheme -split '\s+')[3]
-
- if($null -ne $guid){
- Write-Host "Found power scheme '$powerSchemeName' with GUID $guid. Removing..."
-
- # Remove the power scheme
- powercfg /delete $guid
-
- Write-Host "Power scheme removed successfully."
- }
- else {
- Write-Host "Could not find GUID for power scheme '$powerSchemeName'."
- }
- }
- else {
- Write-Host "Power scheme '$powerSchemeName' not found."
- }
-
- }
-
- }
- Catch{
+ } Catch{
Write-Warning $psitem.Exception.Message
}
}
@@ -5309,8 +5365,6 @@ function Invoke-WPFUnInstall {
if($confirm -eq "No"){return}
- Set-WinUtilTaskbaritem -state "Normal" -value 1/$PackagesToInstall.Count
-
Invoke-WPFRunspace -ArgumentList $PackagesToInstall -DebugPreference $DebugPreference -ScriptBlock {
param($PackagesToInstall, $DebugPreference)
$packagesWinget, $packagesChoco = {
@@ -5348,13 +5402,11 @@ function Invoke-WPFUnInstall {
Write-Host "==========================================="
Write-Host "-- Uninstalls have finished ---"
Write-Host "==========================================="
- # Set-WinUtilTaskbaritem -state "None"
}
Catch {
Write-Host "==========================================="
Write-Host "Error: $_"
Write-Host "==========================================="
- # Set-WinUtilTaskbaritem -state "Error"
}
$sync.ProcessRunning = $False
}
@@ -5493,3427 +5545,3512 @@ function Invoke-WPFUpdatessecurity {
Write-Host "================================="
}
$sync.configs.applications = '{
- "WPFInstall1password": {
- "category": "Utilities",
- "choco": "1password",
- "content": "1Password",
- "description": "1Password is a password manager that allows you to store and manage your passwords securely.",
- "link": "https://1password.com/",
- "winget": "AgileBits.1Password"
- },
- "WPFInstall": null,
- "WPFInstall7zip": {
- "category": "Utilities",
- "choco": "7zip",
- "content": "7-Zip",
- "description": "7-Zip is a free and open-source file archiver utility. It supports several compression formats and provides a high compression ratio, making it a popular choice for file compression.",
- "link": "https://www.7-zip.org/",
- "winget": "7zip.7zip"
- },
- "WPFInstalladobe": {
- "category": "Document",
- "choco": "adobereader",
- "content": "Adobe Acrobat Reader",
- "description": "Adobe Acrobat Reader is a free PDF viewer with essential features for viewing, printing, and annotating PDF documents.",
- "link": "https://www.adobe.com/acrobat/pdf-reader.html",
- "winget": "Adobe.Acrobat.Reader.64-bit"
- },
- "WPFInstalladvancedip": {
- "category": "Pro Tools",
- "choco": "advanced-ip-scanner",
- "content": "Advanced IP Scanner",
- "description": "Advanced IP Scanner is a fast and easy-to-use network scanner. It is designed to analyze LAN networks and provides information about connected devices.",
- "link": "https://www.advanced-ip-scanner.com/",
- "winget": "Famatech.AdvancedIPScanner"
- },
- "WPFInstallaffine": {
- "category": "Document",
- "choco": "na",
- "content": "AFFiNE",
- "description": "AFFiNE is an open source alternative to Notion. Write, draw, plan all at once. Selfhost it to sync across devices.",
- "link": "https://affine.pro/",
- "winget": "ToEverything.AFFiNE"
- },
- "WPFInstallaimp": {
- "category": "Multimedia Tools",
- "choco": "aimp",
- "content": "AIMP (Music Player)",
- "description": "AIMP is a feature-rich music player with support for various audio formats, playlists, and customizable user interface.",
- "link": "https://www.aimp.ru/",
- "winget": "AIMP.AIMP"
- },
- "WPFInstallalacritty": {
- "category": "Utilities",
- "choco": "alacritty",
- "content": "Alacritty Terminal",
- "description": "Alacritty is a fast, cross-platform, and GPU-accelerated terminal emulator. It is designed for performance and aims to be the fastest terminal emulator available.",
- "link": "https://alacritty.org/",
- "winget": "Alacritty.Alacritty"
- },
- "WPFInstallanaconda3": {
- "category": "Development",
- "choco": "anaconda3",
- "content": "Anaconda",
- "description": "Anaconda is a distribution of the Python and R programming languages for scientific computing.",
- "link": "https://www.anaconda.com/products/distribution",
- "winget": "Anaconda.Anaconda3"
- },
- "WPFInstallangryipscanner": {
- "category": "Pro Tools",
- "choco": "angryip",
- "content": "Angry IP Scanner",
- "description": "Angry IP Scanner is an open-source and cross-platform network scanner. It is used to scan IP addresses and ports, providing information about network connectivity.",
- "link": "https://angryip.org/",
- "winget": "angryziber.AngryIPScanner"
- },
- "WPFInstallanki": {
- "category": "Document",
- "choco": "anki",
- "content": "Anki",
- "description": "Anki is a flashcard application that helps you memorize information with intelligent spaced repetition.",
- "link": "https://apps.ankiweb.net/",
- "winget": "Anki.Anki"
- },
- "WPFInstallanydesk": {
- "category": "Utilities",
- "choco": "anydesk",
- "content": "AnyDesk",
- "description": "AnyDesk is a remote desktop software that enables users to access and control computers remotely. It is known for its fast connection and low latency.",
- "link": "https://anydesk.com/",
- "winget": "AnyDeskSoftwareGmbH.AnyDesk"
- },
- "WPFInstallATLauncher": {
- "category": "Games",
- "choco": "na",
- "content": "ATLauncher",
- "description": "ATLauncher is a Launcher for Minecraft which integrates multiple different ModPacks to allow you to download and install ModPacks easily and quickly.",
- "link": "https://github.com/ATLauncher/ATLauncher",
- "winget": "ATLauncher.ATLauncher"
- },
- "WPFInstallaudacity": {
- "category": "Multimedia Tools",
- "choco": "audacity",
- "content": "Audacity",
- "description": "Audacity is a free and open-source audio editing software known for its powerful recording and editing capabilities.",
- "link": "https://www.audacityteam.org/",
- "winget": "Audacity.Audacity"
- },
- "WPFInstallautoruns": {
- "category": "Microsoft Tools",
- "choco": "autoruns",
- "content": "Autoruns",
- "description": "This utility shows you what programs are configured to run during system bootup or login",
- "link": "https://learn.microsoft.com/en-us/sysinternals/downloads/autoruns",
- "winget": "Microsoft.Sysinternals.Autoruns"
- },
- "WPFInstallrdcman": {
- "category": "Microsoft Tools",
- "choco": "rdcman",
- "content": "RDCMan",
- "description": "RDCMan manages multiple remote desktop connections. It is useful for managing server labs where you need regular access to each machine such as automated checkin systems and data centers.",
- "link": "https://learn.microsoft.com/en-us/sysinternals/downloads/rdcman",
- "winget": "Microsoft.Sysinternals.RDCMan"
- },
- "WPFInstallautohotkey": {
- "category": "Utilities",
- "choco": "autohotkey",
- "content": "AutoHotkey",
- "description": "AutoHotkey is a scripting language for Windows that allows users to create custom automation scripts and macros. It is often used for automating repetitive tasks and customizing keyboard shortcuts.",
- "link": "https://www.autohotkey.com/",
- "winget": "AutoHotkey.AutoHotkey"
- },
- "WPFInstallazuredatastudio": {
- "category": "Microsoft Tools",
- "choco": "azure-data-studio",
- "content": "Microsoft Azure Data Studio",
- "description": "Azure Data Studio is a data management tool that enables you to work with SQL Server, Azure SQL DB and SQL DW from Windows, macOS and Linux.",
- "link": "https://docs.microsoft.com/sql/azure-data-studio/what-is-azure-data-studio",
- "winget": "Microsoft.AzureDataStudio"
- },
- "WPFInstallbarrier": {
- "category": "Utilities",
- "choco": "barrier",
- "content": "Barrier",
- "description": "Barrier is an open-source software KVM (keyboard, video, and mouseswitch). It allows users to control multiple computers with a single keyboard and mouse, even if they have different operating systems.",
- "link": "https://github.com/debauchee/barrier",
- "winget": "DebaucheeOpenSourceGroup.Barrier"
- },
- "WPFInstallbat": {
- "category": "Utilities",
- "choco": "bat",
- "content": "Bat (Cat)",
- "description": "Bat is a cat command clone with syntax highlighting. It provides a user-friendly and feature-rich alternative to the traditional cat command for viewing and concatenating files.",
- "link": "https://github.com/sharkdp/bat",
- "winget": "sharkdp.bat"
- },
- "WPFInstallbitwarden": {
- "category": "Utilities",
- "choco": "bitwarden",
- "content": "Bitwarden",
- "description": "Bitwarden is an open-source password management solution. It allows users to store and manage their passwords in a secure and encrypted vault, accessible across multiple devices.",
- "link": "https://bitwarden.com/",
- "winget": "Bitwarden.Bitwarden"
- },
- "WPFInstallbleachbit": {
- "category": "Utilities",
- "choco": "bleachbit",
- "content": "BleachBit",
- "description": "Clean Your System and Free Disk Space",
- "link": "https://www.bleachbit.org/",
- "winget": "BleachBit.BleachBit"
- },
- "WPFInstallblender": {
- "category": "Multimedia Tools",
- "choco": "blender",
- "content": "Blender (3D Graphics)",
- "description": "Blender is a powerful open-source 3D creation suite, offering modeling, sculpting, animation, and rendering tools.",
- "link": "https://www.blender.org/",
- "winget": "BlenderFoundation.Blender"
- },
- "WPFInstallbrave": {
- "category": "Browsers",
- "choco": "brave",
- "content": "Brave",
- "description": "Brave is a privacy-focused web browser that blocks ads and trackers, offering a faster and safer browsing experience.",
- "link": "https://www.brave.com",
- "winget": "Brave.Brave"
- },
- "WPFInstallbulkcrapuninstaller": {
- "category": "Utilities",
- "choco": "bulk-crap-uninstaller",
- "content": "Bulk Crap Uninstaller",
- "description": "Bulk Crap Uninstaller is a free and open-source uninstaller utility for Windows. It helps users remove unwanted programs and clean up their system by uninstalling multiple applications at once.",
- "link": "https://www.bcuninstaller.com/",
- "winget": "Klocman.BulkCrapUninstaller"
- },
- "WPFInstallbulkrenameutility": {
- "category": "Utilities",
- "choco": "bulkrenameutility",
- "content": "Bulk Rename Utility",
- "description": "Bulk Rename Utility allows you to easily rename files and folders recursively based upon find-replace, character place, fields, sequences, regular expressions, EXIF data, and more.",
- "link": "https://www.bulkrenameutility.co.uk",
- "winget": "TGRMNSoftware.BulkRenameUtility"
- },
- "WPFInstallAdvancedRenamer": {
- "category": "Utilities",
- "choco": "advanced-renamer",
- "content": "Advanced Renamer",
- "description": "Advanced Renamer is a program for renaming multiple files and folders at once. By configuring renaming methods the names can be manipulated in various ways.",
- "link": "https://www.advancedrenamer.com/",
- "winget": "XP9MD3S1KFCPH1"
- },
- "WPFInstallcalibre": {
- "category": "Document",
- "choco": "calibre",
- "content": "Calibre",
- "description": "Calibre is a powerful and easy-to-use e-book manager, viewer, and converter.",
- "link": "https://calibre-ebook.com/",
- "winget": "calibre.calibre"
- },
- "WPFInstallcarnac": {
- "category": "Utilities",
- "choco": "carnac",
- "content": "Carnac",
- "description": "Carnac is a keystroke visualizer for Windows. It displays keystrokes in an overlay, making it useful for presentations, tutorials, and live demonstrations.",
- "link": "https://carnackeys.com/",
- "winget": "code52.Carnac"
- },
- "WPFInstallcemu": {
- "category": "Games",
- "choco": "cemu",
- "content": "Cemu",
- "description": "Cemu is a highly experimental software to emulate Wii U applications on PC.",
- "link": "https://cemu.info/",
- "winget": "Cemu.Cemu"
- },
- "WPFInstallchatterino": {
- "category": "Communications",
- "choco": "chatterino",
- "content": "Chatterino",
- "description": "Chatterino is a chat client for Twitch chat that offers a clean and customizable interface for a better streaming experience.",
- "link": "https://www.chatterino.com/",
- "winget": "ChatterinoTeam.Chatterino"
- },
- "WPFInstallchrome": {
- "category": "Browsers",
- "choco": "googlechrome",
- "content": "Chrome",
- "description": "Google Chrome is a widely used web browser known for its speed, simplicity, and seamless integration with Google services.",
- "link": "https://www.google.com/chrome/",
- "winget": "Google.Chrome"
- },
- "WPFInstallchromium": {
- "category": "Browsers",
- "choco": "chromium",
- "content": "Chromium",
- "description": "Chromium is the open-source project that serves as the foundation for various web browsers, including Chrome.",
- "link": "https://github.com/Hibbiki/chromium-win64",
- "winget": "Hibbiki.Chromium"
- },
- "WPFInstallarc": {
- "category": "Browsers",
- "choco": "na",
- "content": "Arc",
- "description": "Arc is a Chromium based browser, known for it\u0026#39;s clean and modern design.",
- "link": "https://arc.net/",
- "winget": "TheBrowserCompany.Arc"
- },
- "WPFInstallclementine": {
- "category": "Multimedia Tools",
- "choco": "clementine",
- "content": "Clementine",
- "description": "Clementine is a modern music player and library organizer, supporting various audio formats and online radio services.",
- "link": "https://www.clementine-player.org/",
- "winget": "Clementine.Clementine"
- },
- "WPFInstallclink": {
- "category": "Development",
- "choco": "clink",
- "content": "Clink",
- "description": "Clink is a powerful Bash-compatible command-line interface (CLIenhancement for Windows, adding features like syntax highlighting and improved history).",
- "link": "https://mridgers.github.io/clink/",
- "winget": "chrisant996.Clink"
- },
- "WPFInstallclonehero": {
- "category": "Games",
- "choco": "na",
- "content": "Clone Hero",
- "description": "Clone Hero is a free rhythm game, which can be played with any 5 or 6 button guitar controller.",
- "link": "https://clonehero.net/",
- "winget": "CloneHeroTeam.CloneHero"
- },
- "WPFInstallcmake": {
- "category": "Development",
- "choco": "cmake",
- "content": "CMake",
- "description": "CMake is an open-source, cross-platform family of tools designed to build, test and package software.",
- "link": "https://cmake.org/",
- "winget": "Kitware.CMake"
- },
- "WPFInstallcopyq": {
- "category": "Utilities",
- "choco": "copyq",
- "content": "CopyQ (Clipboard Manager)",
- "description": "CopyQ is a clipboard manager with advanced features, allowing you to store, edit, and retrieve clipboard history.",
- "link": "https://copyq.readthedocs.io/",
- "winget": "hluk.CopyQ"
- },
- "WPFInstallcpuz": {
- "category": "Utilities",
- "choco": "cpu-z",
- "content": "CPU-Z",
- "description": "CPU-Z is a system monitoring and diagnostic tool for Windows. It provides detailed information about the computer\u0026#39;s hardware components, including the CPU, memory, and motherboard.",
- "link": "https://www.cpuid.com/softwares/cpu-z.html",
- "winget": "CPUID.CPU-Z"
- },
- "WPFInstallcrystaldiskinfo": {
- "category": "Utilities",
- "choco": "crystaldiskinfo",
- "content": "Crystal Disk Info",
- "description": "Crystal Disk Info is a disk health monitoring tool that provides information about the status and performance of hard drives. It helps users anticipate potential issues and monitor drive health.",
- "link": "https://crystalmark.info/en/software/crystaldiskinfo/",
- "winget": "CrystalDewWorld.CrystalDiskInfo"
- },
- "WPFInstallcapframex": {
- "category": "Utilities",
- "choco": "na",
- "content": "CapFrameX",
- "description": "Frametimes capture and analysis tool based on Intel\u0026#39;s PresentMon. Overlay provided by Rivatuner Statistics Server.",
- "link": "https://www.capframex.com/",
- "winget": "CXWorld.CapFrameX"
- },
- "WPFInstallcrystaldiskmark": {
- "category": "Utilities",
- "choco": "crystaldiskmark",
- "content": "Crystal Disk Mark",
- "description": "Crystal Disk Mark is a disk benchmarking tool that measures the read and write speeds of storage devices. It helps users assess the performance of their hard drives and SSDs.",
- "link": "https://crystalmark.info/en/software/crystaldiskmark/",
- "winget": "CrystalDewWorld.CrystalDiskMark"
- },
- "WPFInstalldarktable": {
- "category": "Multimedia Tools",
- "choco": "darktable",
- "content": "darktable",
- "description": "Open-source photo editing tool, offering an intuitive interface, advanced editing capabilities, and a non-destructive workflow for seamless image enhancement.",
- "link": "https://www.darktable.org/install/",
- "winget": "darktable.darktable"
- },
- "WPFInstallDaxStudio": {
- "category": "Development",
- "choco": "daxstudio",
- "content": "DaxStudio",
- "description": "DAX (Data Analysis eXpressions) Studio is the ultimate tool for executing and analyzing DAX queries against Microsoft Tabular models.",
- "link": "https://daxstudio.org/",
- "winget": "DaxStudio.DaxStudio"
- },
- "WPFInstallddu": {
- "category": "Utilities",
- "choco": "ddu",
- "content": "Display Driver Uninstaller",
- "description": "Display Driver Uninstaller (DDU) is a tool for completely uninstalling graphics drivers from NVIDIA, AMD, and Intel. It is useful for troubleshooting graphics driver-related issues.",
- "link": "https://www.wagnardsoft.com/display-driver-uninstaller-DDU-",
- "winget": "ddu"
- },
- "WPFInstalldeluge": {
- "category": "Utilities",
- "choco": "deluge",
- "content": "Deluge",
- "description": "Deluge is a free and open-source BitTorrent client. It features a user-friendly interface, support for plugins, and the ability to manage torrents remotely.",
- "link": "https://deluge-torrent.org/",
- "winget": "DelugeTeam.Deluge"
- },
- "WPFInstalldevtoys": {
- "category": "Utilities",
- "choco": "devtoys",
- "content": "DevToys",
- "description": "DevToys is a collection of development-related utilities and tools for Windows. It includes tools for file management, code formatting, and productivity enhancements for developers.",
- "link": "https://devtoys.app/",
- "winget": "DevToys-app.DevToys"
- },
- "WPFInstalldigikam": {
- "category": "Multimedia Tools",
- "choco": "digikam",
- "content": "digiKam",
- "description": "digiKam is an advanced open-source photo management software with features for organizing, editing, and sharing photos.",
- "link": "https://www.digikam.org/",
- "winget": "KDE.digikam"
- },
- "WPFInstalldiscord": {
- "category": "Communications",
- "choco": "discord",
- "content": "Discord",
- "description": "Discord is a popular communication platform with voice, video, and text chat, designed for gamers but used by a wide range of communities.",
- "link": "https://discord.com/",
- "winget": "Discord.Discord"
- },
- "WPFInstallditto": {
- "category": "Utilities",
- "choco": "ditto",
- "content": "Ditto",
- "description": "Ditto is an extension to the standard windows clipboard.",
- "link": "https://github.com/sabrogden/Ditto",
- "winget": "Ditto.Ditto"
- },
- "WPFInstalldockerdesktop": {
- "category": "Development",
- "choco": "docker-desktop",
- "content": "Docker Desktop",
- "description": "Docker Desktop is a powerful tool for containerized application development and deployment.",
- "link": "https://www.docker.com/products/docker-desktop",
- "winget": "Docker.DockerDesktop"
- },
- "WPFInstalldotnet3": {
- "category": "Microsoft Tools",
- "choco": "dotnetcore3-desktop-runtime",
- "content": ".NET Desktop Runtime 3.1",
- "description": ".NET Desktop Runtime 3.1 is a runtime environment required for running applications developed with .NET Core 3.1.",
- "link": "https://dotnet.microsoft.com/download/dotnet/3.1",
- "winget": "Microsoft.DotNet.DesktopRuntime.3_1"
- },
- "WPFInstalldotnet5": {
- "category": "Microsoft Tools",
- "choco": "dotnet-5.0-runtime",
- "content": ".NET Desktop Runtime 5",
- "description": ".NET Desktop Runtime 5 is a runtime environment required for running applications developed with .NET 5.",
- "link": "https://dotnet.microsoft.com/download/dotnet/5.0",
- "winget": "Microsoft.DotNet.DesktopRuntime.5"
- },
- "WPFInstalldotnet6": {
- "category": "Microsoft Tools",
- "choco": "dotnet-6.0-runtime",
- "content": ".NET Desktop Runtime 6",
- "description": ".NET Desktop Runtime 6 is a runtime environment required for running applications developed with .NET 6.",
- "link": "https://dotnet.microsoft.com/download/dotnet/6.0",
- "winget": "Microsoft.DotNet.DesktopRuntime.6"
- },
- "WPFInstalldotnet7": {
- "category": "Microsoft Tools",
- "choco": "dotnet-7.0-runtime",
- "content": ".NET Desktop Runtime 7",
- "description": ".NET Desktop Runtime 7 is a runtime environment required for running applications developed with .NET 7.",
- "link": "https://dotnet.microsoft.com/download/dotnet/7.0",
- "winget": "Microsoft.DotNet.DesktopRuntime.7"
- },
- "WPFInstalldotnet8": {
- "category": "Microsoft Tools",
- "choco": "dotnet-8.0-runtime",
- "content": ".NET Desktop Runtime 8",
- "description": ".NET Desktop Runtime 8 is a runtime environment required for running applications developed with .NET 8.",
- "link": "https://dotnet.microsoft.com/download/dotnet/8.0",
- "winget": "Microsoft.DotNet.DesktopRuntime.8"
- },
- "WPFInstalldmt": {
- "winget": "GNE.DualMonitorTools",
- "choco": "dual-monitor-tools",
- "category": "Utilities",
- "content": "Dual Monitor Tools",
- "link": "https://dualmonitortool.sourceforge.net/",
- "description": "Dual Monitor Tools (DMT) is a FOSS app that customize handling multiple monitors and even lock the mouse on specific monitor. Useful for full screen games and apps that does not handle well a second monitor or helps the workflow."
- },
- "WPFInstallduplicati": {
- "category": "Utilities",
- "choco": "duplicati",
- "content": "Duplicati",
- "description": "Duplicati is an open-source backup solution that supports encrypted, compressed, and incremental backups. It is designed to securely store data on cloud storage services.",
- "link": "https://www.duplicati.com/",
- "winget": "Duplicati.Duplicati"
- },
- "WPFInstalleaapp": {
- "category": "Games",
- "choco": "ea-app",
- "content": "EA App",
- "description": "EA App is a platform for accessing and playing Electronic Arts games.",
- "link": "https://www.ea.com/ea-app",
- "winget": "ElectronicArts.EADesktop"
- },
- "WPFInstalleartrumpet": {
- "category": "Multimedia Tools",
- "choco": "eartrumpet",
- "content": "EarTrumpet (Audio)",
- "description": "EarTrumpet is an audio control app for Windows, providing a simple and intuitive interface for managing sound settings.",
- "link": "https://eartrumpet.app/",
- "winget": "File-New-Project.EarTrumpet"
- },
- "WPFInstalledge": {
- "category": "Browsers",
- "choco": "microsoft-edge",
- "content": "Edge",
- "description": "Microsoft Edge is a modern web browser built on Chromium, offering performance, security, and integration with Microsoft services.",
- "link": "https://www.microsoft.com/edge",
- "winget": "Microsoft.Edge"
- },
- "WPFInstallefibooteditor": {
- "category": "Pro Tools",
- "choco": "na",
- "content": "EFI Boot Editor",
- "description": "EFI Boot Editor is a tool for managing the EFI/UEFI boot entries on your system. It allows you to customize the boot configuration of your computer.",
- "link": "https://www.easyuefi.com/",
- "winget": "EFIBootEditor.EFIBootEditor"
- },
- "WPFInstallemulationstation": {
- "category": "Games",
- "choco": "emulationstation",
- "content": "Emulation Station",
- "description": "Emulation Station is a graphical and themeable emulator front-end that allows you to access all your favorite games in one place.",
- "link": "https://emulationstation.org/",
- "winget": "Emulationstation.Emulationstation"
- },
- "WPFInstallepicgames": {
- "category": "Games",
- "choco": "epicgameslauncher",
- "content": "Epic Games Launcher",
- "description": "Epic Games Launcher is the client for accessing and playing games from the Epic Games Store.",
- "link": "https://www.epicgames.com/store/en-US/",
- "winget": "EpicGames.EpicGamesLauncher"
- },
- "WPFInstallerrorlookup": {
- "category": "Utilities",
- "choco": "na",
- "content": "Windows Error Code Lookup",
- "description": "ErrorLookup is a tool for looking up Windows error codes and their descriptions.",
- "link": "https://github.com/HenryPP/ErrorLookup",
- "winget": "Henry++.ErrorLookup"
- },
- "WPFInstallesearch": {
- "category": "Utilities",
- "choco": "everything",
- "content": "Everything Search",
- "description": "Everything Search is a fast and efficient file search utility for Windows.",
- "link": "https://www.voidtools.com/",
- "winget": "voidtools.Everything"
- },
- "WPFInstallespanso": {
- "category": "Utilities",
- "choco": "espanso",
- "content": "Espanso",
- "description": "Cross-platform and open-source Text Expander written in Rust",
- "link": "https://espanso.org/",
- "winget": "Espanso.Espanso"
- },
- "WPFInstalletcher": {
- "category": "Utilities",
- "choco": "etcher",
- "content": "Etcher USB Creator",
- "description": "Etcher is a powerful tool for creating bootable USB drives with ease.",
- "link": "https://www.balena.io/etcher/",
- "winget": "Balena.Etcher"
- },
- "WPFInstallfalkon": {
- "category": "Browsers",
- "choco": "falkon",
- "content": "Falkon",
- "description": "Falkon is a lightweight and fast web browser with a focus on user privacy and efficiency.",
- "link": "https://www.falkon.org/",
- "winget": "KDE.Falkon"
- },
- "WPFInstallfastfetch": {
- "category": "Utilities",
- "choco": "na",
- "content": "Fastfetch",
- "description": "Fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way",
- "link": "https://github.com/fastfetch-cli/fastfetch/",
- "winget": "Fastfetch-cli.Fastfetch"
- },
- "WPFInstallferdium": {
- "category": "Communications",
- "choco": "ferdium",
- "content": "Ferdium",
- "description": "Ferdium is a messaging application that combines multiple messaging services into a single app for easy management.",
- "link": "https://ferdium.org/",
- "winget": "Ferdium.Ferdium"
- },
- "WPFInstallffmpeg": {
- "category": "Multimedia Tools",
- "choco": "ffmpeg-full",
- "content": "FFmpeg (full)",
- "description": "FFmpeg is a powerful multimedia processing tool that enables users to convert, edit, and stream audio and video files with a vast range of codecs and formats.",
- "link": "https://ffmpeg.org/",
- "winget": "Gyan.FFmpeg"
- },
- "WPFInstallfileconverter": {
- "category": "Utilities",
- "choco": "file-converter",
- "content": "File-Converter",
- "description": "File Converter is a very simple tool which allows you to convert and compress one or several file(s) using the context menu in windows explorer.",
- "link": "https://file-converter.io/",
- "winget": "AdrienAllard.FileConverter"
- },
- "WPFInstallfiles": {
- "category": "Utilities",
- "choco": "files",
- "content": "Files",
- "description": "Alternative file explorer.",
- "link": "https://github.com/files-community/Files",
- "winget": "na"
- },
- "WPFInstallfirealpaca": {
- "category": "Multimedia Tools",
- "choco": "firealpaca",
- "content": "Fire Alpaca",
- "description": "Fire Alpaca is a free digital painting software that provides a wide range of drawing tools and a user-friendly interface.",
- "link": "https://firealpaca.com/",
- "winget": "FireAlpaca.FireAlpaca"
- },
- "WPFInstallfirefox": {
- "category": "Browsers",
- "choco": "firefox",
- "content": "Firefox",
- "description": "Mozilla Firefox is an open-source web browser known for its customization options, privacy features, and extensions.",
- "link": "https://www.mozilla.org/en-US/firefox/new/",
- "winget": "Mozilla.Firefox"
- },
- "WPFInstallfirefoxesr": {
- "category": "Browsers",
- "choco": "FirefoxESR",
- "content": "Firefox ESR",
- "description": "Mozilla Firefox is an open-source web browser known for its customization options, privacy features, and extensions. Firefox ESR (Extended Support Release) receives major updates every 42 weeks with minor updates such as crash fixes, security fixes and policy updates as needed, but at least every four weeks.",
- "link": "https://www.mozilla.org/en-US/firefox/enterprise/",
- "winget": "Mozilla.Firefox.ESR"
- },
- "WPFInstallflameshot": {
- "category": "Multimedia Tools",
- "choco": "flameshot",
- "content": "Flameshot (Screenshots)",
- "description": "Flameshot is a powerful yet simple to use screenshot software, offering annotation and editing features.",
- "link": "https://flameshot.org/",
- "winget": "Flameshot.Flameshot"
- },
- "WPFInstalllightshot": {
- "category": "Multimedia Tools",
- "choco": "lightshot",
- "content": "Lightshot (Screenshots)",
- "description": "Ligthshot is an Easy-to-use, light-weight screenshot software tool, where you can optionally edit your screenshots using different tools, share them via Internet and/or save to disk, and customize the available options.",
- "link": "https://app.prntscr.com/",
- "winget": "Skillbrains.Lightshot"
- },
- "WPFInstallfloorp": {
- "category": "Browsers",
- "choco": "na",
- "content": "Floorp",
- "description": "Floorp is an open-source web browser project that aims to provide a simple and fast browsing experience.",
- "link": "https://floorp.app/",
- "winget": "Ablaze.Floorp"
- },
- "WPFInstallflow": {
- "category": "Utilities",
- "choco": "flow-launcher",
- "content": "Flow launcher",
- "description": "Keystroke launcher for Windows to search, manage and launch files, folders bookmarks, websites and more.",
- "link": "https://www.flowlauncher.com/",
- "winget": "Flow-Launcher.Flow-Launcher"
- },
- "WPFInstallflux": {
- "category": "Utilities",
- "choco": "flux",
- "content": "F.lux",
- "description": "f.lux adjusts the color temperature of your screen to reduce eye strain during nighttime use.",
- "link": "https://justgetflux.com/",
- "winget": "flux.flux"
- },
- "WPFInstallfoobar": {
- "category": "Multimedia Tools",
- "choco": "foobar2000",
- "content": "foobar2000 (Music Player)",
- "description": "foobar2000 is a highly customizable and extensible music player for Windows, known for its modular design and advanced features.",
- "link": "https://www.foobar2000.org/",
- "winget": "PeterPawlowski.foobar2000"
- },
- "WPFInstallfoxpdfeditor": {
- "category": "Document",
- "choco": "na",
- "content": "Foxit PDF Editor",
- "description": "Foxit PDF Editor is a feature-rich PDF editor and viewer with a familiar ribbon-style interface.",
- "link": "https://www.foxit.com/pdf-editor/",
- "winget": "Foxit.PhantomPDF"
- },
- "WPFInstallfoxpdfreader": {
- "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"
- },
- "WPFInstallfreecad": {
- "category": "Multimedia Tools",
- "choco": "freecad",
- "content": "FreeCAD",
- "description": "FreeCAD is a parametric 3D CAD modeler, designed for product design and engineering tasks, with a focus on flexibility and extensibility.",
- "link": "https://www.freecadweb.org/",
- "winget": "FreeCAD.FreeCAD"
- },
- "WPFInstallfxsound": {
- "category": "Multimedia Tools",
- "choco": "fxsound",
- "content": "FxSound",
- "description": "FxSound is a cutting-edge audio enhancement software that elevates your listening experience across all media.",
- "link": "https://www.fxsound.com/",
- "winget": "FxSoundLLC.FxSound"
- },
- "WPFInstallfzf": {
- "category": "Utilities",
- "choco": "fzf",
- "content": "Fzf",
- "description": "A command-line fuzzy finder",
- "link": "https://github.com/junegunn/fzf/",
- "winget": "junegunn.fzf"
- },
- "WPFInstallgeforcenow": {
- "category": "Games",
- "choco": "nvidia-geforce-now",
- "content": "GeForce NOW",
- "description": "GeForce NOW is a cloud gaming service that allows you to play high-quality PC games on your device.",
- "link": "https://www.nvidia.com/en-us/geforce-now/",
- "winget": "Nvidia.GeForceNow"
- },
- "WPFInstallgimp": {
- "category": "Multimedia Tools",
- "choco": "gimp",
- "content": "GIMP (Image Editor)",
- "description": "GIMP is a versatile open-source raster graphics editor used for tasks such as photo retouching, image editing, and image composition.",
- "link": "https://www.gimp.org/",
- "winget": "GIMP.GIMP"
- },
- "WPFInstallgit": {
- "category": "Development",
- "choco": "git",
- "content": "Git",
- "description": "Git is a distributed version control system widely used for tracking changes in source code during software development.",
- "link": "https://git-scm.com/",
- "winget": "Git.Git"
- },
- "WPFInstallgitextensions": {
- "category": "Development",
- "choco": "git;gitextensions",
- "content": "Git Extensions",
- "description": "Git Extensions is a graphical user interface for Git, providing additional features for easier source code management.",
- "link": "https://gitextensions.github.io/",
- "winget": "GitExtensionsTeam.GitExtensions"
- },
- "WPFInstallgithubcli": {
- "category": "Development",
- "choco": "git;gh",
- "content": "GitHub CLI",
- "description": "GitHub CLI is a command-line tool that simplifies working with GitHub directly from the terminal.",
- "link": "https://cli.github.com/",
- "winget": "GitHub.cli"
- },
- "WPFInstallgithubdesktop": {
- "category": "Development",
- "choco": "git;github-desktop",
- "content": "GitHub Desktop",
- "description": "GitHub Desktop is a visual Git client that simplifies collaboration on GitHub repositories with an easy-to-use interface.",
- "link": "https://desktop.github.com/",
- "winget": "GitHub.GitHubDesktop"
- },
- "WPFInstallgitkrakenclient": {
- "category": "Development",
- "choco": "gitkraken",
- "content": "GitKraken Client",
- "description": "GitKraken Client is a powerful visual Git client from Axosoft that works with ALL git repositories on any hosting environment.",
- "link": "https://www.gitkraken.com/git-client",
- "winget": "Axosoft.GitKraken"
- },
- "WPFInstallglaryutilities": {
- "category": "Utilities",
- "choco": "glaryutilities-free",
- "content": "Glary Utilities",
- "description": "Glary Utilities is a comprehensive system optimization and maintenance tool for Windows.",
- "link": "https://www.glarysoft.com/glary-utilities/",
- "winget": "Glarysoft.GlaryUtilities"
- },
- "WPFInstallgodotengine": {
- "category": "Development",
- "choco": "godot",
- "content": "Godot Engine",
- "description": "Godot Engine is a free, open-source 2D and 3D game engine with a focus on usability and flexibility.",
- "link": "https://godotengine.org/",
- "winget": "GodotEngine.GodotEngine"
- },
- "WPFInstallgog": {
- "category": "Games",
- "choco": "goggalaxy",
- "content": "GOG Galaxy",
- "description": "GOG Galaxy is a gaming client that offers DRM-free games, additional content, and more.",
- "link": "https://www.gog.com/galaxy",
- "winget": "GOG.Galaxy"
- },
- "WPFInstallgitify": {
- "category": "Development",
- "choco": "na",
- "content": "Gitify",
- "description": "GitHub notifications on your menu bar.",
- "link": "https://www.gitify.io/",
- "winget": "Gitify.Gitify"
- },
- "WPFInstallgolang": {
- "category": "Development",
- "choco": "golang",
- "content": "Go",
- "description": "Go (or Golang) is a statically typed, compiled programming language designed for simplicity, reliability, and efficiency.",
- "link": "https://go.dev/",
- "winget": "GoLang.Go"
- },
- "WPFInstallgoogledrive": {
- "category": "Utilities",
- "choco": "googledrive",
- "content": "Google Drive",
- "description": "File syncing across devices all tied to your google account",
- "link": "https://www.google.com/drive/",
- "winget": "Google.Drive"
- },
- "WPFInstallgpuz": {
- "category": "Utilities",
- "choco": "gpu-z",
- "content": "GPU-Z",
- "description": "GPU-Z provides detailed information about your graphics card and GPU.",
- "link": "https://www.techpowerup.com/gpuz/",
- "winget": "TechPowerUp.GPU-Z"
- },
- "WPFInstallgreenshot": {
- "category": "Multimedia Tools",
- "choco": "greenshot",
- "content": "Greenshot (Screenshots)",
- "description": "Greenshot is a light-weight screenshot software tool with built-in image editor and customizable capture options.",
- "link": "https://getgreenshot.org/",
- "winget": "Greenshot.Greenshot"
- },
- "WPFInstallgsudo": {
- "category": "Utilities",
- "choco": "gsudo",
- "content": "Gsudo",
- "description": "Gsudo is a sudo implementation for Windows, allowing elevated privilege execution.",
- "link": "https://gerardog.github.io/gsudo/",
- "winget": "gerardog.gsudo"
- },
- "WPFInstallguilded": {
- "category": "Communications",
- "choco": "na",
- "content": "Guilded",
- "description": "Guilded is a communication and productivity platform that includes chat, scheduling, and collaborative tools for gaming and communities.",
- "link": "https://www.guilded.gg/",
- "winget": "Guilded.Guilded"
- },
- "WPFInstallhandbrake": {
- "category": "Multimedia Tools",
- "choco": "handbrake",
- "content": "HandBrake",
- "description": "HandBrake is an open-source video transcoder, allowing you to convert video from nearly any format to a selection of widely supported codecs.",
- "link": "https://handbrake.fr/",
- "winget": "HandBrake.HandBrake"
- },
- "WPFInstallharmonoid": {
- "category": "Multimedia Tools",
- "choco": "na",
- "content": "Harmonoid",
- "description": "Plays and manages your music library. Looks beautiful and juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost and more.",
- "link": "https://harmonoid.com/",
- "winget": "Harmonoid.Harmonoid"
- },
- "WPFInstallheidisql": {
- "category": "Pro Tools",
- "choco": "heidisql",
- "content": "HeidiSQL",
- "description": "HeidiSQL is a powerful and easy-to-use client for MySQL, MariaDB, Microsoft SQL Server, and PostgreSQL databases. It provides tools for database management and development.",
- "link": "https://www.heidisql.com/",
- "winget": "HeidiSQL.HeidiSQL"
- },
- "WPFInstallhelix": {
- "category": "Development",
- "choco": "helix",
- "content": "Helix",
- "description": "Helix is a neovim alternative built in rust.",
- "link": "https://helix-editor.com/",
- "winget": "Helix.Helix"
- },
- "WPFInstallheroiclauncher": {
- "category": "Games",
- "choco": "na",
- "content": "Heroic Games Launcher",
- "description": "Heroic Games Launcher is an open-source alternative game launcher for Epic Games Store.",
- "link": "https://heroicgameslauncher.com/",
- "winget": "HeroicGamesLauncher.HeroicGamesLauncher"
- },
- "WPFInstallhexchat": {
- "category": "Communications",
- "choco": "hexchat",
- "content": "Hexchat",
- "description": "HexChat is a free, open-source IRC (Internet Relay Chat) client with a graphical interface for easy communication.",
- "link": "https://hexchat.github.io/",
- "winget": "HexChat.HexChat"
- },
- "WPFInstallhwinfo": {
- "category": "Utilities",
- "choco": "hwinfo",
- "content": "HWiNFO",
- "description": "HWiNFO provides comprehensive hardware information and diagnostics for Windows.",
- "link": "https://www.hwinfo.com/",
- "winget": "REALiX.HWiNFO"
- },
- "WPFInstallhwmonitor": {
- "category": "Utilities",
- "choco": "hwmonitor",
- "content": "HWMonitor",
- "description": "HWMonitor is a hardware monitoring program that reads PC systems main health sensors.",
- "link": "https://www.cpuid.com/softwares/hwmonitor.html",
- "winget": "CPUID.HWMonitor"
- },
- "WPFInstallimageglass": {
- "category": "Multimedia Tools",
- "choco": "imageglass",
- "content": "ImageGlass (Image Viewer)",
- "description": "ImageGlass is a versatile image viewer with support for various image formats and a focus on simplicity and speed.",
- "link": "https://imageglass.org/",
- "winget": "DuongDieuPhap.ImageGlass"
- },
- "WPFInstallimgburn": {
- "category": "Multimedia Tools",
- "choco": "imgburn",
- "content": "ImgBurn",
- "description": "ImgBurn is a lightweight CD, DVD, HD-DVD, and Blu-ray burning application with advanced features for creating and burning disc images.",
- "link": "http://www.imgburn.com/",
- "winget": "LIGHTNINGUK.ImgBurn"
- },
- "WPFInstallinkscape": {
- "category": "Multimedia Tools",
- "choco": "inkscape",
- "content": "Inkscape",
- "description": "Inkscape is a powerful open-source vector graphics editor, suitable for tasks such as illustrations, icons, logos, and more.",
- "link": "https://inkscape.org/",
- "winget": "Inkscape.Inkscape"
- },
- "WPFInstallitch": {
- "category": "Games",
- "choco": "itch",
- "content": "Itch.io",
- "description": "Itch.io is a digital distribution platform for indie games and creative projects.",
- "link": "https://itch.io/",
- "winget": "ItchIo.Itch"
- },
- "WPFInstallitunes": {
- "category": "Multimedia Tools",
- "choco": "itunes",
- "content": "iTunes",
- "description": "iTunes is a media player, media library, and online radio broadcaster application developed by Apple Inc.",
- "link": "https://www.apple.com/itunes/",
- "winget": "Apple.iTunes"
- },
- "WPFInstalljami": {
- "category": "Communications",
- "choco": "jami",
- "content": "Jami",
- "description": "Jami is a secure and privacy-focused communication platform that offers audio and video calls, messaging, and file sharing.",
- "link": "https://jami.net/",
- "winget": "SFLinux.Jami"
- },
- "WPFInstalljava16": {
- "category": "Development",
- "choco": "temurin16jre",
- "content": "OpenJDK Java 16",
- "description": "OpenJDK Java 16 is the latest version of the open-source Java development kit.",
- "link": "https://adoptopenjdk.net/",
- "winget": "AdoptOpenJDK.OpenJDK.16"
- },
- "WPFInstalljava18": {
- "category": "Development",
- "choco": "temurin18jre",
- "content": "Oracle Java 18",
- "description": "Oracle Java 18 is the latest version of the official Java development kit from Oracle.",
- "link": "https://www.oracle.com/java/",
- "winget": "EclipseAdoptium.Temurin.18.JRE"
- },
- "WPFInstalljava21": {
- "category": "Development",
- "choco": "na",
- "content": "Azul Zulu JDK 21",
- "description": "Azul Zulu JDK 21 is a distribution of the OpenJDK with long-term support, performance enhancements, and security updates.",
- "link": "https://www.azul.com/downloads/zulu-community/",
- "winget": "Azul.Zulu.21.JDK"
- },
- "WPFInstalljava8": {
- "category": "Development",
- "choco": "temurin8jre",
- "content": "OpenJDK Java 8",
- "description": "OpenJDK Java 8 is an open-source implementation of the Java Platform, Standard Edition.",
- "link": "https://adoptopenjdk.net/",
- "winget": "EclipseAdoptium.Temurin.8.JRE"
- },
- "WPFInstalljava11runtime": {
- "category": "Development",
- "choco": "na",
- "content": "Eclipse Temurin JRE 11",
- "description": "Eclipse Temurin JRE is the open source Java SE build based upon OpenJRE.",
- "link": "https://adoptium.net/",
- "winget": "EclipseAdoptium.Temurin.11.JRE"
- },
- "WPFInstalljava17runtime": {
- "category": "Development",
- "choco": "na",
- "content": "Eclipse Temurin JRE 17",
- "description": "Eclipse Temurin JRE is the open source Java SE build based upon OpenJRE.",
- "link": "https://adoptium.net/",
- "winget": "EclipseAdoptium.Temurin.17.JRE"
- },
- "WPFInstalljava18runtime": {
- "category": "Development",
- "choco": "na",
- "content": "Eclipse Temurin JRE 18",
- "description": "Eclipse Temurin JRE is the open source Java SE build based upon OpenJRE.",
- "link": "https://adoptium.net/",
- "winget": "EclipseAdoptium.Temurin.18.JRE"
- },
- "WPFInstalljava19runtime": {
- "category": "Development",
- "choco": "na",
- "content": "Eclipse Temurin JRE 19",
- "description": "Eclipse Temurin JRE is the open source Java SE build based upon OpenJRE.",
- "link": "https://adoptium.net/",
- "winget": "EclipseAdoptium.Temurin.19.JRE"
- },
- "WPFInstalljdownloader": {
- "category": "Utilities",
- "choco": "jdownloader",
- "content": "JDownloader",
- "description": "JDownloader is a feature-rich download manager with support for various file hosting services.",
- "link": "http://jdownloader.org/",
- "winget": "AppWork.JDownloader"
- },
- "WPFInstalljellyfinmediaplayer": {
- "category": "Multimedia Tools",
- "choco": "jellyfin-media-player",
- "content": "Jellyfin Media Player",
- "description": "Jellyfin Media Player is a client application for the Jellyfin media server, providing access to your media library.",
- "link": "https://github.com/jellyfin/jellyfin-media-player",
- "winget": "Jellyfin.JellyfinMediaPlayer"
- },
- "WPFInstalljellyfinserver": {
- "category": "Multimedia Tools",
- "choco": "jellyfin",
- "content": "Jellyfin Server",
- "description": "Jellyfin Server is an open-source media server software, allowing you to organize and stream your media library.",
- "link": "https://jellyfin.org/",
- "winget": "Jellyfin.Server"
- },
- "WPFInstalljetbrains": {
- "category": "Development",
- "choco": "jetbrainstoolbox",
- "content": "Jetbrains Toolbox",
- "description": "Jetbrains Toolbox is a platform for easy installation and management of JetBrains developer tools.",
- "link": "https://www.jetbrains.com/toolbox/",
- "winget": "JetBrains.Toolbox"
- },
- "WPFInstalljoplin": {
- "category": "Document",
- "choco": "joplin",
- "content": "Joplin (FOSS Notes)",
- "description": "Joplin is an open-source note-taking and to-do application with synchronization capabilities.",
- "link": "https://joplinapp.org/",
- "winget": "Joplin.Joplin"
- },
- "WPFInstalljpegview": {
- "category": "Utilities",
- "choco": "jpegview",
- "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",
- "link": "https://github.com/sylikc/jpegview",
- "winget": "sylikc.JPEGView"
- },
- "WPFInstallkdeconnect": {
- "category": "Utilities",
- "choco": "kdeconnect-kde",
- "content": "KDE Connect",
- "description": "KDE Connect allows seamless integration between your KDE desktop and mobile devices.",
- "link": "https://community.kde.org/KDEConnect",
- "winget": "KDE.KDEConnect"
- },
- "WPFInstallkdenlive": {
- "category": "Multimedia Tools",
- "choco": "kdenlive",
- "content": "Kdenlive (Video Editor)",
- "description": "Kdenlive is an open-source video editing software with powerful features for creating and editing professional-quality videos.",
- "link": "https://kdenlive.org/",
- "winget": "KDE.Kdenlive"
- },
- "WPFInstallkeepass": {
- "category": "Utilities",
- "choco": "keepassxc",
- "content": "KeePassXC",
- "description": "KeePassXC is a cross-platform, open-source password manager with strong encryption features.",
- "link": "https://keepassxc.org/",
- "winget": "KeePassXCTeam.KeePassXC"
- },
- "WPFInstallklite": {
- "category": "Multimedia Tools",
- "choco": "k-litecodecpack-standard",
- "content": "K-Lite Codec Standard",
- "description": "K-Lite Codec Pack Standard is a collection of audio and video codecs and related tools, providing essential components for media playback.",
- "link": "https://www.codecguide.com/",
- "winget": "CodecGuide.K-LiteCodecPack.Standard"
- },
- "WPFInstallkodi": {
- "category": "Multimedia Tools",
- "choco": "kodi",
- "content": "Kodi Media Center",
- "description": "Kodi is an open-source media center application that allows you to play and view most videos, music, podcasts, and other digital media files.",
- "link": "https://kodi.tv/",
- "winget": "XBMCFoundation.Kodi"
- },
- "WPFInstallkrita": {
- "category": "Multimedia Tools",
- "choco": "krita",
- "content": "Krita (Image Editor)",
- "description": "Krita is a powerful open-source painting application. It is designed for concept artists, illustrators, matte and texture artists, and the VFX industry.",
- "link": "https://krita.org/en/features/",
- "winget": "KDE.Krita"
- },
- "WPFInstalllazygit": {
- "category": "Development",
- "choco": "lazygit",
- "content": "Lazygit",
- "description": "Simple terminal UI for git commands",
- "link": "https://github.com/jesseduffield/lazygit/",
- "winget": "JesseDuffield.lazygit"
- },
- "WPFInstalllibreoffice": {
- "category": "Document",
- "choco": "libreoffice-fresh",
- "content": "LibreOffice",
- "description": "LibreOffice is a powerful and free office suite, compatible with other major office suites.",
- "link": "https://www.libreoffice.org/",
- "winget": "TheDocumentFoundation.LibreOffice"
- },
- "WPFInstalllibrewolf": {
- "category": "Browsers",
- "choco": "librewolf",
- "content": "LibreWolf",
- "description": "LibreWolf is a privacy-focused web browser based on Firefox, with additional privacy and security enhancements.",
- "link": "https://librewolf-community.gitlab.io/",
- "winget": "LibreWolf.LibreWolf"
- },
- "WPFInstalllinkshellextension": {
- "category": "Utilities",
- "choco": "linkshellextension",
- "content": "Link Shell extension",
- "description": "Link Shell Extension (LSE) provides for the creation of Hardlinks, Junctions, Volume Mountpoints, Symbolic Links, a folder cloning process that utilises Hardlinks or Symbolic Links and a copy process taking care of Junctions, Symbolic Links, and Hardlinks. LSE, as its name implies is implemented as a Shell extension and is accessed from Windows Explorer, or similar file/folder managers.",
- "link": "https://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html",
- "winget": "HermannSchinagl.LinkShellExtension"
- },
- "WPFInstalllinphone": {
- "category": "Communications",
- "choco": "linphone",
- "content": "Linphone",
- "description": "Linphone is an open-source voice over IP (VoIPservice that allows for audio and video calls, messaging, and more.",
- "link": "https://www.linphone.org/",
- "winget": "BelledonneCommunications.Linphone"
- },
- "WPFInstalllivelywallpaper": {
- "category": "Utilities",
- "choco": "lively",
- "content": "Lively Wallpaper",
- "description": "Free and open-source software that allows users to set animated desktop wallpapers and screensavers.",
- "link": "https://www.rocksdanister.com/lively/",
- "winget": "rocksdanister.LivelyWallpaper"
- },
- "WPFInstalllocalsend": {
- "category": "Utilities",
- "choco": "localsend.install",
- "content": "LocalSend",
- "description": "An open source cross-platform alternative to AirDrop.",
- "link": "https://localsend.org/",
- "winget": "LocalSend.LocalSend"
- },
- "WPFInstalllockhunter": {
- "category": "Utilities",
- "choco": "lockhunter",
- "content": "LockHunter",
- "description": "LockHunter is a free tool to delete files blocked by something you do not know.",
- "link": "https://lockhunter.com/",
- "winget": "CrystalRich.LockHunter"
- },
- "WPFInstalllogseq": {
- "category": "Document",
- "choco": "logseq",
- "content": "Logseq",
- "description": "Logseq is a versatile knowledge management and note-taking application designed for the digital thinker. With a focus on the interconnectedness of ideas, Logseq allows users to seamlessly organize their thoughts through a combination of hierarchical outlines and bi-directional linking. It supports both structured and unstructured content, enabling users to create a personalized knowledge graph that adapts to their evolving ideas and insights.",
- "link": "https://logseq.com/",
- "winget": "Logseq.Logseq"
- },
- "WPFInstallmalwarebytes": {
- "category": "Utilities",
- "choco": "malwarebytes",
- "content": "Malwarebytes",
- "description": "Malwarebytes is an anti-malware software that provides real-time protection against threats.",
- "link": "https://www.malwarebytes.com/",
- "winget": "Malwarebytes.Malwarebytes"
- },
- "WPFInstallmasscode": {
- "category": "Document",
- "choco": "na",
- "content": "massCode (Snippet Manager)",
- "description": "massCode is a fast and efficient open-source code snippet manager for developers.",
- "link": "https://masscode.io/",
- "winget": "antonreshetov.massCode"
- },
- "WPFInstallmatrix": {
- "category": "Communications",
- "choco": "element-desktop",
- "content": "Element",
- "description": "Element is a client for Matrix\u0026#8212;an open network for secure, decentralized communication.",
- "link": "https://element.io/",
- "winget": "Element.Element"
- },
- "WPFInstallmeld": {
- "category": "Utilities",
- "choco": "meld",
- "content": "Meld",
- "description": "Meld is a visual diff and merge tool for files and directories.",
- "link": "https://meldmerge.org/",
- "winget": "Meld.Meld"
- },
- "WPFInstallmonitorian": {
- "category": "Utilities",
- "choco": "monitorian",
- "content": "Monitorian",
- "description": "Monitorian is a utility for adjusting monitor brightness and contrast on Windows.",
- "link": "https://github.com/emoacht/Monitorian",
- "winget": "emoacht.Monitorian"
- },
- "WPFInstallmoonlight": {
- "category": "Games",
- "choco": "moonlight-qt",
- "content": "Moonlight/GameStream Client",
- "description": "Moonlight/GameStream Client allows you to stream PC games to other devices over your local network.",
- "link": "https://moonlight-stream.org/",
- "winget": "MoonlightGameStreamingProject.Moonlight"
- },
- "WPFInstallMotrix": {
- "category": "Utilities",
- "choco": "motrix",
- "content": "Motrix Download Manager",
- "description": "A full-featured download manager.",
- "link": "https://motrix.app/",
- "winget": "agalwood.Motrix"
- },
- "WPFInstallmpc": {
- "category": "Multimedia Tools",
- "choco": "mpc-hc",
- "content": "Media Player Classic (Video Player)",
- "description": "Media Player Classic is a lightweight, open-source media player that supports a wide range of audio and video formats. It includes features like customizable toolbars and support for subtitles.",
- "link": "https://mpc-hc.org/",
- "winget": "clsid2.mpc-hc"
- },
- "WPFInstallmremoteng": {
- "category": "Pro Tools",
- "choco": "mremoteng",
- "content": "mRemoteNG",
- "description": "mRemoteNG is a free and open-source remote connections manager. It allows you to view and manage multiple remote sessions in a single interface.",
- "link": "https://mremoteng.org/",
- "winget": "mRemoteNG.mRemoteNG"
- },
- "WPFInstallmsedgeredirect": {
- "category": "Utilities",
- "choco": "msedgeredirect",
- "content": "MSEdgeRedirect",
- "description": "A Tool to Redirect News, Search, Widgets, Weather, and More to Your Default Browser.",
- "link": "https://github.com/rcmaehl/MSEdgeRedirect",
- "winget": "rcmaehl.MSEdgeRedirect"
- },
- "WPFInstallmsiafterburner": {
- "category": "Utilities",
- "choco": "msiafterburner",
- "content": "MSI Afterburner",
- "description": "MSI Afterburner is a graphics card overclocking utility with advanced features.",
- "link": "https://www.msi.com/Landing/afterburner",
- "winget": "Guru3D.Afterburner"
- },
- "WPFInstallmullvadvpn": {
- "category": "Pro Tools",
- "choco": "mullvad-app",
- "content": "Mullvad VPN",
- "description": "This is the VPN client software for the Mullvad VPN service.",
- "link": "https://github.com/mullvad/mullvadvpn-app",
- "winget": "MullvadVPN.MullvadVPN"
- },
- "WPFInstallBorderlessGaming": {
- "category": "Utilities",
- "choco": "borderlessgaming",
- "content": "Borderless Gaming",
- "description": "Play your favorite games in a borderless window; no more time consuming alt-tabs.",
- "link": "https://github.com/Codeusa/Borderless-Gaming",
- "winget": "Codeusa.BorderlessGaming"
- },
- "WPFInstallEqualizerAPO": {
- "category": "Multimedia Tools",
- "choco": "equalizerapo",
- "content": "Equalizer APO",
- "description": "Equalizer APO is a parametric / graphic equalizer for Windows.",
- "link": "https://sourceforge.net/projects/equalizerapo",
- "winget": "na"
- },
- "WPFInstallCompactGUI": {
- "category": "Utilities",
- "choco": "compactgui",
- "content": "Compact GUI",
- "description": "Transparently compress active games and programs using Windows 10/11 APIs",
- "link": "https://github.com/IridiumIO/CompactGUI",
- "winget": "IridiumIO.CompactGUI"
- },
- "WPFInstallExifCleaner": {
- "category": "Utilities",
- "choco": "na",
- "content": "ExifCleaner",
- "description": "Desktop app to clean metadata from images, videos, PDFs, and other files.",
- "link": "https://github.com/szTheory/exifcleaner",
- "winget": "szTheory.exifcleaner"
- },
- "WPFInstallmullvadbrowser": {
- "category": "Browsers",
- "choco": "na",
- "content": "Mullvad Browser",
- "description": "Mullvad Browser is a privacy-focused web browser, developed in partnership with the Tor Project.",
- "link": "https://mullvad.net/browser",
- "winget": "MullvadVPN.MullvadBrowser"
- },
- "WPFInstallmusescore": {
- "category": "Multimedia Tools",
- "choco": "musescore",
- "content": "MuseScore",
- "description": "Create, play back and print beautiful sheet music with free and easy to use music notation software MuseScore.",
- "link": "https://musescore.org/en",
- "winget": "Musescore.Musescore"
- },
- "WPFInstallmusicbee": {
- "category": "Multimedia Tools",
- "choco": "musicbee",
- "content": "MusicBee (Music Player)",
- "description": "MusicBee is a customizable music player with support for various audio formats. It includes features like an integrated search function, tag editing, and more.",
- "link": "https://getmusicbee.com/",
- "winget": "MusicBee.MusicBee"
- },
- "WPFInstallmp3tag": {
- "category": "Multimedia Tools",
- "choco": "mp3tag",
- "content": "Mp3tag (Metadata Audio Editor)",
- "description": "Mp3tag is a powerful and yet easy-to-use tool to edit metadata of common audio formats.",
- "link": "https://www.mp3tag.de/en/",
- "winget": "Mp3tag.Mp3tag"
- },
- "WPFInstalltagscanner": {
- "category": "Multimedia Tools",
- "choco": "tagscanner",
- "content": "TagScanner (Tag Scanner)",
- "description": "TagScanner is a powerful tool for organizing and managing your music collection",
- "link": "https://www.xdlab.ru/en/",
- "winget": "SergeySerkov.TagScanner"
- },
- "WPFInstallnanazip": {
- "category": "Utilities",
- "choco": "nanazip",
- "content": "NanaZip",
- "description": "NanaZip is a fast and efficient file compression and decompression tool.",
- "link": "https://github.com/M2Team/NanaZip",
- "winget": "M2Team.NanaZip"
- },
- "WPFInstallnetbird": {
- "category": "Pro Tools",
- "choco": "netbird",
- "content": "NetBird",
- "description": "NetBird is a Open Source alternative comparable to TailScale that can be connected to a selfhosted Server.",
- "link": "https://netbird.io/",
- "winget": "netbird"
- },
- "WPFInstallnaps2": {
- "category": "Document",
- "choco": "naps2",
- "content": "NAPS2 (Document Scanner)",
- "description": "NAPS2 is a document scanning application that simplifies the process of creating electronic documents.",
- "link": "https://www.naps2.com/",
- "winget": "Cyanfish.NAPS2"
- },
- "WPFInstallneofetchwin": {
- "category": "Utilities",
- "choco": "na",
- "content": "Neofetch",
- "description": "Neofetch is a command-line utility for displaying system information in a visually appealing way.",
- "link": "https://github.com/nepnep39/neofetch-win",
- "winget": "nepnep.neofetch-win"
- },
- "WPFInstallneovim": {
- "category": "Development",
- "choco": "neovim",
- "content": "Neovim",
- "description": "Neovim is a highly extensible text editor and an improvement over the original Vim editor.",
- "link": "https://neovim.io/",
- "winget": "Neovim.Neovim"
- },
- "WPFInstallnextclouddesktop": {
- "category": "Utilities",
- "choco": "nextcloud-client",
- "content": "Nextcloud Desktop",
- "description": "Nextcloud Desktop is the official desktop client for the Nextcloud file synchronization and sharing platform.",
- "link": "https://nextcloud.com/install/#install-clients",
- "winget": "Nextcloud.NextcloudDesktop"
- },
- "WPFInstallnglide": {
- "category": "Multimedia Tools",
- "choco": "na",
- "content": "nGlide (3dfx compatibility)",
- "description": "nGlide is a 3Dfx Voodoo Glide wrapper. It allows you to play games that use Glide API on modern graphics cards without the need for a 3Dfx Voodoo graphics card.",
- "link": "http://www.zeus-software.com/downloads/nglide",
- "winget": "ZeusSoftware.nGlide"
- },
- "WPFInstallnmap": {
- "category": "Pro Tools",
- "choco": "nmap",
- "content": "Nmap",
- "description": "Nmap (Network Mapper) is an open-source tool for network exploration and security auditing. It discovers devices on a network and provides information about their ports and services.",
- "link": "https://nmap.org/",
- "winget": "Insecure.Nmap"
- },
- "WPFInstallnodejs": {
- "category": "Development",
- "choco": "nodejs",
- "content": "NodeJS",
- "description": "NodeJS is a JavaScript runtime built on Chrome\u0026#39;s V8 JavaScript engine for building server-side and networking applications.",
- "link": "https://nodejs.org/",
- "winget": "OpenJS.NodeJS"
- },
- "WPFInstallnodejslts": {
- "category": "Development",
- "choco": "nodejs-lts",
- "content": "NodeJS LTS",
- "description": "NodeJS LTS provides Long-Term Support releases for stable and reliable server-side JavaScript development.",
- "link": "https://nodejs.org/",
- "winget": "OpenJS.NodeJS.LTS"
- },
- "WPFInstallnomacs": {
- "category": "Multimedia Tools",
- "choco": "nomacs",
- "content": "Nomacs (Image viewer)",
- "description": "Nomacs is a free, open-source image viewer that supports multiple platforms. It features basic image editing capabilities and supports a variety of image formats.",
- "link": "https://nomacs.org/",
- "winget": "nomacs.nomacs"
- },
- "WPFInstallnotepadplus": {
- "category": "Document",
- "choco": "notepadplusplus",
- "content": "Notepad++",
- "description": "Notepad++ is a free, open-source code editor and Notepad replacement with support for multiple languages.",
- "link": "https://notepad-plus-plus.org/",
- "winget": "Notepad++.Notepad++"
- },
- "WPFInstallnuget": {
- "category": "Microsoft Tools",
- "choco": "nuget.commandline",
- "content": "NuGet",
- "description": "NuGet is a package manager for the .NET framework, enabling developers to manage and share libraries in their .NET applications.",
- "link": "https://www.nuget.org/",
- "winget": "Microsoft.NuGet"
- },
- "WPFInstallnushell": {
- "category": "Utilities",
- "choco": "nushell",
- "content": "Nushell",
- "description": "Nushell is a new shell that takes advantage of modern hardware and systems to provide a powerful, expressive, and fast experience.",
- "link": "https://www.nushell.sh/",
- "winget": "Nushell.Nushell"
- },
- "WPFInstallnvclean": {
- "category": "Utilities",
- "choco": "na",
- "content": "NVCleanstall",
- "description": "NVCleanstall is a tool designed to customize NVIDIA driver installations, allowing advanced users to control more aspects of the installation process.",
- "link": "https://www.techpowerup.com/nvcleanstall/",
- "winget": "TechPowerUp.NVCleanstall"
- },
- "WPFInstallnvm": {
- "category": "Development",
- "choco": "nvm",
- "content": "Node Version Manager",
- "description": "Node Version Manager (NVM) for Windows allows you to easily switch between multiple Node.js versions.",
- "link": "https://github.com/coreybutler/nvm-windows",
- "winget": "CoreyButler.NVMforWindows"
- },
- "WPFInstallobs": {
- "category": "Multimedia Tools",
- "choco": "obs-studio",
- "content": "OBS Studio",
- "description": "OBS Studio is a free and open-source software for video recording and live streaming. It supports real-time video/audio capturing and mixing, making it popular among content creators.",
- "link": "https://obsproject.com/",
- "winget": "OBSProject.OBSStudio"
- },
- "WPFInstallobsidian": {
- "category": "Document",
- "choco": "obsidian",
- "content": "Obsidian",
- "description": "Obsidian is a powerful note-taking and knowledge management application.",
- "link": "https://obsidian.md/",
- "winget": "Obsidian.Obsidian"
- },
- "WPFInstallokular": {
- "category": "Document",
- "choco": "okular",
- "content": "Okular",
- "description": "Okular is a versatile document viewer with advanced features.",
- "link": "https://okular.kde.org/",
- "winget": "KDE.Okular"
- },
- "WPFInstallonedrive": {
- "category": "Microsoft Tools",
- "choco": "onedrive",
- "content": "OneDrive",
- "description": "OneDrive is a cloud storage service provided by Microsoft, allowing users to store and share files securely across devices.",
- "link": "https://onedrive.live.com/",
- "winget": "Microsoft.OneDrive"
- },
- "WPFInstallonlyoffice": {
- "category": "Document",
- "choco": "onlyoffice",
- "content": "ONLYOffice Desktop",
- "description": "ONLYOffice Desktop is a comprehensive office suite for document editing and collaboration.",
- "link": "https://www.onlyoffice.com/desktop.aspx",
- "winget": "ONLYOFFICE.DesktopEditors"
- },
- "WPFInstallOPAutoClicker": {
- "category": "Utilities",
- "choco": "autoclicker",
- "content": "OPAutoClicker",
- "description": "A full-fledged autoclicker with two modes of autoclicking, at your dynamic cursor location or at a prespecified location.",
- "link": "https://www.opautoclicker.com",
- "winget": "OPAutoClicker.OPAutoClicker"
- },
- "WPFInstallopenhashtab": {
- "category": "Utilities",
- "choco": "openhashtab",
- "content": "OpenHashTab",
- "description": "OpenHashTab is a shell extension for conveniently calculating and checking file hashes from file properties.",
- "link": "https://github.com/namazso/OpenHashTab/",
- "winget": "namazso.OpenHashTab"
- },
- "WPFInstallopenoffice": {
- "category": "Document",
- "choco": "openoffice",
- "content": "Apache OpenOffice",
- "description": "Apache OpenOffice is an open-source office software suite for word processing, spreadsheets, presentations, and more.",
- "link": "https://www.openoffice.org/",
- "winget": "Apache.OpenOffice"
- },
- "WPFInstallopenrgb": {
- "category": "Utilities",
- "choco": "openrgb",
- "content": "OpenRGB",
- "description": "OpenRGB is an open-source RGB lighting control software designed to manage and control RGB lighting for various components and peripherals.",
- "link": "https://openrgb.org/",
- "winget": "CalcProgrammer1.OpenRGB"
- },
- "WPFInstallopenscad": {
- "category": "Multimedia Tools",
- "choco": "openscad",
- "content": "OpenSCAD",
- "description": "OpenSCAD is a free and open-source script-based 3D CAD modeler. It is especially useful for creating parametric designs for 3D printing.",
- "link": "https://www.openscad.org/",
- "winget": "OpenSCAD.OpenSCAD"
- },
- "WPFInstallopenshell": {
- "category": "Utilities",
- "choco": "open-shell",
- "content": "Open Shell (Start Menu)",
- "description": "Open Shell is a Windows Start Menu replacement with enhanced functionality and customization options.",
- "link": "https://github.com/Open-Shell/Open-Shell-Menu",
- "winget": "Open-Shell.Open-Shell-Menu"
- },
- "WPFInstallOpenVPN": {
- "category": "Pro Tools",
- "choco": "openvpn-connect",
- "content": "OpenVPN Connect",
- "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/",
- "winget": "OpenVPNTechnologies.OpenVPNConnect"
- },
- "WPFInstallOVirtualBox": {
- "category": "Utilities",
- "choco": "virtualbox",
- "content": "Oracle VirtualBox",
- "description": "Oracle VirtualBox is a powerful and free open-source virtualization tool for x86 and AMD64/Intel64 architectures.",
- "link": "https://www.virtualbox.org/",
- "winget": "Oracle.VirtualBox"
- },
- "WPFInstallownclouddesktop": {
- "category": "Utilities",
- "choco": "owncloud-client",
- "content": "ownCloud Desktop",
- "description": "ownCloud Desktop is the official desktop client for the ownCloud file synchronization and sharing platform.",
- "link": "https://owncloud.com/desktop-app/",
- "winget": "ownCloud.ownCloudDesktop"
- },
- "WPFInstallPaintdotnet": {
- "category": "Multimedia Tools",
- "choco": "paint.net",
- "content": "Paint.NET",
- "description": "Paint.NET is a free image and photo editing software for Windows. It features an intuitive user interface and supports a wide range of powerful editing tools.",
- "link": "https://www.getpaint.net/",
- "winget": "dotPDN.PaintDotNet"
- },
- "WPFInstallparsec": {
- "category": "Utilities",
- "choco": "parsec",
- "content": "Parsec",
- "description": "Parsec is a low-latency, high-quality remote desktop sharing application for collaborating and gaming across devices.",
- "link": "https://parsec.app/",
- "winget": "Parsec.Parsec"
- },
- "WPFInstallpdf24creator": {
- "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/",
- "winget": "geeksoftwareGmbH.PDF24Creator"
- },
- "WPFInstallpdfsam": {
- "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"
- },
- "WPFInstallpeazip": {
- "category": "Utilities",
- "choco": "peazip",
- "content": "PeaZip",
- "description": "PeaZip is a free, open-source file archiver utility that supports multiple archive formats and provides encryption features.",
- "link": "https://peazip.github.io/",
- "winget": "Giorgiotani.Peazip"
- },
- "WPFInstallpiimager": {
- "category": "Utilities",
- "choco": "rpi-imager",
- "content": "Raspberry Pi Imager",
- "description": "Raspberry Pi Imager is a utility for writing operating system images to SD cards for Raspberry Pi devices.",
- "link": "https://www.raspberrypi.com/software/",
- "winget": "RaspberryPiFoundation.RaspberryPiImager"
- },
- "WPFInstallplaynite": {
- "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"
- },
- "WPFInstallplex": {
- "category": "Multimedia Tools",
- "choco": "plexmediaserver",
- "content": "Plex Media Server",
- "description": "Plex Media Server is a media server software that allows you to organize and stream your media library. It supports various media formats and offers a wide range of features.",
- "link": "https://www.plex.tv/your-media/",
- "winget": "Plex.PlexMediaServer"
- },
- "WPFInstallplexdesktop": {
- "category": "Multimedia Tools",
- "choco": "plex",
- "content": "Plex Desktop",
- "description": "Plex Desktop for Windows is the front end for Plex Media Server.",
- "link": "https://www.plex.tv",
- "winget": "Plex.Plex"
- },
- "WPFInstallPortmaster": {
- "category": "Pro Tools",
- "choco": "portmaster",
- "content": "Portmaster",
- "description": "Portmaster is a free and open-source application that puts you back in charge over all your computers network connections.",
- "link": "https://safing.io/",
- "winget": "Safing.Portmaster"
- },
- "WPFInstallposh": {
- "category": "Development",
- "choco": "oh-my-posh",
- "content": "Oh My Posh (Prompt)",
- "description": "Oh My Posh is a cross-platform prompt theme engine for any shell.",
- "link": "https://ohmyposh.dev/",
- "winget": "JanDeDobbeleer.OhMyPosh"
- },
- "WPFInstallpostman": {
- "category": "Development",
- "choco": "postman",
- "content": "Postman",
- "description": "Postman is a collaboration platform for API development that simplifies the process of developing APIs.",
- "link": "https://www.postman.com/",
- "winget": "Postman.Postman"
- },
- "WPFInstallpowerautomate": {
- "category": "Microsoft Tools",
- "choco": "powerautomatedesktop",
- "content": "Power Automate",
- "description": "Using Power Automate Desktop you can automate tasks on the desktop as well as the Web.",
- "link": "https://www.microsoft.com/en-us/power-platform/products/power-automate",
- "winget": "Microsoft.PowerAutomateDesktop"
- },
- "WPFInstallpowerbi": {
- "category": "Microsoft Tools",
- "choco": "powerbi",
- "content": "Power BI",
- "description": "Create stunning reports and visualizations with Power BI Desktop. It puts visual analytics at your fingertips with intuitive report authoring. Drag-and-drop to place content exactly where you want it on the flexible and fluid canvas. Quickly discover patterns as you explore a single unified view of linked, interactive visualizations.",
- "link": "https://www.microsoft.com/en-us/power-platform/products/power-bi/",
- "winget": "Microsoft.PowerBI"
- },
- "WPFInstallpowershell": {
- "category": "Microsoft Tools",
- "choco": "powershell-core",
- "content": "PowerShell",
- "description": "PowerShell is a task automation framework and scripting language designed for system administrators, offering powerful command-line capabilities.",
- "link": "https://github.com/PowerShell/PowerShell",
- "winget": "Microsoft.PowerShell"
- },
- "WPFInstallpowertoys": {
- "category": "Microsoft Tools",
- "choco": "powertoys",
- "content": "PowerToys",
- "description": "PowerToys is a set of utilities for power users to enhance productivity, featuring tools like FancyZones, PowerRename, and more.",
- "link": "https://github.com/microsoft/PowerToys",
- "winget": "Microsoft.PowerToys"
- },
- "WPFInstallprismlauncher": {
- "category": "Games",
- "choco": "prismlauncher",
- "content": "Prism Launcher",
- "description": "Prism Launcher is a game launcher and manager designed to provide a clean and intuitive interface for organizing and launching your games.",
- "link": "https://prismlauncher.org/",
- "winget": "PrismLauncher.PrismLauncher"
- },
- "WPFInstallprocesslasso": {
- "category": "Utilities",
- "choco": "plasso",
- "content": "Process Lasso",
- "description": "Process Lasso is a system optimization and automation tool that improves system responsiveness and stability by adjusting process priorities and CPU affinities.",
- "link": "https://bitsum.com/",
- "winget": "BitSum.ProcessLasso"
- },
- "WPFInstallspotify": {
- "category": "Multimedia Tools",
- "choco": "spotify",
- "content": "Spotify",
- "description": "Spotify is a digital music service that gives you access to millions of songs, podcasts, and videos from artists all over the world.",
- "link": "https://www.spotify.com/",
- "winget": "Spotify.Spotify"
- },
- "WPFInstallprocessmonitor": {
- "category": "Microsoft Tools",
- "choco": "procexp",
- "content": "SysInternals Process Monitor",
- "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",
- "winget": "Microsoft.Sysinternals.ProcessMonitor"
- },
- "WPFInstallorcaslicer": {
- "category": "Utilities",
- "choco": "orcaslicer",
- "content": "OrcaSlicer",
- "description": "G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.)",
- "link": "https://github.com/SoftFever/OrcaSlicer",
- "winget": "SoftFever.OrcaSlicer"
- },
- "WPFInstallprucaslicer": {
- "category": "Utilities",
- "choco": "prusaslicer",
- "content": "PrusaSlicer",
- "description": "PrusaSlicer is a powerful and easy-to-use slicing software for 3D printing with Prusa 3D printers.",
- "link": "https://www.prusa3d.com/prusaslicer/",
- "winget": "Prusa3d.PrusaSlicer"
- },
- "WPFInstallpsremoteplay": {
- "category": "Games",
- "choco": "ps-remote-play",
- "content": "PS Remote Play",
- "description": "PS Remote Play is a free application that allows you to stream games from your PlayStation console to a PC or mobile device.",
- "link": "https://remoteplay.dl.playstation.net/remoteplay/lang/gb/",
- "winget": "PlayStation.PSRemotePlay"
- },
- "WPFInstallputty": {
- "category": "Pro Tools",
- "choco": "putty",
- "content": "PuTTY",
- "description": "PuTTY is a free and open-source terminal emulator, serial console, and network file transfer application. It supports various network protocols such as SSH, Telnet, and SCP.",
- "link": "https://www.chiark.greenend.org.uk/~sgtatham/putty/",
- "winget": "PuTTY.PuTTY"
- },
- "WPFInstallpython3": {
- "category": "Development",
- "choco": "python",
- "content": "Python3",
- "description": "Python is a versatile programming language used for web development, data analysis, artificial intelligence, and more.",
- "link": "https://www.python.org/",
- "winget": "Python.Python.3.12"
- },
- "WPFInstallqbittorrent": {
- "category": "Utilities",
- "choco": "qbittorrent",
- "content": "qBittorrent",
- "description": "qBittorrent is a free and open-source BitTorrent client that aims to provide a feature-rich and lightweight alternative to other torrent clients.",
- "link": "https://www.qbittorrent.org/",
- "winget": "qBittorrent.qBittorrent"
- },
- "WPFInstalltransmission": {
- "category": "Utilities",
- "choco": "transmission",
- "content": "Transmission",
- "description": "Transmission is a cross-platform BitTorrent client that is open source, easy, powerful, and lean.",
- "link": "https://transmissionbt.com/",
- "winget": "Transmission.Transmission"
- },
- "WPFInstalltixati": {
- "category": "Utilities",
- "choco": "tixati.portable",
- "content": "Tixati",
- "description": "Tixati is a cross-platform BitTorrent client written in C++ that has been designed to be light on system resources.",
- "link": "https://www.tixati.com/",
- "winget": "Tixati.Tixati.Portable"
- },
- "WPFInstallqtox": {
- "category": "Communications",
- "choco": "qtox",
- "content": "QTox",
- "description": "QTox is a free and open-source messaging app that prioritizes user privacy and security in its design.",
- "link": "https://qtox.github.io/",
- "winget": "Tox.qTox"
- },
- "WPFInstallquicklook": {
- "category": "Utilities",
- "choco": "quicklook",
- "content": "Quicklook",
- "description": "Bring macOS \u0026#8220;Quick Look\u0026#8221; feature to Windows",
- "link": "https://github.com/QL-Win/QuickLook",
- "winget": "QL-Win.QuickLook"
- },
- "WPFInstallrainmeter": {
- "category": "Utilities",
- "choco": "na",
- "content": "Rainmeter",
- "description": "Rainmeter is a desktop customization tool that allows you to create and share customizable skins for your desktop.",
- "link": "https://www.rainmeter.net/",
- "winget": "Rainmeter.Rainmeter"
- },
- "WPFInstallrevo": {
- "category": "Utilities",
- "choco": "revo-uninstaller",
- "content": "Revo Uninstaller",
- "description": "Revo Uninstaller is an advanced uninstaller tool that helps you remove unwanted software and clean up your system.",
- "link": "https://www.revouninstaller.com/",
- "winget": "RevoUninstaller.RevoUninstaller"
- },
- "WPFInstallWiseProgramUninstaller": {
- "category": "Utilities",
- "choco": "na",
- "content": "Wise Program Uninstaller (WiseCleaner)",
- "description": "Wise Program Uninstaller is the perfect solution for uninstalling Windows programs, allowing you to uninstall applications quickly and completely using its simple and user-friendly interface.",
- "link": "https://www.wisecleaner.com/wise-program-uninstaller.html",
- "winget": "WiseCleaner.WiseProgramUninstaller"
- },
- "WPFInstallrevolt": {
- "category": "Communications",
- "choco": "na",
- "content": "Revolt",
- "description": "Find your community, connect with the world. Revolt is one of the best ways to stay connected with your friends and community without sacrificing any usability.",
- "link": "https://revolt.chat/",
- "winget": "Revolt.RevoltDesktop"
- },
- "WPFInstallripgrep": {
- "category": "Utilities",
- "choco": "ripgrep",
- "content": "Ripgrep",
- "description": "Fast and powerful commandline search tool",
- "link": "https://github.com/BurntSushi/ripgrep/",
- "winget": "BurntSushi.ripgrep.MSVC"
- },
- "WPFInstallrufus": {
- "category": "Utilities",
- "choco": "rufus",
- "content": "Rufus Imager",
- "description": "Rufus is a utility that helps format and create bootable USB drives, such as USB keys or pen drives.",
- "link": "https://rufus.ie/",
- "winget": "Rufus.Rufus"
- },
- "WPFInstallrustdesk": {
- "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"
- },
- "WPFInstallrustlang": {
- "category": "Development",
- "choco": "rust",
- "content": "Rust",
- "description": "Rust is a programming language designed for safety and performance, particularly focused on systems programming.",
- "link": "https://www.rust-lang.org/",
- "winget": "Rustlang.Rust.MSVC"
- },
- "WPFInstallsagethumbs": {
- "category": "Utilities",
- "choco": "sagethumbs",
- "content": "SageThumbs",
- "description": "Provides support for thumbnails in Explorer with more formats.",
- "link": "https://sagethumbs.en.lo4d.com/windows",
- "winget": "CherubicSoftware.SageThumbs"
- },
- "WPFInstallsamsungmagician": {
- "category": "Utilities",
- "choco": "samsung-magician",
- "content": "Samsung Magician",
- "description": "Samsung Magician is a utility for managing and optimizing Samsung SSDs.",
- "link": "https://semiconductor.samsung.com/consumer-storage/magician/",
- "winget": "Samsung.SamsungMagician"
- },
- "WPFInstallsandboxie": {
- "category": "Utilities",
- "choco": "sandboxie",
- "content": "Sandboxie Plus",
- "description": "Sandboxie Plus is a sandbox-based isolation program that provides enhanced security by running applications in an isolated environment.",
- "link": "https://github.com/sandboxie-plus/Sandboxie",
- "winget": "Sandboxie.Plus"
- },
- "WPFInstallsdio": {
- "category": "Utilities",
- "choco": "sdio",
- "content": "Snappy Driver Installer Origin",
- "description": "Snappy Driver Installer Origin is a free and open-source driver updater with a vast driver database for Windows.",
- "link": "https://sourceforge.net/projects/snappy-driver-installer-origin",
- "winget": "GlennDelahoy.SnappyDriverInstallerOrigin"
- },
- "WPFInstallsession": {
- "category": "Communications",
- "choco": "session",
- "content": "Session",
- "description": "Session is a private and secure messaging app built on a decentralized network for user privacy and data protection.",
- "link": "https://getsession.org/",
- "winget": "Oxen.Session"
- },
- "WPFInstallsharex": {
- "category": "Multimedia Tools",
- "choco": "sharex",
- "content": "ShareX (Screenshots)",
- "description": "ShareX is a free and open-source screen capture and file sharing tool. It supports various capture methods and offers advanced features for editing and sharing screenshots.",
- "link": "https://getsharex.com/",
- "winget": "ShareX.ShareX"
- },
- "WPFInstallnilesoftShel": {
- "category": "Utilities",
- "choco": "nilesoft-shell",
- "content": "Shell (Expanded Context Menu)",
- "description": "Shell is an expanded context menu tool that adds extra functionality and customization options to the Windows context menu.",
- "link": "https://nilesoft.org/",
- "winget": "Nilesoft.Shell"
- },
- "WPFInstallsidequest": {
- "category": "Games",
- "choco": "sidequest",
- "content": "SideQuestVR",
- "description": "SideQuestVR is a community-driven platform that enables users to discover, install, and manage virtual reality content on Oculus Quest devices.",
- "link": "https://sidequestvr.com/",
- "winget": "SideQuestVR.SideQuest"
- },
- "WPFInstallsignal": {
- "category": "Communications",
- "choco": "signal",
- "content": "Signal",
- "description": "Signal is a privacy-focused messaging app that offers end-to-end encryption for secure and private communication.",
- "link": "https://signal.org/",
- "winget": "OpenWhisperSystems.Signal"
- },
- "WPFInstallsignalrgb": {
- "category": "Utilities",
- "choco": "na",
- "content": "SignalRGB",
- "description": "SignalRGB lets you control and sync your favorite RGB devices with one free application.",
- "link": "https://www.signalrgb.com/",
- "winget": "WhirlwindFX.SignalRgb"
- },
- "WPFInstallsimplenote": {
- "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"
- },
- "WPFInstallsimplewall": {
- "category": "Pro Tools",
- "choco": "simplewall",
- "content": "Simplewall",
- "description": "Simplewall is a free and open-source firewall application for Windows. It allows users to control and manage the inbound and outbound network traffic of applications.",
- "link": "https://github.com/henrypp/simplewall",
- "winget": "Henry++.simplewall"
- },
- "WPFInstallskype": {
- "category": "Communications",
- "choco": "skype",
- "content": "Skype",
- "description": "Skype is a widely used communication platform offering video calls, voice calls, and instant messaging services.",
- "link": "https://www.skype.com/",
- "winget": "Microsoft.Skype"
- },
- "WPFInstallslack": {
- "category": "Communications",
- "choco": "slack",
- "content": "Slack",
- "description": "Slack is a collaboration hub that connects teams and facilitates communication through channels, messaging, and file sharing.",
- "link": "https://slack.com/",
- "winget": "SlackTechnologies.Slack"
- },
- "WPFInstallspacedrive": {
- "category": "Utilities",
- "choco": "na",
- "content": "Spacedrive File Manager",
- "description": "Spacedrive is a file manager that offers cloud storage integration and file synchronization across devices.",
- "link": "https://www.spacedrive.com/",
- "winget": "spacedrive.Spacedrive"
- },
- "WPFInstallspacesniffer": {
- "category": "Utilities",
- "choco": "spacesniffer",
- "content": "SpaceSniffer",
- "description": "A tool application that lets you understand how folders and files are structured on your disks",
- "link": "http://www.uderzo.it/main_products/space_sniffer/",
- "winget": "UderzoSoftware.SpaceSniffer"
- },
- "WPFInstallspotube": {
- "category": "Multimedia Tools",
- "choco": "spotube",
- "content": "Spotube",
- "description": "Open source Spotify client that doesn\u0026#39;t require Premium nor uses Electron! Available for both desktop \u0026#38; mobile! ",
- "link": "https://github.com/KRTirtho/spotube",
- "winget": "KRTirtho.Spotube"
- },
- "WPFInstallstarship": {
- "category": "Development",
- "choco": "starship",
- "content": "Starship (Shell Prompt)",
- "description": "Starship is a minimal, fast, and customizable prompt for any shell.",
- "link": "https://starship.rs/",
- "winget": "starship"
- },
- "WPFInstallsteam": {
- "category": "Games",
- "choco": "steam-client",
- "content": "Steam",
- "description": "Steam is a digital distribution platform for purchasing and playing video games, offering multiplayer gaming, video streaming, and more.",
- "link": "https://store.steampowered.com/about/",
- "winget": "Valve.Steam"
- },
- "WPFInstallstrawberry": {
- "category": "Multimedia Tools",
- "choco": "strawberrymusicplayer",
- "content": "Strawberry (Music Player)",
- "description": "Strawberry is an open-source music player that focuses on music collection management and audio quality. It supports various audio formats and features a clean user interface.",
- "link": "https://www.strawberrymusicplayer.org/",
- "winget": "StrawberryMusicPlayer.Strawberry"
- },
- "WPFInstallstremio": {
- "winget": "Stremio.Stremio",
- "choco": "stremio",
- "category": "Multimedia Tools",
- "content": "Stremio",
- "link": "https://www.stremio.com/",
- "description": "Stremio is a media center application that allows users to organize and stream their favorite movies, TV shows, and video content."
- },
- "WPFInstallsublimemerge": {
- "category": "Development",
- "choco": "sublimemerge",
- "content": "Sublime Merge",
- "description": "Sublime Merge is a Git client with advanced features and a beautiful interface.",
- "link": "https://www.sublimemerge.com/",
- "winget": "SublimeHQ.SublimeMerge"
- },
- "WPFInstallsublimetext": {
- "category": "Development",
- "choco": "sublimetext4",
- "content": "Sublime Text",
- "description": "Sublime Text is a sophisticated text editor for code, markup, and prose.",
- "link": "https://www.sublimetext.com/",
- "winget": "SublimeHQ.SublimeText.4"
- },
- "WPFInstallsumatra": {
- "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"
- },
- "WPFInstallpdfgear": {
- "category": "Document",
- "choco": "na",
- "content": "PDFgear",
- "description": "PDFgear is a piece of full-featured PDF management software for Windows, Mac, and mobile, and it\u0026#39;s completely free to use.",
- "link": "https://www.pdfgear.com/",
- "winget": "PDFgear.PDFgear"
- },
- "WPFInstallsunshine": {
- "category": "Games",
- "choco": "sunshine",
- "content": "Sunshine/GameStream Server",
- "description": "Sunshine is a GameStream server that allows you to remotely play PC games on Android devices, offering low-latency streaming.",
- "link": "https://github.com/LizardByte/Sunshine",
- "winget": "LizardByte.Sunshine"
- },
- "WPFInstallsuperf4": {
- "category": "Utilities",
- "choco": "superf4",
- "content": "SuperF4",
- "description": "SuperF4 is a utility that allows you to terminate programs instantly by pressing a customizable hotkey.",
- "link": "https://stefansundin.github.io/superf4/",
- "winget": "StefanSundin.Superf4"
- },
- "WPFInstallswift": {
- "category": "Development",
- "choco": "na",
- "content": "Swift toolchain",
- "description": "Swift is a general-purpose programming language that\u0026#39;s approachable for newcomers and powerful for experts.",
- "link": "https://www.swift.org/",
- "winget": "Swift.Toolchain"
- },
- "WPFInstallsynctrayzor": {
- "category": "Utilities",
- "choco": "synctrayzor",
- "content": "SyncTrayzor",
- "description": "Windows tray utility / filesystem watcher / launcher for Syncthing",
- "link": "https://github.com/canton7/SyncTrayzor/",
- "winget": "SyncTrayzor.SyncTrayzor"
- },
- "WPFInstallsqlmanagementstudio": {
- "category": "Microsoft Tools",
- "choco": "sql-server-management-studio",
- "content": "Microsoft SQL Server Management Studio",
- "description": "SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure, from SQL Server to Azure SQL Database. SSMS provides tools to configure, monitor, and administer instances of SQL Server and databases.",
- "link": "https://learn.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver16",
- "winget": "Microsoft.SQLServerManagementStudio"
- },
- "WPFInstalltabby": {
- "category": "Utilities",
- "choco": "tabby",
- "content": "Tabby.sh",
- "description": "Tabby is a highly configurable terminal emulator, SSH and serial client for Windows, macOS and Linux",
- "link": "https://tabby.sh/",
- "winget": "Eugeny.Tabby"
- },
- "WPFInstalltailscale": {
- "category": "Utilities",
- "choco": "tailscale",
- "content": "Tailscale",
- "description": "Tailscale is a secure and easy-to-use VPN solution for connecting your devices and networks.",
- "link": "https://tailscale.com/",
- "winget": "tailscale.tailscale"
- },
- "WPFInstallTcNoAccSwitcher": {
- "category": "Games",
- "choco": "tcno-acc-switcher",
- "content": "TCNO Account Switcher",
- "description": "A Super-fast account switcher for Steam, Battle.net, Epic Games, Origin, Riot, Ubisoft and many others!",
- "link": "https://github.com/TCNOco/TcNo-Acc-Switcher",
- "winget": "TechNobo.TcNoAccountSwitcher"
- },
- "WPFInstalltcpview": {
- "category": "Microsoft Tools",
- "choco": "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.",
- "link": "https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview",
- "winget": "Microsoft.Sysinternals.TCPView"
- },
- "WPFInstallteams": {
- "category": "Communications",
- "choco": "microsoft-teams",
- "content": "Teams",
- "description": "Microsoft Teams is a collaboration platform that integrates with Office 365 and offers chat, video conferencing, file sharing, and more.",
- "link": "https://www.microsoft.com/en-us/microsoft-teams/group-chat-software",
- "winget": "Microsoft.Teams"
- },
- "WPFInstallteamviewer": {
- "category": "Utilities",
- "choco": "teamviewer9",
- "content": "TeamViewer",
- "description": "TeamViewer is a popular remote access and support software that allows you to connect to and control remote devices.",
- "link": "https://www.teamviewer.com/",
- "winget": "TeamViewer.TeamViewer"
- },
- "WPFInstalltelegram": {
- "category": "Communications",
- "choco": "telegram",
- "content": "Telegram",
- "description": "Telegram is a cloud-based instant messaging app known for its security features, speed, and simplicity.",
- "link": "https://telegram.org/",
- "winget": "Telegram.TelegramDesktop"
- },
- "WPFInstallunigram": {
- "category": "Communications",
- "choco": "na",
- "content": "Unigram",
- "description": "Unigram - Telegram for Windows",
- "link": "https://unigramdev.github.io/",
- "winget": "Telegram.Unigram"
- },
- "WPFInstallterminal": {
- "category": "Microsoft Tools",
- "choco": "microsoft-windows-terminal",
- "content": "Windows Terminal",
- "description": "Windows Terminal is a modern, fast, and efficient terminal application for command-line users, supporting multiple tabs, panes, and more.",
- "link": "https://aka.ms/terminal",
- "winget": "Microsoft.WindowsTerminal"
- },
- "WPFInstallThonny": {
- "category": "Development",
- "choco": "thonny",
- "content": "Thonny Python IDE",
- "description": "Python IDE for beginners.",
- "link": "https://github.com/thonny/thonny",
- "winget": "AivarAnnamaa.Thonny"
- },
- "WPFInstallMuEditor": {
- "category": "Development",
- "choco": "na",
- "content": "Code With Mu (Mu Editor)",
- "description": "Mu is a Python code editor for beginner programmers",
- "link": "https://codewith.mu/",
- "winget": "Mu.Mu"
- },
- "WPFInstallthorium": {
- "category": "Browsers",
- "choco": "na",
- "content": "Thorium Browser AVX2",
- "description": "Browser built for speed over vanilla chromium. It is built with AVX2 optimizations and is the fastest browser on the market.",
- "link": "http://thorium.rocks/",
- "winget": "Alex313031.Thorium.AVX2"
- },
- "WPFInstallthunderbird": {
- "category": "Communications",
- "choco": "thunderbird",
- "content": "Thunderbird",
- "description": "Mozilla Thunderbird is a free and open-source email client, news client, and chat client with advanced features.",
- "link": "https://www.thunderbird.net/",
- "winget": "Mozilla.Thunderbird"
- },
- "WPFInstallbetterbird": {
- "category": "Communications",
- "choco": "betterbird",
- "content": "Betterbird",
- "description": "Betterbird is a fork of Mozilla Thunderbird with additional features and bugfixes.",
- "link": "https://www.betterbird.eu/",
- "winget": "Betterbird.Betterbird"
- },
- "WPFInstalltidal": {
- "category": "Multimedia Tools",
- "choco": "na",
- "content": "Tidal",
- "description": "Tidal is a music streaming service known for its high-fidelity audio quality and exclusive content. It offers a vast library of songs and curated playlists.",
- "link": "https://tidal.com/",
- "winget": "9NNCB5BS59PH"
- },
- "WPFInstalltor": {
- "category": "Browsers",
- "choco": "tor-browser",
- "content": "Tor Browser",
- "description": "Tor Browser is designed for anonymous web browsing, utilizing the Tor network to protect user privacy and security.",
- "link": "https://www.torproject.org/",
- "winget": "TorProject.TorBrowser"
- },
- "WPFInstalltotalcommander": {
- "category": "Utilities",
- "choco": "TotalCommander",
- "content": "Total Commander",
- "description": "Total Commander is a file manager for Windows that provides a powerful and intuitive interface for file management.",
- "link": "https://www.ghisler.com/",
- "winget": "Ghisler.TotalCommander"
- },
- "WPFInstalltreesize": {
- "category": "Utilities",
- "choco": "treesizefree",
- "content": "TreeSize Free",
- "description": "TreeSize Free is a disk space manager that helps you analyze and visualize the space usage on your drives.",
- "link": "https://www.jam-software.com/treesize_free/",
- "winget": "JAMSoftware.TreeSize.Free"
- },
- "WPFInstallttaskbar": {
- "category": "Utilities",
- "choco": "translucenttb",
- "content": "Translucent Taskbar",
- "description": "Translucent Taskbar is a tool that allows you to customize the transparency of the Windows taskbar.",
- "link": "https://github.com/TranslucentTB/TranslucentTB",
- "winget": "9PF4KZ2VN4W9"
- },
- "WPFInstalltwinkletray": {
- "category": "Utilities",
- "choco": "twinkle-tray",
- "content": "Twinkle Tray",
- "description": "Twinkle Tray lets you easily manage the brightness levels of multiple monitors.",
- "link": "https://twinkletray.com/",
- "winget": "xanderfrangos.twinkletray"
- },
- "WPFInstallubisoft": {
- "category": "Games",
- "choco": "ubisoft-connect",
- "content": "Ubisoft Connect",
- "description": "Ubisoft Connect is Ubisoft\u0026#39;s digital distribution and online gaming service, providing access to Ubisoft\u0026#39;s games and services.",
- "link": "https://ubisoftconnect.com/",
- "winget": "Ubisoft.Connect"
- },
- "WPFInstallungoogled": {
- "category": "Browsers",
- "choco": "ungoogled-chromium",
- "content": "Ungoogled",
- "description": "Ungoogled Chromium is a version of Chromium without Google\u0026#39;s integration for enhanced privacy and control.",
- "link": "https://github.com/Eloston/ungoogled-chromium",
- "winget": "eloston.ungoogled-chromium"
- },
- "WPFInstallunity": {
- "category": "Development",
- "choco": "unityhub",
- "content": "Unity Game Engine",
- "description": "Unity is a powerful game development platform for creating 2D, 3D, augmented reality, and virtual reality games.",
- "link": "https://unity.com/",
- "winget": "Unity.UnityHub"
- },
- "WPFInstallvagrant": {
- "category": "Development",
- "choco": "vagrant",
- "content": "Vagrant",
- "description": "Vagrant is an open-source tool for building and managing virtualized development environments.",
- "link": "https://www.vagrantup.com/",
- "winget": "Hashicorp.Vagrant"
- },
- "WPFInstallvc2015_32": {
- "category": "Microsoft Tools",
- "choco": "na",
- "content": "Visual C++ 2015-2022 32-bit",
- "description": "Visual C++ 2015-2022 32-bit redistributable package installs runtime components of Visual C++ libraries required to run 32-bit applications.",
- "link": "https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads",
- "winget": "Microsoft.VCRedist.2015+.x86"
- },
- "WPFInstallvc2015_64": {
- "category": "Microsoft Tools",
- "choco": "na",
- "content": "Visual C++ 2015-2022 64-bit",
- "description": "Visual C++ 2015-2022 64-bit redistributable package installs runtime components of Visual C++ libraries required to run 64-bit applications.",
- "link": "https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads",
- "winget": "Microsoft.VCRedist.2015+.x64"
- },
- "WPFInstallventoy": {
- "category": "Pro Tools",
- "choco": "ventoy",
- "content": "Ventoy",
- "description": "Ventoy is an open-source tool for creating bootable USB drives. It supports multiple ISO files on a single USB drive, making it a versatile solution for installing operating systems.",
- "link": "https://www.ventoy.net/",
- "winget": "Ventoy.Ventoy"
- },
- "WPFInstallvesktop": {
- "category": "Communications",
- "choco": "na",
- "content": "Vesktop",
- "description": "A cross platform electron-based desktop app aiming to give you a snappier Discord experience with Vencord pre-installed.",
- "link": "https://github.com/Vencord/Vesktop",
- "winget": "Vencord.Vesktop"
- },
- "WPFInstallviber": {
- "category": "Communications",
- "choco": "viber",
- "content": "Viber",
- "description": "Viber is a free messaging and calling app with features like group chats, video calls, and more.",
- "link": "https://www.viber.com/",
- "winget": "Viber.Viber"
- },
- "WPFInstallvideomass": {
- "category": "Multimedia Tools",
- "choco": "na",
- "content": "Videomass",
- "description": "Videomass by GianlucaPernigotto is a cross-platform GUI for FFmpeg, streamlining multimedia file processing with batch conversions and user-friendly features.",
- "link": "https://jeanslack.github.io/Videomass/",
- "winget": "GianlucaPernigotto.Videomass"
- },
- "WPFInstallvisualstudio": {
- "category": "Development",
- "choco": "visualstudio2022community",
- "content": "Visual Studio 2022",
- "description": "Visual Studio 2022 is an integrated development environment (IDE) for building, debugging, and deploying applications.",
- "link": "https://visualstudio.microsoft.com/",
- "winget": "Microsoft.VisualStudio.2022.Community"
- },
- "WPFInstallvivaldi": {
- "category": "Browsers",
- "choco": "vivaldi",
- "content": "Vivaldi",
- "description": "Vivaldi is a highly customizable web browser with a focus on user personalization and productivity features.",
- "link": "https://vivaldi.com/",
- "winget": "Vivaldi.Vivaldi"
- },
- "WPFInstallvlc": {
- "category": "Multimedia Tools",
- "choco": "vlc",
- "content": "VLC (Video Player)",
- "description": "VLC Media Player is a free and open-source multimedia player that supports a wide range of audio and video formats. It is known for its versatility and cross-platform compatibility.",
- "link": "https://www.videolan.org/vlc/",
- "winget": "VideoLAN.VLC"
- },
- "WPFInstallvoicemeeter": {
- "category": "Multimedia Tools",
- "choco": "voicemeeter",
- "content": "Voicemeeter (Audio)",
- "description": "Voicemeeter is a virtual audio mixer that allows you to manage and enhance audio streams on your computer. It is commonly used for audio recording and streaming purposes.",
- "link": "https://voicemeeter.com/",
- "winget": "VB-Audio.Voicemeeter"
- },
- "WPFInstallVoicemeeterPotato": {
- "category": "Multimedia Tools",
- "choco": "voicemeeter-potato",
- "content": "Voicemeeter Potato",
- "description": "Voicemeeter Potato is the ultimate version of the Voicemeeter Audio Mixer Application endowed with Virtual Audio Device to mix and manage any audio sources from or to any audio devices or applications.",
- "link": "https://voicemeeter.com/",
- "winget": "VB-Audio.Voicemeeter.Potato"
- },
- "WPFInstallvrdesktopstreamer": {
- "category": "Games",
- "choco": "na",
- "content": "Virtual Desktop Streamer",
- "description": "Virtual Desktop Streamer is a tool that allows you to stream your desktop screen to VR devices.",
- "link": "https://www.vrdesktop.net/",
- "winget": "VirtualDesktop.Streamer"
- },
- "WPFInstallvscode": {
- "category": "Development",
- "choco": "vscode",
- "content": "VS Code",
- "description": "Visual Studio Code is a free, open-source code editor with support for multiple programming languages.",
- "link": "https://code.visualstudio.com/",
- "winget": "Microsoft.VisualStudioCode"
- },
- "WPFInstallvscodium": {
- "category": "Development",
- "choco": "vscodium",
- "content": "VS Codium",
- "description": "VSCodium is a community-driven, freely-licensed binary distribution of Microsoft\u0026#39;s VS Code.",
- "link": "https://vscodium.com/",
- "winget": "VSCodium.VSCodium"
- },
- "WPFInstallwaterfox": {
- "category": "Browsers",
- "choco": "waterfox",
- "content": "Waterfox",
- "description": "Waterfox is a fast, privacy-focused web browser based on Firefox, designed to preserve user choice and privacy.",
- "link": "https://www.waterfox.net/",
- "winget": "Waterfox.Waterfox"
- },
- "WPFInstallwazuh": {
- "category": "Utilities",
- "choco": "wazuh-agent",
- "content": "Wazuh.",
- "description": "Wazuh is an open-source security monitoring platform that offers intrusion detection, compliance checks, and log analysis.",
- "link": "https://wazuh.com/",
- "winget": "Wazuh.WazuhAgent"
- },
- "WPFInstallwezterm": {
- "category": "Development",
- "choco": "wezterm",
- "content": "Wezterm",
- "description": "WezTerm is a powerful cross-platform terminal emulator and multiplexer",
- "link": "https://wezfurlong.org/wezterm/index.html",
- "winget": "wez.wezterm"
- },
- "WPFInstallwindowspchealth": {
- "category": "Utilities",
- "choco": "na",
- "content": "Windows PC Health Check",
- "description": "Windows PC Health Check is a tool that helps you check if your PC meets the system requirements for Windows 11.",
- "link": "https://support.microsoft.com/en-us/windows/how-to-use-the-pc-health-check-app-9c8abd9b-03ba-4e67-81ef-36f37caa7844",
- "winget": "Microsoft.WindowsPCHealthCheck"
- },
- "WPFInstallWindowGrid": {
- "category": "Utilities",
- "choco": "windowgrid",
- "content": "WindowGrid",
- "description": "WindowGrid is a modern window management program for Windows that allows the user to quickly and easily layout their windows on a dynamic grid using just the mouse.",
- "link": "http://windowgrid.net/",
- "winget": "na"
- },
- "WPFInstallwingetui": {
- "category": "Utilities",
- "choco": "wingetui",
- "content": "WingetUI",
- "description": "WingetUI is a graphical user interface for Microsoft\u0026#39;s Windows Package Manager (winget).",
- "link": "https://www.marticliment.com/wingetui/",
- "winget": "SomePythonThings.WingetUIStore"
- },
- "WPFInstallwinmerge": {
- "category": "Document",
- "choco": "winmerge",
- "content": "WinMerge",
- "description": "WinMerge is a visual text file and directory comparison tool for Windows.",
- "link": "https://winmerge.org/",
- "winget": "WinMerge.WinMerge"
- },
- "WPFInstallwinpaletter": {
- "category": "Utilities",
- "choco": "WinPaletter",
- "content": "WinPaletter",
- "description": "WinPaletter is a tool for adjusting the color palette of Windows 10, providing customization options for window colors.",
- "link": "https://github.com/Abdelrhman-AK/WinPaletter",
- "winget": "Abdelrhman-AK.WinPaletter"
- },
- "WPFInstallwinrar": {
- "category": "Utilities",
- "choco": "winrar",
- "content": "WinRAR",
- "description": "WinRAR is a powerful archive manager that allows you to create, manage, and extract compressed files.",
- "link": "https://www.win-rar.com/",
- "winget": "RARLab.WinRAR"
- },
- "WPFInstallwinscp": {
- "category": "Pro Tools",
- "choco": "winscp",
- "content": "WinSCP",
- "description": "WinSCP is a popular open-source SFTP, FTP, and SCP client for Windows. It allows secure file transfers between a local and a remote computer.",
- "link": "https://winscp.net/",
- "winget": "WinSCP.WinSCP"
- },
- "WPFInstallwireguard": {
- "category": "Pro Tools",
- "choco": "wireguard",
- "content": "WireGuard",
- "description": "WireGuard is a fast and modern VPN (Virtual Private Network) protocol. It aims to be simpler and more efficient than other VPN protocols, providing secure and reliable connections.",
- "link": "https://www.wireguard.com/",
- "winget": "WireGuard.WireGuard"
- },
- "WPFInstallwireshark": {
- "category": "Pro Tools",
- "choco": "wireshark",
- "content": "Wireshark",
- "description": "Wireshark is a widely-used open-source network protocol analyzer. It allows users to capture and analyze network traffic in real-time, providing detailed insights into network activities.",
- "link": "https://www.wireshark.org/",
- "winget": "WiresharkFoundation.Wireshark"
- },
- "WPFInstallwisetoys": {
- "category": "Utilities",
- "choco": "na",
- "content": "WiseToys",
- "description": "WiseToys is a set of utilities and tools designed to enhance and optimize your Windows experience.",
- "link": "https://toys.wisecleaner.com/",
- "winget": "WiseCleaner.WiseToys"
- },
- "WPFInstallTeraCopy": {
- "category": "Utilities",
- "choco": "TeraCopy",
- "content": "TeraCopy",
- "description": "Copy your files faster and more securely",
- "link": "https://codesector.com/teracopy",
- "winget": "CodeSector.TeraCopy"
- },
- "WPFInstallwizfile": {
- "category": "Utilities",
- "choco": "na",
- "content": "WizFile",
- "description": "Find files by name on your hard drives almost instantly.",
- "link": "https://antibody-software.com/wizfile/",
- "winget": "AntibodySoftware.WizFile"
- },
- "WPFInstallwiztree": {
- "category": "Utilities",
- "choco": "wiztree",
- "content": "WizTree",
- "description": "WizTree is a fast disk space analyzer that helps you quickly find the files and folders consuming the most space on your hard drive.",
- "link": "https://wiztreefree.com/",
- "winget": "AntibodySoftware.WizTree"
- },
- "WPFInstallxdm": {
- "category": "Utilities",
- "choco": "xdm",
- "content": "Xtreme Download Manager",
- "description": "Xtreme Download Manager is an advanced download manager with support for various protocols and browsers.*Browser integration deprecated by google store. No official release.*",
- "link": "https://xtremedownloadmanager.com/",
- "winget": "subhra74.XtremeDownloadManager"
- },
- "WPFInstallxeheditor": {
- "category": "Utilities",
- "choco": "HxD",
- "content": "HxD Hex Editor",
- "description": "HxD is a free hex editor that allows you to edit, view, search, and analyze binary files.",
- "link": "https://mh-nexus.de/en/hxd/",
- "winget": "MHNexus.HxD"
- },
- "WPFInstallxemu": {
- "category": "Games",
- "choco": "na",
- "content": "XEMU",
- "description": "XEMU is an open-source Xbox emulator that allows you to play Xbox games on your PC, aiming for accuracy and compatibility.",
- "link": "https://xemu.app/",
- "winget": "xemu-project.xemu"
- },
- "WPFInstallxnview": {
- "category": "Utilities",
- "choco": "xnview",
- "content": "XnView classic",
- "description": "XnView is an efficient image viewer, browser and converter for Windows.",
- "link": "https://www.xnview.com/en/xnview/",
- "winget": "XnSoft.XnView.Classic"
- },
- "WPFInstallxournal": {
- "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++"
- },
- "WPFInstallxpipe": {
- "category": "Pro Tools",
- "choco": "xpipe",
- "content": "XPipe",
- "description": "XPipe is an open-source tool for orchestrating containerized applications. It simplifies the deployment and management of containerized services in a distributed environment.",
- "link": "https://xpipe.io/",
- "winget": "xpipe-io.xpipe"
- },
- "WPFInstallyarn": {
- "category": "Development",
- "choco": "yarn",
- "content": "Yarn",
- "description": "Yarn is a fast, reliable, and secure dependency management tool for JavaScript projects.",
- "link": "https://yarnpkg.com/",
- "winget": "Yarn.Yarn"
- },
- "WPFInstallytdlp": {
- "category": "Multimedia Tools",
- "choco": "yt-dlp",
- "content": "Yt-dlp",
- "description": "Command-line tool that allows you to download videos from YouTube and other supported sites. It is an improved version of the popular youtube-dl.",
- "link": "https://github.com/yt-dlp/yt-dlp",
- "winget": "yt-dlp.yt-dlp"
- },
- "WPFInstallzerotierone": {
- "category": "Utilities",
- "choco": "zerotier-one",
- "content": "ZeroTier One",
- "description": "ZeroTier One is a software-defined networking tool that allows you to create secure and scalable networks.",
- "link": "https://zerotier.com/",
- "winget": "ZeroTier.ZeroTierOne"
- },
- "WPFInstallzim": {
- "category": "Document",
- "choco": "zim",
- "content": "Zim Desktop Wiki",
- "description": "Zim Desktop Wiki is a graphical text editor used to maintain a collection of wiki pages.",
- "link": "https://zim-wiki.org/",
- "winget": "Zimwiki.Zim"
- },
- "WPFInstallznote": {
- "category": "Document",
- "choco": "na",
- "content": "Znote",
- "description": "Znote is a note-taking application.",
- "link": "https://znote.io/",
- "winget": "alagrede.znote"
- },
- "WPFInstallzoom": {
- "category": "Communications",
- "choco": "zoom",
- "content": "Zoom",
- "description": "Zoom is a popular video conferencing and web conferencing service for online meetings, webinars, and collaborative projects.",
- "link": "https://zoom.us/",
- "winget": "Zoom.Zoom"
- },
- "WPFInstallzotero": {
- "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"
- },
- "WPFInstallzoxide": {
- "category": "Utilities",
- "choco": "zoxide",
- "content": "Zoxide",
- "description": "Zoxide is a fast and efficient directory changer (cd) that helps you navigate your file system with ease.",
- "link": "https://github.com/ajeetdsouza/zoxide",
- "winget": "ajeetdsouza.zoxide"
- },
- "WPFInstallzulip": {
- "category": "Communications",
- "choco": "zulip",
- "content": "Zulip",
- "description": "Zulip is an open-source team collaboration tool with chat streams for productive and organized communication.",
- "link": "https://zulipchat.com/",
- "winget": "Zulip.Zulip"
- },
- "WPFInstallsyncthingtray": {
- "category": "Utilities",
- "choco": "syncthingtray",
- "content": "Syncthingtray",
- "description": "Might be the alternative for Synctrayzor. Windows tray utility / filesystem watcher / launcher for Syncthing",
- "link": "https://github.com/Martchus/syncthingtray",
- "winget": "Martchus.syncthingtray"
- },
- "WPFInstallminiconda": {
- "category": "Development",
- "choco": "miniconda3",
- "content": "Miniconda",
- "description": "Miniconda is a free minimal installer for conda. It is a small bootstrap version of Anaconda that includes only conda, Python, the packages they both depend on, and a small number of other useful packages (like pip, zlib, and a few others).",
- "link": "https://docs.conda.io/projects/miniconda",
- "winget": "Anaconda.Miniconda3"
- },
- "WPFInstallpixi": {
- "category": "Development",
- "choco": "pixi",
- "content": "Pixi",
- "description": "Pixi is a fast software package manager built on top of the existing conda ecosystem. Spins up development environments quickly on Windows, macOS and Linux. Pixi supports Python, R, C/C++, Rust, Ruby, and many other languages.",
- "link": "https://pixi.sh",
- "winget": "prefix-dev.pixi"
- },
- "WPFInstalltemurin": {
- "category": "Development",
- "choco": "temurin",
- "content": "Eclipse Temurin",
- "description": "Eclipse Temurin is the open source Java SE build based upon OpenJDK.",
- "link": "https://adoptium.net/temurin/",
- "winget": "EclipseAdoptium.Temurin.21.JDK"
- },
- "WPFInstallintelpresentmon": {
- "category": "Utilities",
- "choco": "na",
- "content": "Intel-PresentMon",
- "description": "A new gaming performance overlay and telemetry application to monitor and measure your gaming experience.",
- "link": "https://game.intel.com/us/stories/intel-presentmon/",
- "winget": "Intel.PresentMon.Beta"
- },
- "WPFInstallpyenvwin": {
- "category": "Development",
- "choco": "pyenv-win",
- "content": "Python Version Manager (pyenv-win)",
- "description": "pyenv for Windows is a simple python version management tool. It lets you easily switch between multiple versions of Python.",
- "link": "https://pyenv-win.github.io/pyenv-win/",
- "winget": "na"
- },
- "WPFInstalltightvnc": {
- "category": "Utilities",
- "choco": "TightVNC",
- "content": "TightVNC",
- "description": "TightVNC is a free and Open Source remote desktop software that lets you access and control a computer over the network. With its intuitive interface, you can interact with the remote screen as if you were sitting in front of it. You can open files, launch applications, and perform other actions on the remote desktop almost as if you were physically there",
- "link": "https://www.tightvnc.com/",
- "winget": "GlavSoft.TightVNC"
- },
- "WPFInstallultravnc": {
- "category": "Utilities",
- "choco": "ultravnc",
- "content": "UltraVNC",
- "description": "UltraVNC is a powerful, easy to use and free - remote pc access softwares - that can display the screen of another computer (via internet or network) on your own screen. The program allows you to use your mouse and keyboard to control the other PC remotely. It means that you can work on a remote computer, as if you were sitting in front of it, right from your current location.",
- "link": "https://uvnc.com/",
- "winget": "uvncbvba.UltraVnc"
- },
- "WPFInstallwindowsfirewallcontrol": {
- "category": "Utilities",
- "choco": "windowsfirewallcontrol",
- "content": "Windows Firewall Control",
- "description": "Windows Firewall Control is a powerful tool which extends the functionality of Windows Firewall and provides new extra features which makes Windows Firewall better.",
- "link": "https://www.binisoft.org/wfc",
- "winget": "BiniSoft.WindowsFirewallControl"
- },
- "WPFInstallvistaswitcher": {
- "category": "Utilities",
- "choco": "na",
- "content": "VistaSwitcher",
- "description": "VistaSwitcher makes it easier for you to locate windows and switch focus, even on multi-monitor systems. The switcher window consists of an easy-to-read list of all tasks running with clearly shown titles and a full-sized preview of the selected task.",
- "link": "https://www.ntwind.com/freeware/vistaswitcher.html",
- "winget": "ntwind.VistaSwitcher"
- },
- "WPFInstallautodarkmode": {
- "category": "Utilities",
- "choco": "auto-dark-mode",
- "content": "Windows Auto Dark Mode",
- "description": "Automatically switches between the dark and light theme of Windows 10 and Windows 11",
- "link": "https://github.com/AutoDarkMode/Windows-Auto-Night-Mode",
- "winget": "Armin2208.WindowsAutoNightMode"
- },
- "WPFInstallAmbieWhiteNoise": {
- "category": "Utilities",
- "choco": "na",
- "content": "Ambie White Noise",
- "description": "Ambie is the ultimate app to help you focus, study, or relax. We use white noise and nature sounds combined with an innovative focus timer to keep you concentrated on doing your best work.",
- "link": "https://ambieapp.com/",
- "winget": "9P07XNM5CHP0"
- },
- "WPFInstallmagicwormhole": {
- "category": "Utilities",
- "choco": "magic-wormhole",
- "content": "Magic Wormhole",
- "description": "get things from one computer to another, safely",
- "link": "https://github.com/magic-wormhole/magic-wormhole",
- "winget": "magic-wormhole.magic-wormhole"
- },
- "WPFInstallcroc": {
- "category": "Utilities",
- "choco": "croc",
- "content": "croc",
- "description": "Easily and securely send things from one computer to another.",
- "link": "https://github.com/schollz/croc",
- "winget": "schollz.croc"
- },
- "WPFInstallqgis": {
- "category": "Multimedia Tools",
- "choco": "qgis",
- "content": "QGIS",
- "description": "QGIS (Quantum GIS) is an open-source Geographic Information System (GIS) software that enables users to create, edit, visualize, analyze, and publish geospatial information on Windows, Mac, and Linux platforms.",
- "link": "https://qgis.org/en/site/",
- "winget": "OSGeo.QGIS"
- },
- "WPFInstallsmplayer": {
- "category": "Multimedia Tools",
- "choco": "smplayer",
- "content": "SMPlayer",
- "description": "SMPlayer is a free media player for Windows and Linux with built-in codecs that can play virtually all video and audio formats.",
- "link": "https://www.smplayer.info",
- "winget": "SMPlayer.SMPlayer"
- },
- "WPFInstallglazewm": {
- "category": "Utilities",
- "choco": "na",
- "content": "GlazeWM",
- "description": "GlazeWM is a tiling window manager for Windows inspired by i3 and Polybar",
- "link": "https://github.com/glzr-io/glazewm",
- "winget": "glzr-io.glazewm"
- },
- "WPFInstallfancontrol": {
- "category": "Utilities",
- "choco": "na",
- "content": "FanControl",
- "description": "Fan Control is a free and open-source software that allows the user to control his CPU, GPU and case fans using temperatures.",
- "link": "https://getfancontrol.com/",
- "winget": "Rem0o.FanControl"
- },
- "WPFInstallfnm": {
- "category": "Development",
- "choco": "fnm",
- "content": "Fast Node Manager",
- "description": "Fast Node Manager (fnm) allows you to switch your Node version by using the Terminal",
- "link": "https://github.com/Schniz/fnm",
- "winget": "Schniz.fnm"
- },
- "WPFInstallWindhawk": {
- "category": "Utilities",
- "choco": "windhawk",
- "content": "Windhawk",
- "description": "The customization marketplace for Windows programs",
- "link": "https://windhawk.net",
- "winget": "RamenSoftware.Windhawk"
- },
- "WPFInstallForceAutoHDR": {
- "category": "Utilities",
- "choco": "na",
- "content": "ForceAutoHDR",
- "description": "ForceAutoHDR simplifies the process of adding games to the AutoHDR list in the Windows Registry",
- "link": "https://github.com/7gxycn08/ForceAutoHDR",
- "winget": "ForceAutoHDR.7gxycn08"
- },
- "WPFInstallJoyToKey": {
- "category": "Utilities",
- "choco": "joytokey",
- "content": "JoyToKey",
- "description": "enables PC game controllers to emulate the keyboard and mouse input",
- "link": "https://joytokey.net/en/",
- "winget": "JTKsoftware.JoyToKey"
- },
- "WPFInstallnditools": {
- "category": "Multimedia Tools",
- "choco": "na",
- "content": "NDI Tools",
- "description": "NDI, or Network Device Interface, is a video connectivity standard that enables multimedia systems to identify and communicate with one another over IP and to encode, transmit, and receive high-quality, low latency, frame-accurate video and audio, and exchange metadata in real-time.",
- "link": "https://ndi.video/",
- "winget": "NDI.NDITools"
- },
- "WPFInstallkicad": {
- "category": "Pro Tools",
- "choco": "na",
- "content": "Kicad",
- "description": "Kicad is an open-source EDA tool. It\u0026#39;s a good starting point for those who want to do electrical design and is even used by professionals in the industry.",
- "link": "https://www.kicad.org/",
- "winget": "KiCad.KiCad"
- },
- "WPFInstallFormatFactory": {
- "category": "Utilities",
- "choco": "formatfactory",
- "content": "Format Factory",
- "description": "FormatFactory is an ad-supported freeware multimedia converter that can convert video, audio, and picture files. It is also capable of ripping DVDs and CDs to other file formats, as well as creating .iso images. It can also join multiple video files together into one.",
- "link": "http://www.pcfreetime.com/formatfactory/",
- "winget": "na"
- },
- "WPFInstalldropox": {
- "category": "Utilities",
- "choco": "na",
- "content": "Dropbox",
- "description": "The Dropbox desktop app! Save hard drive space, share and edit files and send for signature ??? all without the distraction of countless browser tabs.",
- "link": "https://www.dropbox.com/en_GB/desktop",
- "winget": "Dropbox.Dropbox"
- },
- "WPFInstallOFGB": {
- "category": "Utilities",
- "choco": "ofgb",
- "content": "OFGB (Oh Frick Go Back)",
- "description": "GUI Tool To Removes Ads From Various Places Around Windows 11",
- "link": "https://github.com/xM4ddy/OFGB",
- "winget": "xM4ddy.OFGB"
- },
- "WPFInstall}": null
+ "WPFInstall1password": {
+ "category": "Utilities",
+ "choco": "1password",
+ "content": "1Password",
+ "description": "1Password is a password manager that allows you to store and manage your passwords securely.",
+ "link": "https://1password.com/",
+ "winget": "AgileBits.1Password"
+ },
+ "WPFInstall7zip": {
+ "category": "Utilities",
+ "choco": "7zip",
+ "content": "7-Zip",
+ "description": "7-Zip is a free and open-source file archiver utility. It supports several compression formats and provides a high compression ratio, making it a popular choice for file compression.",
+ "link": "https://www.7-zip.org/",
+ "winget": "7zip.7zip"
+ },
+ "WPFInstalladobe": {
+ "category": "Document",
+ "choco": "adobereader",
+ "content": "Adobe Acrobat Reader",
+ "description": "Adobe Acrobat Reader is a free PDF viewer with essential features for viewing, printing, and annotating PDF documents.",
+ "link": "https://www.adobe.com/acrobat/pdf-reader.html",
+ "winget": "Adobe.Acrobat.Reader.64-bit"
+ },
+ "WPFInstalladvancedip": {
+ "category": "Pro Tools",
+ "choco": "advanced-ip-scanner",
+ "content": "Advanced IP Scanner",
+ "description": "Advanced IP Scanner is a fast and easy-to-use network scanner. It is designed to analyze LAN networks and provides information about connected devices.",
+ "link": "https://www.advanced-ip-scanner.com/",
+ "winget": "Famatech.AdvancedIPScanner"
+ },
+ "WPFInstallaffine": {
+ "category": "Document",
+ "choco": "na",
+ "content": "AFFiNE",
+ "description": "AFFiNE is an open source alternative to Notion. Write, draw, plan all at once. Selfhost it to sync across devices.",
+ "link": "https://affine.pro/",
+ "winget": "ToEverything.AFFiNE"
+ },
+ "WPFInstallaimp": {
+ "category": "Multimedia Tools",
+ "choco": "aimp",
+ "content": "AIMP (Music Player)",
+ "description": "AIMP is a feature-rich music player with support for various audio formats, playlists, and customizable user interface.",
+ "link": "https://www.aimp.ru/",
+ "winget": "AIMP.AIMP"
+ },
+ "WPFInstallalacritty": {
+ "category": "Utilities",
+ "choco": "alacritty",
+ "content": "Alacritty Terminal",
+ "description": "Alacritty is a fast, cross-platform, and GPU-accelerated terminal emulator. It is designed for performance and aims to be the fastest terminal emulator available.",
+ "link": "https://alacritty.org/",
+ "winget": "Alacritty.Alacritty"
+ },
+ "WPFInstallanaconda3": {
+ "category": "Development",
+ "choco": "anaconda3",
+ "content": "Anaconda",
+ "description": "Anaconda is a distribution of the Python and R programming languages for scientific computing.",
+ "link": "https://www.anaconda.com/products/distribution",
+ "winget": "Anaconda.Anaconda3"
+ },
+ "WPFInstallangryipscanner": {
+ "category": "Pro Tools",
+ "choco": "angryip",
+ "content": "Angry IP Scanner",
+ "description": "Angry IP Scanner is an open-source and cross-platform network scanner. It is used to scan IP addresses and ports, providing information about network connectivity.",
+ "link": "https://angryip.org/",
+ "winget": "angryziber.AngryIPScanner"
+ },
+ "WPFInstallanki": {
+ "category": "Document",
+ "choco": "anki",
+ "content": "Anki",
+ "description": "Anki is a flashcard application that helps you memorize information with intelligent spaced repetition.",
+ "link": "https://apps.ankiweb.net/",
+ "winget": "Anki.Anki"
+ },
+ "WPFInstallanydesk": {
+ "category": "Utilities",
+ "choco": "anydesk",
+ "content": "AnyDesk",
+ "description": "AnyDesk is a remote desktop software that enables users to access and control computers remotely. It is known for its fast connection and low latency.",
+ "link": "https://anydesk.com/",
+ "winget": "AnyDeskSoftwareGmbH.AnyDesk"
+ },
+ "WPFInstallATLauncher": {
+ "category": "Games",
+ "choco": "na",
+ "content": "ATLauncher",
+ "description": "ATLauncher is a Launcher for Minecraft which integrates multiple different ModPacks to allow you to download and install ModPacks easily and quickly.",
+ "link": "https://github.com/ATLauncher/ATLauncher",
+ "winget": "ATLauncher.ATLauncher"
+ },
+ "WPFInstallaudacity": {
+ "category": "Multimedia Tools",
+ "choco": "audacity",
+ "content": "Audacity",
+ "description": "Audacity is a free and open-source audio editing software known for its powerful recording and editing capabilities.",
+ "link": "https://www.audacityteam.org/",
+ "winget": "Audacity.Audacity"
+ },
+ "WPFInstallautoruns": {
+ "category": "Microsoft Tools",
+ "choco": "autoruns",
+ "content": "Autoruns",
+ "description": "This utility shows you what programs are configured to run during system bootup or login",
+ "link": "https://learn.microsoft.com/en-us/sysinternals/downloads/autoruns",
+ "winget": "Microsoft.Sysinternals.Autoruns"
+ },
+ "WPFInstallrdcman": {
+ "category": "Microsoft Tools",
+ "choco": "rdcman",
+ "content": "RDCMan",
+ "description": "RDCMan manages multiple remote desktop connections. It is useful for managing server labs where you need regular access to each machine such as automated checkin systems and data centers.",
+ "link": "https://learn.microsoft.com/en-us/sysinternals/downloads/rdcman",
+ "winget": "Microsoft.Sysinternals.RDCMan"
+ },
+ "WPFInstallautohotkey": {
+ "category": "Utilities",
+ "choco": "autohotkey",
+ "content": "AutoHotkey",
+ "description": "AutoHotkey is a scripting language for Windows that allows users to create custom automation scripts and macros. It is often used for automating repetitive tasks and customizing keyboard shortcuts.",
+ "link": "https://www.autohotkey.com/",
+ "winget": "AutoHotkey.AutoHotkey"
+ },
+ "WPFInstallazuredatastudio": {
+ "category": "Microsoft Tools",
+ "choco": "azure-data-studio",
+ "content": "Microsoft Azure Data Studio",
+ "description": "Azure Data Studio is a data management tool that enables you to work with SQL Server, Azure SQL DB and SQL DW from Windows, macOS and Linux.",
+ "link": "https://docs.microsoft.com/sql/azure-data-studio/what-is-azure-data-studio",
+ "winget": "Microsoft.AzureDataStudio"
+ },
+ "WPFInstallbarrier": {
+ "category": "Utilities",
+ "choco": "barrier",
+ "content": "Barrier",
+ "description": "Barrier is an open-source software KVM (keyboard, video, and mouseswitch). It allows users to control multiple computers with a single keyboard and mouse, even if they have different operating systems.",
+ "link": "https://github.com/debauchee/barrier",
+ "winget": "DebaucheeOpenSourceGroup.Barrier"
+ },
+ "WPFInstallbat": {
+ "category": "Utilities",
+ "choco": "bat",
+ "content": "Bat (Cat)",
+ "description": "Bat is a cat command clone with syntax highlighting. It provides a user-friendly and feature-rich alternative to the traditional cat command for viewing and concatenating files.",
+ "link": "https://github.com/sharkdp/bat",
+ "winget": "sharkdp.bat"
+ },
+ "WPFInstallbitwarden": {
+ "category": "Utilities",
+ "choco": "bitwarden",
+ "content": "Bitwarden",
+ "description": "Bitwarden is an open-source password management solution. It allows users to store and manage their passwords in a secure and encrypted vault, accessible across multiple devices.",
+ "link": "https://bitwarden.com/",
+ "winget": "Bitwarden.Bitwarden"
+ },
+ "WPFInstallbleachbit": {
+ "category": "Utilities",
+ "choco": "bleachbit",
+ "content": "BleachBit",
+ "description": "Clean Your System and Free Disk Space",
+ "link": "https://www.bleachbit.org/",
+ "winget": "BleachBit.BleachBit"
+ },
+ "WPFInstallblender": {
+ "category": "Multimedia Tools",
+ "choco": "blender",
+ "content": "Blender (3D Graphics)",
+ "description": "Blender is a powerful open-source 3D creation suite, offering modeling, sculpting, animation, and rendering tools.",
+ "link": "https://www.blender.org/",
+ "winget": "BlenderFoundation.Blender"
+ },
+ "WPFInstallbrave": {
+ "category": "Browsers",
+ "choco": "brave",
+ "content": "Brave",
+ "description": "Brave is a privacy-focused web browser that blocks ads and trackers, offering a faster and safer browsing experience.",
+ "link": "https://www.brave.com",
+ "winget": "Brave.Brave"
+ },
+ "WPFInstallbulkcrapuninstaller": {
+ "category": "Utilities",
+ "choco": "bulk-crap-uninstaller",
+ "content": "Bulk Crap Uninstaller",
+ "description": "Bulk Crap Uninstaller is a free and open-source uninstaller utility for Windows. It helps users remove unwanted programs and clean up their system by uninstalling multiple applications at once.",
+ "link": "https://www.bcuninstaller.com/",
+ "winget": "Klocman.BulkCrapUninstaller"
+ },
+ "WPFInstallbulkrenameutility": {
+ "category": "Utilities",
+ "choco": "bulkrenameutility",
+ "content": "Bulk Rename Utility",
+ "description": "Bulk Rename Utility allows you to easily rename files and folders recursively based upon find-replace, character place, fields, sequences, regular expressions, EXIF data, and more.",
+ "link": "https://www.bulkrenameutility.co.uk",
+ "winget": "TGRMNSoftware.BulkRenameUtility"
+ },
+ "WPFInstallAdvancedRenamer": {
+ "category": "Utilities",
+ "choco": "advanced-renamer",
+ "content": "Advanced Renamer",
+ "description": "Advanced Renamer is a program for renaming multiple files and folders at once. By configuring renaming methods the names can be manipulated in various ways.",
+ "link": "https://www.advancedrenamer.com/",
+ "winget": "XP9MD3S1KFCPH1"
+ },
+ "WPFInstallcalibre": {
+ "category": "Document",
+ "choco": "calibre",
+ "content": "Calibre",
+ "description": "Calibre is a powerful and easy-to-use e-book manager, viewer, and converter.",
+ "link": "https://calibre-ebook.com/",
+ "winget": "calibre.calibre"
+ },
+ "WPFInstallcarnac": {
+ "category": "Utilities",
+ "choco": "carnac",
+ "content": "Carnac",
+ "description": "Carnac is a keystroke visualizer for Windows. It displays keystrokes in an overlay, making it useful for presentations, tutorials, and live demonstrations.",
+ "link": "https://carnackeys.com/",
+ "winget": "code52.Carnac"
+ },
+ "WPFInstallcemu": {
+ "category": "Games",
+ "choco": "cemu",
+ "content": "Cemu",
+ "description": "Cemu is a highly experimental software to emulate Wii U applications on PC.",
+ "link": "https://cemu.info/",
+ "winget": "Cemu.Cemu"
+ },
+ "WPFInstallchatterino": {
+ "category": "Communications",
+ "choco": "chatterino",
+ "content": "Chatterino",
+ "description": "Chatterino is a chat client for Twitch chat that offers a clean and customizable interface for a better streaming experience.",
+ "link": "https://www.chatterino.com/",
+ "winget": "ChatterinoTeam.Chatterino"
+ },
+ "WPFInstallchrome": {
+ "category": "Browsers",
+ "choco": "googlechrome",
+ "content": "Chrome",
+ "description": "Google Chrome is a widely used web browser known for its speed, simplicity, and seamless integration with Google services.",
+ "link": "https://www.google.com/chrome/",
+ "winget": "Google.Chrome"
+ },
+ "WPFInstallchromium": {
+ "category": "Browsers",
+ "choco": "chromium",
+ "content": "Chromium",
+ "description": "Chromium is the open-source project that serves as the foundation for various web browsers, including Chrome.",
+ "link": "https://github.com/Hibbiki/chromium-win64",
+ "winget": "Hibbiki.Chromium"
+ },
+ "WPFInstallarc": {
+ "category": "Browsers",
+ "choco": "na",
+ "content": "Arc",
+ "description": "Arc is a Chromium based browser, known for it's clean and modern design.",
+ "link": "https://arc.net/",
+ "winget": "TheBrowserCompany.Arc"
+ },
+ "WPFInstallclementine": {
+ "category": "Multimedia Tools",
+ "choco": "clementine",
+ "content": "Clementine",
+ "description": "Clementine is a modern music player and library organizer, supporting various audio formats and online radio services.",
+ "link": "https://www.clementine-player.org/",
+ "winget": "Clementine.Clementine"
+ },
+ "WPFInstallclink": {
+ "category": "Development",
+ "choco": "clink",
+ "content": "Clink",
+ "description": "Clink is a powerful Bash-compatible command-line interface (CLIenhancement for Windows, adding features like syntax highlighting and improved history).",
+ "link": "https://mridgers.github.io/clink/",
+ "winget": "chrisant996.Clink"
+ },
+ "WPFInstallclonehero": {
+ "category": "Games",
+ "choco": "na",
+ "content": "Clone Hero",
+ "description": "Clone Hero is a free rhythm game, which can be played with any 5 or 6 button guitar controller.",
+ "link": "https://clonehero.net/",
+ "winget": "CloneHeroTeam.CloneHero"
+ },
+ "WPFInstallcmake": {
+ "category": "Development",
+ "choco": "cmake",
+ "content": "CMake",
+ "description": "CMake is an open-source, cross-platform family of tools designed to build, test and package software.",
+ "link": "https://cmake.org/",
+ "winget": "Kitware.CMake"
+ },
+ "WPFInstallcopyq": {
+ "category": "Utilities",
+ "choco": "copyq",
+ "content": "CopyQ (Clipboard Manager)",
+ "description": "CopyQ is a clipboard manager with advanced features, allowing you to store, edit, and retrieve clipboard history.",
+ "link": "https://copyq.readthedocs.io/",
+ "winget": "hluk.CopyQ"
+ },
+ "WPFInstallcpuz": {
+ "category": "Utilities",
+ "choco": "cpu-z",
+ "content": "CPU-Z",
+ "description": "CPU-Z is a system monitoring and diagnostic tool for Windows. It provides detailed information about the computer's hardware components, including the CPU, memory, and motherboard.",
+ "link": "https://www.cpuid.com/softwares/cpu-z.html",
+ "winget": "CPUID.CPU-Z"
+ },
+ "WPFInstallcrystaldiskinfo": {
+ "category": "Utilities",
+ "choco": "crystaldiskinfo",
+ "content": "Crystal Disk Info",
+ "description": "Crystal Disk Info is a disk health monitoring tool that provides information about the status and performance of hard drives. It helps users anticipate potential issues and monitor drive health.",
+ "link": "https://crystalmark.info/en/software/crystaldiskinfo/",
+ "winget": "CrystalDewWorld.CrystalDiskInfo"
+ },
+ "WPFInstallcapframex": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "CapFrameX",
+ "description": "Frametimes capture and analysis tool based on Intel's PresentMon. Overlay provided by Rivatuner Statistics Server.",
+ "link": "https://www.capframex.com/",
+ "winget": "CXWorld.CapFrameX"
+ },
+ "WPFInstallcrystaldiskmark": {
+ "category": "Utilities",
+ "choco": "crystaldiskmark",
+ "content": "Crystal Disk Mark",
+ "description": "Crystal Disk Mark is a disk benchmarking tool that measures the read and write speeds of storage devices. It helps users assess the performance of their hard drives and SSDs.",
+ "link": "https://crystalmark.info/en/software/crystaldiskmark/",
+ "winget": "CrystalDewWorld.CrystalDiskMark"
+ },
+ "WPFInstalldarktable": {
+ "category": "Multimedia Tools",
+ "choco": "darktable",
+ "content": "darktable",
+ "description": "Open-source photo editing tool, offering an intuitive interface, advanced editing capabilities, and a non-destructive workflow for seamless image enhancement.",
+ "link": "https://www.darktable.org/install/",
+ "winget": "darktable.darktable"
+ },
+ "WPFInstallDaxStudio": {
+ "category": "Development",
+ "choco": "daxstudio",
+ "content": "DaxStudio",
+ "description": "DAX (Data Analysis eXpressions) Studio is the ultimate tool for executing and analyzing DAX queries against Microsoft Tabular models.",
+ "link": "https://daxstudio.org/",
+ "winget": "DaxStudio.DaxStudio"
+ },
+ "WPFInstallddu": {
+ "category": "Utilities",
+ "choco": "ddu",
+ "content": "Display Driver Uninstaller",
+ "description": "Display Driver Uninstaller (DDU) is a tool for completely uninstalling graphics drivers from NVIDIA, AMD, and Intel. It is useful for troubleshooting graphics driver-related issues.",
+ "link": "https://www.wagnardsoft.com/display-driver-uninstaller-DDU-",
+ "winget": "ddu"
+ },
+ "WPFInstalldeluge": {
+ "category": "Utilities",
+ "choco": "deluge",
+ "content": "Deluge",
+ "description": "Deluge is a free and open-source BitTorrent client. It features a user-friendly interface, support for plugins, and the ability to manage torrents remotely.",
+ "link": "https://deluge-torrent.org/",
+ "winget": "DelugeTeam.Deluge"
+ },
+ "WPFInstalldevtoys": {
+ "category": "Utilities",
+ "choco": "devtoys",
+ "content": "DevToys",
+ "description": "DevToys is a collection of development-related utilities and tools for Windows. It includes tools for file management, code formatting, and productivity enhancements for developers.",
+ "link": "https://devtoys.app/",
+ "winget": "DevToys-app.DevToys"
+ },
+ "WPFInstalldigikam": {
+ "category": "Multimedia Tools",
+ "choco": "digikam",
+ "content": "digiKam",
+ "description": "digiKam is an advanced open-source photo management software with features for organizing, editing, and sharing photos.",
+ "link": "https://www.digikam.org/",
+ "winget": "KDE.digikam"
+ },
+ "WPFInstalldiscord": {
+ "category": "Communications",
+ "choco": "discord",
+ "content": "Discord",
+ "description": "Discord is a popular communication platform with voice, video, and text chat, designed for gamers but used by a wide range of communities.",
+ "link": "https://discord.com/",
+ "winget": "Discord.Discord"
+ },
+ "WPFInstallditto": {
+ "category": "Utilities",
+ "choco": "ditto",
+ "content": "Ditto",
+ "description": "Ditto is an extension to the standard windows clipboard.",
+ "link": "https://github.com/sabrogden/Ditto",
+ "winget": "Ditto.Ditto"
+ },
+ "WPFInstalldockerdesktop": {
+ "category": "Development",
+ "choco": "docker-desktop",
+ "content": "Docker Desktop",
+ "description": "Docker Desktop is a powerful tool for containerized application development and deployment.",
+ "link": "https://www.docker.com/products/docker-desktop",
+ "winget": "Docker.DockerDesktop"
+ },
+ "WPFInstalldotnet3": {
+ "category": "Microsoft Tools",
+ "choco": "dotnetcore3-desktop-runtime",
+ "content": ".NET Desktop Runtime 3.1",
+ "description": ".NET Desktop Runtime 3.1 is a runtime environment required for running applications developed with .NET Core 3.1.",
+ "link": "https://dotnet.microsoft.com/download/dotnet/3.1",
+ "winget": "Microsoft.DotNet.DesktopRuntime.3_1"
+ },
+ "WPFInstalldotnet5": {
+ "category": "Microsoft Tools",
+ "choco": "dotnet-5.0-runtime",
+ "content": ".NET Desktop Runtime 5",
+ "description": ".NET Desktop Runtime 5 is a runtime environment required for running applications developed with .NET 5.",
+ "link": "https://dotnet.microsoft.com/download/dotnet/5.0",
+ "winget": "Microsoft.DotNet.DesktopRuntime.5"
+ },
+ "WPFInstalldotnet6": {
+ "category": "Microsoft Tools",
+ "choco": "dotnet-6.0-runtime",
+ "content": ".NET Desktop Runtime 6",
+ "description": ".NET Desktop Runtime 6 is a runtime environment required for running applications developed with .NET 6.",
+ "link": "https://dotnet.microsoft.com/download/dotnet/6.0",
+ "winget": "Microsoft.DotNet.DesktopRuntime.6"
+ },
+ "WPFInstalldotnet7": {
+ "category": "Microsoft Tools",
+ "choco": "dotnet-7.0-runtime",
+ "content": ".NET Desktop Runtime 7",
+ "description": ".NET Desktop Runtime 7 is a runtime environment required for running applications developed with .NET 7.",
+ "link": "https://dotnet.microsoft.com/download/dotnet/7.0",
+ "winget": "Microsoft.DotNet.DesktopRuntime.7"
+ },
+ "WPFInstalldotnet8": {
+ "category": "Microsoft Tools",
+ "choco": "dotnet-8.0-runtime",
+ "content": ".NET Desktop Runtime 8",
+ "description": ".NET Desktop Runtime 8 is a runtime environment required for running applications developed with .NET 8.",
+ "link": "https://dotnet.microsoft.com/download/dotnet/8.0",
+ "winget": "Microsoft.DotNet.DesktopRuntime.8"
+ },
+ "WPFInstalldmt": {
+ "winget": "GNE.DualMonitorTools",
+ "choco": "dual-monitor-tools",
+ "category": "Utilities",
+ "content": "Dual Monitor Tools",
+ "link": "https://dualmonitortool.sourceforge.net/",
+ "description": "Dual Monitor Tools (DMT) is a FOSS app that customize handling multiple monitors and even lock the mouse on specific monitor. Useful for full screen games and apps that does not handle well a second monitor or helps the workflow."
+ },
+ "WPFInstallduplicati": {
+ "category": "Utilities",
+ "choco": "duplicati",
+ "content": "Duplicati",
+ "description": "Duplicati is an open-source backup solution that supports encrypted, compressed, and incremental backups. It is designed to securely store data on cloud storage services.",
+ "link": "https://www.duplicati.com/",
+ "winget": "Duplicati.Duplicati"
+ },
+ "WPFInstalleaapp": {
+ "category": "Games",
+ "choco": "ea-app",
+ "content": "EA App",
+ "description": "EA App is a platform for accessing and playing Electronic Arts games.",
+ "link": "https://www.ea.com/ea-app",
+ "winget": "ElectronicArts.EADesktop"
+ },
+ "WPFInstalleartrumpet": {
+ "category": "Multimedia Tools",
+ "choco": "eartrumpet",
+ "content": "EarTrumpet (Audio)",
+ "description": "EarTrumpet is an audio control app for Windows, providing a simple and intuitive interface for managing sound settings.",
+ "link": "https://eartrumpet.app/",
+ "winget": "File-New-Project.EarTrumpet"
+ },
+ "WPFInstalledge": {
+ "category": "Browsers",
+ "choco": "microsoft-edge",
+ "content": "Edge",
+ "description": "Microsoft Edge is a modern web browser built on Chromium, offering performance, security, and integration with Microsoft services.",
+ "link": "https://www.microsoft.com/edge",
+ "winget": "Microsoft.Edge"
+ },
+ "WPFInstallefibooteditor": {
+ "category": "Pro Tools",
+ "choco": "na",
+ "content": "EFI Boot Editor",
+ "description": "EFI Boot Editor is a tool for managing the EFI/UEFI boot entries on your system. It allows you to customize the boot configuration of your computer.",
+ "link": "https://www.easyuefi.com/",
+ "winget": "EFIBootEditor.EFIBootEditor"
+ },
+ "WPFInstallemulationstation": {
+ "category": "Games",
+ "choco": "emulationstation",
+ "content": "Emulation Station",
+ "description": "Emulation Station is a graphical and themeable emulator front-end that allows you to access all your favorite games in one place.",
+ "link": "https://emulationstation.org/",
+ "winget": "Emulationstation.Emulationstation"
+ },
+ "WPFInstallepicgames": {
+ "category": "Games",
+ "choco": "epicgameslauncher",
+ "content": "Epic Games Launcher",
+ "description": "Epic Games Launcher is the client for accessing and playing games from the Epic Games Store.",
+ "link": "https://www.epicgames.com/store/en-US/",
+ "winget": "EpicGames.EpicGamesLauncher"
+ },
+ "WPFInstallerrorlookup": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Windows Error Code Lookup",
+ "description": "ErrorLookup is a tool for looking up Windows error codes and their descriptions.",
+ "link": "https://github.com/HenryPP/ErrorLookup",
+ "winget": "Henry++.ErrorLookup"
+ },
+ "WPFInstallesearch": {
+ "category": "Utilities",
+ "choco": "everything",
+ "content": "Everything Search",
+ "description": "Everything Search is a fast and efficient file search utility for Windows.",
+ "link": "https://www.voidtools.com/",
+ "winget": "voidtools.Everything"
+ },
+ "WPFInstallespanso": {
+ "category": "Utilities",
+ "choco": "espanso",
+ "content": "Espanso",
+ "description": "Cross-platform and open-source Text Expander written in Rust",
+ "link": "https://espanso.org/",
+ "winget": "Espanso.Espanso"
+ },
+ "WPFInstalletcher": {
+ "category": "Utilities",
+ "choco": "etcher",
+ "content": "Etcher USB Creator",
+ "description": "Etcher is a powerful tool for creating bootable USB drives with ease.",
+ "link": "https://www.balena.io/etcher/",
+ "winget": "Balena.Etcher"
+ },
+ "WPFInstallfalkon": {
+ "category": "Browsers",
+ "choco": "falkon",
+ "content": "Falkon",
+ "description": "Falkon is a lightweight and fast web browser with a focus on user privacy and efficiency.",
+ "link": "https://www.falkon.org/",
+ "winget": "KDE.Falkon"
+ },
+ "WPFInstallfastfetch": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Fastfetch",
+ "description": "Fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way",
+ "link": "https://github.com/fastfetch-cli/fastfetch/",
+ "winget": "Fastfetch-cli.Fastfetch"
+ },
+ "WPFInstallferdium": {
+ "category": "Communications",
+ "choco": "ferdium",
+ "content": "Ferdium",
+ "description": "Ferdium is a messaging application that combines multiple messaging services into a single app for easy management.",
+ "link": "https://ferdium.org/",
+ "winget": "Ferdium.Ferdium"
+ },
+ "WPFInstallffmpeg": {
+ "category": "Multimedia Tools",
+ "choco": "ffmpeg-full",
+ "content": "FFmpeg (full)",
+ "description": "FFmpeg is a powerful multimedia processing tool that enables users to convert, edit, and stream audio and video files with a vast range of codecs and formats.",
+ "link": "https://ffmpeg.org/",
+ "winget": "Gyan.FFmpeg"
+ },
+ "WPFInstallfileconverter": {
+ "category": "Utilities",
+ "choco": "file-converter",
+ "content": "File-Converter",
+ "description": "File Converter is a very simple tool which allows you to convert and compress one or several file(s) using the context menu in windows explorer.",
+ "link": "https://file-converter.io/",
+ "winget": "AdrienAllard.FileConverter"
+ },
+ "WPFInstallfiles": {
+ "category": "Utilities",
+ "choco": "files",
+ "content": "Files",
+ "description": "Alternative file explorer.",
+ "link": "https://github.com/files-community/Files",
+ "winget": "na"
+ },
+ "WPFInstallfirealpaca": {
+ "category": "Multimedia Tools",
+ "choco": "firealpaca",
+ "content": "Fire Alpaca",
+ "description": "Fire Alpaca is a free digital painting software that provides a wide range of drawing tools and a user-friendly interface.",
+ "link": "https://firealpaca.com/",
+ "winget": "FireAlpaca.FireAlpaca"
+ },
+ "WPFInstallfirefox": {
+ "category": "Browsers",
+ "choco": "firefox",
+ "content": "Firefox",
+ "description": "Mozilla Firefox is an open-source web browser known for its customization options, privacy features, and extensions.",
+ "link": "https://www.mozilla.org/en-US/firefox/new/",
+ "winget": "Mozilla.Firefox"
+ },
+ "WPFInstallfirefoxesr": {
+ "category": "Browsers",
+ "choco": "FirefoxESR",
+ "content": "Firefox ESR",
+ "description": "Mozilla Firefox is an open-source web browser known for its customization options, privacy features, and extensions. Firefox ESR (Extended Support Release) receives major updates every 42 weeks with minor updates such as crash fixes, security fixes and policy updates as needed, but at least every four weeks.",
+ "link": "https://www.mozilla.org/en-US/firefox/enterprise/",
+ "winget": "Mozilla.Firefox.ESR"
+ },
+ "WPFInstallflameshot": {
+ "category": "Multimedia Tools",
+ "choco": "flameshot",
+ "content": "Flameshot (Screenshots)",
+ "description": "Flameshot is a powerful yet simple to use screenshot software, offering annotation and editing features.",
+ "link": "https://flameshot.org/",
+ "winget": "Flameshot.Flameshot"
+ },
+ "WPFInstalllightshot": {
+ "category": "Multimedia Tools",
+ "choco": "lightshot",
+ "content": "Lightshot (Screenshots)",
+ "description": "Ligthshot is an Easy-to-use, light-weight screenshot software tool, where you can optionally edit your screenshots using different tools, share them via Internet and/or save to disk, and customize the available options.",
+ "link": "https://app.prntscr.com/",
+ "winget": "Skillbrains.Lightshot"
+ },
+ "WPFInstallfloorp": {
+ "category": "Browsers",
+ "choco": "na",
+ "content": "Floorp",
+ "description": "Floorp is an open-source web browser project that aims to provide a simple and fast browsing experience.",
+ "link": "https://floorp.app/",
+ "winget": "Ablaze.Floorp"
+ },
+ "WPFInstallflow": {
+ "category": "Utilities",
+ "choco": "flow-launcher",
+ "content": "Flow launcher",
+ "description": "Keystroke launcher for Windows to search, manage and launch files, folders bookmarks, websites and more.",
+ "link": "https://www.flowlauncher.com/",
+ "winget": "Flow-Launcher.Flow-Launcher"
+ },
+ "WPFInstallflux": {
+ "category": "Utilities",
+ "choco": "flux",
+ "content": "F.lux",
+ "description": "f.lux adjusts the color temperature of your screen to reduce eye strain during nighttime use.",
+ "link": "https://justgetflux.com/",
+ "winget": "flux.flux"
+ },
+ "WPFInstallfoobar": {
+ "category": "Multimedia Tools",
+ "choco": "foobar2000",
+ "content": "foobar2000 (Music Player)",
+ "description": "foobar2000 is a highly customizable and extensible music player for Windows, known for its modular design and advanced features.",
+ "link": "https://www.foobar2000.org/",
+ "winget": "PeterPawlowski.foobar2000"
+ },
+ "WPFInstallfoxpdfeditor": {
+ "category": "Document",
+ "choco": "na",
+ "content": "Foxit PDF Editor",
+ "description": "Foxit PDF Editor is a feature-rich PDF editor and viewer with a familiar ribbon-style interface.",
+ "link": "https://www.foxit.com/pdf-editor/",
+ "winget": "Foxit.PhantomPDF"
+ },
+ "WPFInstallfoxpdfreader": {
+ "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"
+ },
+ "WPFInstallfreecad": {
+ "category": "Multimedia Tools",
+ "choco": "freecad",
+ "content": "FreeCAD",
+ "description": "FreeCAD is a parametric 3D CAD modeler, designed for product design and engineering tasks, with a focus on flexibility and extensibility.",
+ "link": "https://www.freecadweb.org/",
+ "winget": "FreeCAD.FreeCAD"
+ },
+ "WPFInstallfxsound": {
+ "category": "Multimedia Tools",
+ "choco": "fxsound",
+ "content": "FxSound",
+ "description": "FxSound is a cutting-edge audio enhancement software that elevates your listening experience across all media.",
+ "link": "https://www.fxsound.com/",
+ "winget": "FxSoundLLC.FxSound"
+ },
+ "WPFInstallfzf": {
+ "category": "Utilities",
+ "choco": "fzf",
+ "content": "Fzf",
+ "description": "A command-line fuzzy finder",
+ "link": "https://github.com/junegunn/fzf/",
+ "winget": "junegunn.fzf"
+ },
+ "WPFInstallgeforcenow": {
+ "category": "Games",
+ "choco": "nvidia-geforce-now",
+ "content": "GeForce NOW",
+ "description": "GeForce NOW is a cloud gaming service that allows you to play high-quality PC games on your device.",
+ "link": "https://www.nvidia.com/en-us/geforce-now/",
+ "winget": "Nvidia.GeForceNow"
+ },
+ "WPFInstallgimp": {
+ "category": "Multimedia Tools",
+ "choco": "gimp",
+ "content": "GIMP (Image Editor)",
+ "description": "GIMP is a versatile open-source raster graphics editor used for tasks such as photo retouching, image editing, and image composition.",
+ "link": "https://www.gimp.org/",
+ "winget": "GIMP.GIMP"
+ },
+ "WPFInstallgit": {
+ "category": "Development",
+ "choco": "git",
+ "content": "Git",
+ "description": "Git is a distributed version control system widely used for tracking changes in source code during software development.",
+ "link": "https://git-scm.com/",
+ "winget": "Git.Git"
+ },
+ "WPFInstallgitextensions": {
+ "category": "Development",
+ "choco": "git;gitextensions",
+ "content": "Git Extensions",
+ "description": "Git Extensions is a graphical user interface for Git, providing additional features for easier source code management.",
+ "link": "https://gitextensions.github.io/",
+ "winget": "GitExtensionsTeam.GitExtensions"
+ },
+ "WPFInstallgithubcli": {
+ "category": "Development",
+ "choco": "git;gh",
+ "content": "GitHub CLI",
+ "description": "GitHub CLI is a command-line tool that simplifies working with GitHub directly from the terminal.",
+ "link": "https://cli.github.com/",
+ "winget": "GitHub.cli"
+ },
+ "WPFInstallgithubdesktop": {
+ "category": "Development",
+ "choco": "git;github-desktop",
+ "content": "GitHub Desktop",
+ "description": "GitHub Desktop is a visual Git client that simplifies collaboration on GitHub repositories with an easy-to-use interface.",
+ "link": "https://desktop.github.com/",
+ "winget": "GitHub.GitHubDesktop"
+ },
+ "WPFInstallgitkrakenclient": {
+ "category": "Development",
+ "choco": "gitkraken",
+ "content": "GitKraken Client",
+ "description": "GitKraken Client is a powerful visual Git client from Axosoft that works with ALL git repositories on any hosting environment.",
+ "link": "https://www.gitkraken.com/git-client",
+ "winget": "Axosoft.GitKraken"
+ },
+ "WPFInstallglaryutilities": {
+ "category": "Utilities",
+ "choco": "glaryutilities-free",
+ "content": "Glary Utilities",
+ "description": "Glary Utilities is a comprehensive system optimization and maintenance tool for Windows.",
+ "link": "https://www.glarysoft.com/glary-utilities/",
+ "winget": "Glarysoft.GlaryUtilities"
+ },
+ "WPFInstallgodotengine": {
+ "category": "Development",
+ "choco": "godot",
+ "content": "Godot Engine",
+ "description": "Godot Engine is a free, open-source 2D and 3D game engine with a focus on usability and flexibility.",
+ "link": "https://godotengine.org/",
+ "winget": "GodotEngine.GodotEngine"
+ },
+ "WPFInstallgog": {
+ "category": "Games",
+ "choco": "goggalaxy",
+ "content": "GOG Galaxy",
+ "description": "GOG Galaxy is a gaming client that offers DRM-free games, additional content, and more.",
+ "link": "https://www.gog.com/galaxy",
+ "winget": "GOG.Galaxy"
+ },
+ "WPFInstallgitify": {
+ "category": "Development",
+ "choco": "na",
+ "content": "Gitify",
+ "description": "GitHub notifications on your menu bar.",
+ "link": "https://www.gitify.io/",
+ "winget": "Gitify.Gitify"
+ },
+ "WPFInstallgolang": {
+ "category": "Development",
+ "choco": "golang",
+ "content": "Go",
+ "description": "Go (or Golang) is a statically typed, compiled programming language designed for simplicity, reliability, and efficiency.",
+ "link": "https://go.dev/",
+ "winget": "GoLang.Go"
+ },
+ "WPFInstallgoogledrive": {
+ "category": "Utilities",
+ "choco": "googledrive",
+ "content": "Google Drive",
+ "description": "File syncing across devices all tied to your google account",
+ "link": "https://www.google.com/drive/",
+ "winget": "Google.Drive"
+ },
+ "WPFInstallgpuz": {
+ "category": "Utilities",
+ "choco": "gpu-z",
+ "content": "GPU-Z",
+ "description": "GPU-Z provides detailed information about your graphics card and GPU.",
+ "link": "https://www.techpowerup.com/gpuz/",
+ "winget": "TechPowerUp.GPU-Z"
+ },
+ "WPFInstallgreenshot": {
+ "category": "Multimedia Tools",
+ "choco": "greenshot",
+ "content": "Greenshot (Screenshots)",
+ "description": "Greenshot is a light-weight screenshot software tool with built-in image editor and customizable capture options.",
+ "link": "https://getgreenshot.org/",
+ "winget": "Greenshot.Greenshot"
+ },
+ "WPFInstallgsudo": {
+ "category": "Utilities",
+ "choco": "gsudo",
+ "content": "Gsudo",
+ "description": "Gsudo is a sudo implementation for Windows, allowing elevated privilege execution.",
+ "link": "https://gerardog.github.io/gsudo/",
+ "winget": "gerardog.gsudo"
+ },
+ "WPFInstallguilded": {
+ "category": "Communications",
+ "choco": "na",
+ "content": "Guilded",
+ "description": "Guilded is a communication and productivity platform that includes chat, scheduling, and collaborative tools for gaming and communities.",
+ "link": "https://www.guilded.gg/",
+ "winget": "Guilded.Guilded"
+ },
+ "WPFInstallhandbrake": {
+ "category": "Multimedia Tools",
+ "choco": "handbrake",
+ "content": "HandBrake",
+ "description": "HandBrake is an open-source video transcoder, allowing you to convert video from nearly any format to a selection of widely supported codecs.",
+ "link": "https://handbrake.fr/",
+ "winget": "HandBrake.HandBrake"
+ },
+ "WPFInstallharmonoid": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "Harmonoid",
+ "description": "Plays and manages your music library. Looks beautiful and juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost and more.",
+ "link": "https://harmonoid.com/",
+ "winget": "Harmonoid.Harmonoid"
+ },
+ "WPFInstallheidisql": {
+ "category": "Pro Tools",
+ "choco": "heidisql",
+ "content": "HeidiSQL",
+ "description": "HeidiSQL is a powerful and easy-to-use client for MySQL, MariaDB, Microsoft SQL Server, and PostgreSQL databases. It provides tools for database management and development.",
+ "link": "https://www.heidisql.com/",
+ "winget": "HeidiSQL.HeidiSQL"
+ },
+ "WPFInstallhelix": {
+ "category": "Development",
+ "choco": "helix",
+ "content": "Helix",
+ "description": "Helix is a neovim alternative built in rust.",
+ "link": "https://helix-editor.com/",
+ "winget": "Helix.Helix"
+ },
+ "WPFInstallheroiclauncher": {
+ "category": "Games",
+ "choco": "na",
+ "content": "Heroic Games Launcher",
+ "description": "Heroic Games Launcher is an open-source alternative game launcher for Epic Games Store.",
+ "link": "https://heroicgameslauncher.com/",
+ "winget": "HeroicGamesLauncher.HeroicGamesLauncher"
+ },
+ "WPFInstallhexchat": {
+ "category": "Communications",
+ "choco": "hexchat",
+ "content": "Hexchat",
+ "description": "HexChat is a free, open-source IRC (Internet Relay Chat) client with a graphical interface for easy communication.",
+ "link": "https://hexchat.github.io/",
+ "winget": "HexChat.HexChat"
+ },
+ "WPFInstallhwinfo": {
+ "category": "Utilities",
+ "choco": "hwinfo",
+ "content": "HWiNFO",
+ "description": "HWiNFO provides comprehensive hardware information and diagnostics for Windows.",
+ "link": "https://www.hwinfo.com/",
+ "winget": "REALiX.HWiNFO"
+ },
+ "WPFInstallhwmonitor": {
+ "category": "Utilities",
+ "choco": "hwmonitor",
+ "content": "HWMonitor",
+ "description": "HWMonitor is a hardware monitoring program that reads PC systems main health sensors.",
+ "link": "https://www.cpuid.com/softwares/hwmonitor.html",
+ "winget": "CPUID.HWMonitor"
+ },
+ "WPFInstallimageglass": {
+ "category": "Multimedia Tools",
+ "choco": "imageglass",
+ "content": "ImageGlass (Image Viewer)",
+ "description": "ImageGlass is a versatile image viewer with support for various image formats and a focus on simplicity and speed.",
+ "link": "https://imageglass.org/",
+ "winget": "DuongDieuPhap.ImageGlass"
+ },
+ "WPFInstallimgburn": {
+ "category": "Multimedia Tools",
+ "choco": "imgburn",
+ "content": "ImgBurn",
+ "description": "ImgBurn is a lightweight CD, DVD, HD-DVD, and Blu-ray burning application with advanced features for creating and burning disc images.",
+ "link": "http://www.imgburn.com/",
+ "winget": "LIGHTNINGUK.ImgBurn"
+ },
+ "WPFInstallinkscape": {
+ "category": "Multimedia Tools",
+ "choco": "inkscape",
+ "content": "Inkscape",
+ "description": "Inkscape is a powerful open-source vector graphics editor, suitable for tasks such as illustrations, icons, logos, and more.",
+ "link": "https://inkscape.org/",
+ "winget": "Inkscape.Inkscape"
+ },
+ "WPFInstallitch": {
+ "category": "Games",
+ "choco": "itch",
+ "content": "Itch.io",
+ "description": "Itch.io is a digital distribution platform for indie games and creative projects.",
+ "link": "https://itch.io/",
+ "winget": "ItchIo.Itch"
+ },
+ "WPFInstallitunes": {
+ "category": "Multimedia Tools",
+ "choco": "itunes",
+ "content": "iTunes",
+ "description": "iTunes is a media player, media library, and online radio broadcaster application developed by Apple Inc.",
+ "link": "https://www.apple.com/itunes/",
+ "winget": "Apple.iTunes"
+ },
+ "WPFInstalljami": {
+ "category": "Communications",
+ "choco": "jami",
+ "content": "Jami",
+ "description": "Jami is a secure and privacy-focused communication platform that offers audio and video calls, messaging, and file sharing.",
+ "link": "https://jami.net/",
+ "winget": "SFLinux.Jami"
+ },
+ "WPFInstalljava8": {
+ "category": "Development",
+ "choco": "corretto8jdk",
+ "content": "Amazon Corretto 8 (LTS)",
+ "description": "Amazon Corretto is a no-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).",
+ "link": "https://aws.amazon.com/corretto",
+ "winget": "Amazon.Corretto.8.JDK"
+ },
+ "WPFInstalljava11": {
+ "category": "Development",
+ "choco": "corretto11jdk",
+ "content": "Amazon Corretto 11 (LTS)",
+ "description": "Amazon Corretto is a no-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).",
+ "link": "https://aws.amazon.com/corretto",
+ "winget": "Amazon.Corretto.11.JDK"
+ },
+ "WPFInstalljava17": {
+ "category": "Development",
+ "choco": "corretto17jdk",
+ "content": "Amazon Corretto 17 (LTS)",
+ "description": "Amazon Corretto is a no-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).",
+ "link": "https://aws.amazon.com/corretto",
+ "winget": "Amazon.Corretto.17.JDK"
+ },
+ "WPFInstalljava21": {
+ "category": "Development",
+ "choco": "corretto21jdk",
+ "content": "Amazon Corretto 21 (LTS)",
+ "description": "Amazon Corretto is a no-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).",
+ "link": "https://aws.amazon.com/corretto",
+ "winget": "Amazon.Corretto.21.JDK"
+ },
+ "WPFInstalljdownloader": {
+ "category": "Utilities",
+ "choco": "jdownloader",
+ "content": "JDownloader",
+ "description": "JDownloader is a feature-rich download manager with support for various file hosting services.",
+ "link": "http://jdownloader.org/",
+ "winget": "AppWork.JDownloader"
+ },
+ "WPFInstalljellyfinmediaplayer": {
+ "category": "Multimedia Tools",
+ "choco": "jellyfin-media-player",
+ "content": "Jellyfin Media Player",
+ "description": "Jellyfin Media Player is a client application for the Jellyfin media server, providing access to your media library.",
+ "link": "https://github.com/jellyfin/jellyfin-media-player",
+ "winget": "Jellyfin.JellyfinMediaPlayer"
+ },
+ "WPFInstalljellyfinserver": {
+ "category": "Multimedia Tools",
+ "choco": "jellyfin",
+ "content": "Jellyfin Server",
+ "description": "Jellyfin Server is an open-source media server software, allowing you to organize and stream your media library.",
+ "link": "https://jellyfin.org/",
+ "winget": "Jellyfin.Server"
+ },
+ "WPFInstalljetbrains": {
+ "category": "Development",
+ "choco": "jetbrainstoolbox",
+ "content": "Jetbrains Toolbox",
+ "description": "Jetbrains Toolbox is a platform for easy installation and management of JetBrains developer tools.",
+ "link": "https://www.jetbrains.com/toolbox/",
+ "winget": "JetBrains.Toolbox"
+ },
+ "WPFInstalljoplin": {
+ "category": "Document",
+ "choco": "joplin",
+ "content": "Joplin (FOSS Notes)",
+ "description": "Joplin is an open-source note-taking and to-do application with synchronization capabilities.",
+ "link": "https://joplinapp.org/",
+ "winget": "Joplin.Joplin"
+ },
+ "WPFInstalljpegview": {
+ "category": "Utilities",
+ "choco": "jpegview",
+ "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",
+ "link": "https://github.com/sylikc/jpegview",
+ "winget": "sylikc.JPEGView"
+ },
+ "WPFInstallkdeconnect": {
+ "category": "Utilities",
+ "choco": "kdeconnect-kde",
+ "content": "KDE Connect",
+ "description": "KDE Connect allows seamless integration between your KDE desktop and mobile devices.",
+ "link": "https://community.kde.org/KDEConnect",
+ "winget": "KDE.KDEConnect"
+ },
+ "WPFInstallkdenlive": {
+ "category": "Multimedia Tools",
+ "choco": "kdenlive",
+ "content": "Kdenlive (Video Editor)",
+ "description": "Kdenlive is an open-source video editing software with powerful features for creating and editing professional-quality videos.",
+ "link": "https://kdenlive.org/",
+ "winget": "KDE.Kdenlive"
+ },
+ "WPFInstallkeepass": {
+ "category": "Utilities",
+ "choco": "keepassxc",
+ "content": "KeePassXC",
+ "description": "KeePassXC is a cross-platform, open-source password manager with strong encryption features.",
+ "link": "https://keepassxc.org/",
+ "winget": "KeePassXCTeam.KeePassXC"
+ },
+ "WPFInstallklite": {
+ "category": "Multimedia Tools",
+ "choco": "k-litecodecpack-standard",
+ "content": "K-Lite Codec Standard",
+ "description": "K-Lite Codec Pack Standard is a collection of audio and video codecs and related tools, providing essential components for media playback.",
+ "link": "https://www.codecguide.com/",
+ "winget": "CodecGuide.K-LiteCodecPack.Standard"
+ },
+ "WPFInstallkodi": {
+ "category": "Multimedia Tools",
+ "choco": "kodi",
+ "content": "Kodi Media Center",
+ "description": "Kodi is an open-source media center application that allows you to play and view most videos, music, podcasts, and other digital media files.",
+ "link": "https://kodi.tv/",
+ "winget": "XBMCFoundation.Kodi"
+ },
+ "WPFInstallkrita": {
+ "category": "Multimedia Tools",
+ "choco": "krita",
+ "content": "Krita (Image Editor)",
+ "description": "Krita is a powerful open-source painting application. It is designed for concept artists, illustrators, matte and texture artists, and the VFX industry.",
+ "link": "https://krita.org/en/features/",
+ "winget": "KDE.Krita"
+ },
+ "WPFInstalllazygit": {
+ "category": "Development",
+ "choco": "lazygit",
+ "content": "Lazygit",
+ "description": "Simple terminal UI for git commands",
+ "link": "https://github.com/jesseduffield/lazygit/",
+ "winget": "JesseDuffield.lazygit"
+ },
+ "WPFInstalllibreoffice": {
+ "category": "Document",
+ "choco": "libreoffice-fresh",
+ "content": "LibreOffice",
+ "description": "LibreOffice is a powerful and free office suite, compatible with other major office suites.",
+ "link": "https://www.libreoffice.org/",
+ "winget": "TheDocumentFoundation.LibreOffice"
+ },
+ "WPFInstalllibrewolf": {
+ "category": "Browsers",
+ "choco": "librewolf",
+ "content": "LibreWolf",
+ "description": "LibreWolf is a privacy-focused web browser based on Firefox, with additional privacy and security enhancements.",
+ "link": "https://librewolf-community.gitlab.io/",
+ "winget": "LibreWolf.LibreWolf"
+ },
+ "WPFInstalllinkshellextension": {
+ "category": "Utilities",
+ "choco": "linkshellextension",
+ "content": "Link Shell extension",
+ "description": "Link Shell Extension (LSE) provides for the creation of Hardlinks, Junctions, Volume Mountpoints, Symbolic Links, a folder cloning process that utilises Hardlinks or Symbolic Links and a copy process taking care of Junctions, Symbolic Links, and Hardlinks. LSE, as its name implies is implemented as a Shell extension and is accessed from Windows Explorer, or similar file/folder managers.",
+ "link": "https://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html",
+ "winget": "HermannSchinagl.LinkShellExtension"
+ },
+ "WPFInstalllinphone": {
+ "category": "Communications",
+ "choco": "linphone",
+ "content": "Linphone",
+ "description": "Linphone is an open-source voice over IP (VoIPservice that allows for audio and video calls, messaging, and more.",
+ "link": "https://www.linphone.org/",
+ "winget": "BelledonneCommunications.Linphone"
+ },
+ "WPFInstalllivelywallpaper": {
+ "category": "Utilities",
+ "choco": "lively",
+ "content": "Lively Wallpaper",
+ "description": "Free and open-source software that allows users to set animated desktop wallpapers and screensavers.",
+ "link": "https://www.rocksdanister.com/lively/",
+ "winget": "rocksdanister.LivelyWallpaper"
+ },
+ "WPFInstalllocalsend": {
+ "category": "Utilities",
+ "choco": "localsend.install",
+ "content": "LocalSend",
+ "description": "An open source cross-platform alternative to AirDrop.",
+ "link": "https://localsend.org/",
+ "winget": "LocalSend.LocalSend"
+ },
+ "WPFInstalllockhunter": {
+ "category": "Utilities",
+ "choco": "lockhunter",
+ "content": "LockHunter",
+ "description": "LockHunter is a free tool to delete files blocked by something you do not know.",
+ "link": "https://lockhunter.com/",
+ "winget": "CrystalRich.LockHunter"
+ },
+ "WPFInstalllogseq": {
+ "category": "Document",
+ "choco": "logseq",
+ "content": "Logseq",
+ "description": "Logseq is a versatile knowledge management and note-taking application designed for the digital thinker. With a focus on the interconnectedness of ideas, Logseq allows users to seamlessly organize their thoughts through a combination of hierarchical outlines and bi-directional linking. It supports both structured and unstructured content, enabling users to create a personalized knowledge graph that adapts to their evolving ideas and insights.",
+ "link": "https://logseq.com/",
+ "winget": "Logseq.Logseq"
+ },
+ "WPFInstallmalwarebytes": {
+ "category": "Utilities",
+ "choco": "malwarebytes",
+ "content": "Malwarebytes",
+ "description": "Malwarebytes is an anti-malware software that provides real-time protection against threats.",
+ "link": "https://www.malwarebytes.com/",
+ "winget": "Malwarebytes.Malwarebytes"
+ },
+ "WPFInstallmasscode": {
+ "category": "Document",
+ "choco": "na",
+ "content": "massCode (Snippet Manager)",
+ "description": "massCode is a fast and efficient open-source code snippet manager for developers.",
+ "link": "https://masscode.io/",
+ "winget": "antonreshetov.massCode"
+ },
+ "WPFInstallmatrix": {
+ "category": "Communications",
+ "choco": "element-desktop",
+ "content": "Element",
+ "description": "Element is a client for Matrix—an open network for secure, decentralized communication.",
+ "link": "https://element.io/",
+ "winget": "Element.Element"
+ },
+ "WPFInstallmeld": {
+ "category": "Utilities",
+ "choco": "meld",
+ "content": "Meld",
+ "description": "Meld is a visual diff and merge tool for files and directories.",
+ "link": "https://meldmerge.org/",
+ "winget": "Meld.Meld"
+ },
+ "WPFInstallModernFlyouts": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "Modern Flyouts",
+ "description": "An open source, modern, Fluent Design-based set of flyouts for Windows.",
+ "link": "https://github.com/ModernFlyouts-Community/ModernFlyouts/",
+ "winget": "ModernFlyouts.ModernFlyouts"
+ },
+ "WPFInstallmonitorian": {
+ "category": "Utilities",
+ "choco": "monitorian",
+ "content": "Monitorian",
+ "description": "Monitorian is a utility for adjusting monitor brightness and contrast on Windows.",
+ "link": "https://github.com/emoacht/Monitorian",
+ "winget": "emoacht.Monitorian"
+ },
+ "WPFInstallmoonlight": {
+ "category": "Games",
+ "choco": "moonlight-qt",
+ "content": "Moonlight/GameStream Client",
+ "description": "Moonlight/GameStream Client allows you to stream PC games to other devices over your local network.",
+ "link": "https://moonlight-stream.org/",
+ "winget": "MoonlightGameStreamingProject.Moonlight"
+ },
+ "WPFInstallMotrix": {
+ "category": "Utilities",
+ "choco": "motrix",
+ "content": "Motrix Download Manager",
+ "description": "A full-featured download manager.",
+ "link": "https://motrix.app/",
+ "winget": "agalwood.Motrix"
+ },
+ "WPFInstallmpc": {
+ "category": "Multimedia Tools",
+ "choco": "mpc-hc",
+ "content": "Media Player Classic (Video Player)",
+ "description": "Media Player Classic is a lightweight, open-source media player that supports a wide range of audio and video formats. It includes features like customizable toolbars and support for subtitles.",
+ "link": "https://mpc-hc.org/",
+ "winget": "clsid2.mpc-hc"
+ },
+ "WPFInstallmremoteng": {
+ "category": "Pro Tools",
+ "choco": "mremoteng",
+ "content": "mRemoteNG",
+ "description": "mRemoteNG is a free and open-source remote connections manager. It allows you to view and manage multiple remote sessions in a single interface.",
+ "link": "https://mremoteng.org/",
+ "winget": "mRemoteNG.mRemoteNG"
+ },
+ "WPFInstallmsedgeredirect": {
+ "category": "Utilities",
+ "choco": "msedgeredirect",
+ "content": "MSEdgeRedirect",
+ "description": "A Tool to Redirect News, Search, Widgets, Weather, and More to Your Default Browser.",
+ "link": "https://github.com/rcmaehl/MSEdgeRedirect",
+ "winget": "rcmaehl.MSEdgeRedirect"
+ },
+ "WPFInstallmsiafterburner": {
+ "category": "Utilities",
+ "choco": "msiafterburner",
+ "content": "MSI Afterburner",
+ "description": "MSI Afterburner is a graphics card overclocking utility with advanced features.",
+ "link": "https://www.msi.com/Landing/afterburner",
+ "winget": "Guru3D.Afterburner"
+ },
+ "WPFInstallmullvadvpn": {
+ "category": "Pro Tools",
+ "choco": "mullvad-app",
+ "content": "Mullvad VPN",
+ "description": "This is the VPN client software for the Mullvad VPN service.",
+ "link": "https://github.com/mullvad/mullvadvpn-app",
+ "winget": "MullvadVPN.MullvadVPN"
+ },
+ "WPFInstallBorderlessGaming": {
+ "category": "Utilities",
+ "choco": "borderlessgaming",
+ "content": "Borderless Gaming",
+ "description": "Play your favorite games in a borderless window; no more time consuming alt-tabs.",
+ "link": "https://github.com/Codeusa/Borderless-Gaming",
+ "winget": "Codeusa.BorderlessGaming"
+ },
+ "WPFInstallEqualizerAPO": {
+ "category": "Multimedia Tools",
+ "choco": "equalizerapo",
+ "content": "Equalizer APO",
+ "description": "Equalizer APO is a parametric / graphic equalizer for Windows.",
+ "link": "https://sourceforge.net/projects/equalizerapo",
+ "winget": "na"
+ },
+ "WPFInstallCompactGUI": {
+ "category": "Utilities",
+ "choco": "compactgui",
+ "content": "Compact GUI",
+ "description": "Transparently compress active games and programs using Windows 10/11 APIs",
+ "link": "https://github.com/IridiumIO/CompactGUI",
+ "winget": "IridiumIO.CompactGUI"
+ },
+ "WPFInstallExifCleaner": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "ExifCleaner",
+ "description": "Desktop app to clean metadata from images, videos, PDFs, and other files.",
+ "link": "https://github.com/szTheory/exifcleaner",
+ "winget": "szTheory.exifcleaner"
+ },
+ "WPFInstallmullvadbrowser": {
+ "category": "Browsers",
+ "choco": "na",
+ "content": "Mullvad Browser",
+ "description": "Mullvad Browser is a privacy-focused web browser, developed in partnership with the Tor Project.",
+ "link": "https://mullvad.net/browser",
+ "winget": "MullvadVPN.MullvadBrowser"
+ },
+ "WPFInstallmusescore": {
+ "category": "Multimedia Tools",
+ "choco": "musescore",
+ "content": "MuseScore",
+ "description": "Create, play back and print beautiful sheet music with free and easy to use music notation software MuseScore.",
+ "link": "https://musescore.org/en",
+ "winget": "Musescore.Musescore"
+ },
+ "WPFInstallmusicbee": {
+ "category": "Multimedia Tools",
+ "choco": "musicbee",
+ "content": "MusicBee (Music Player)",
+ "description": "MusicBee is a customizable music player with support for various audio formats. It includes features like an integrated search function, tag editing, and more.",
+ "link": "https://getmusicbee.com/",
+ "winget": "MusicBee.MusicBee"
+ },
+ "WPFInstallmp3tag": {
+ "category": "Multimedia Tools",
+ "choco": "mp3tag",
+ "content": "Mp3tag (Metadata Audio Editor)",
+ "description": "Mp3tag is a powerful and yet easy-to-use tool to edit metadata of common audio formats.",
+ "link": "https://www.mp3tag.de/en/",
+ "winget": "Mp3tag.Mp3tag"
+ },
+ "WPFInstalltagscanner": {
+ "category": "Multimedia Tools",
+ "choco": "tagscanner",
+ "content": "TagScanner (Tag Scanner)",
+ "description": "TagScanner is a powerful tool for organizing and managing your music collection",
+ "link": "https://www.xdlab.ru/en/",
+ "winget": "SergeySerkov.TagScanner"
+ },
+ "WPFInstallnanazip": {
+ "category": "Utilities",
+ "choco": "nanazip",
+ "content": "NanaZip",
+ "description": "NanaZip is a fast and efficient file compression and decompression tool.",
+ "link": "https://github.com/M2Team/NanaZip",
+ "winget": "M2Team.NanaZip"
+ },
+ "WPFInstallnetbird": {
+ "category": "Pro Tools",
+ "choco": "netbird",
+ "content": "NetBird",
+ "description": "NetBird is a Open Source alternative comparable to TailScale that can be connected to a selfhosted Server.",
+ "link": "https://netbird.io/",
+ "winget": "netbird"
+ },
+ "WPFInstallnaps2": {
+ "category": "Document",
+ "choco": "naps2",
+ "content": "NAPS2 (Document Scanner)",
+ "description": "NAPS2 is a document scanning application that simplifies the process of creating electronic documents.",
+ "link": "https://www.naps2.com/",
+ "winget": "Cyanfish.NAPS2"
+ },
+ "WPFInstallneofetchwin": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Neofetch",
+ "description": "Neofetch is a command-line utility for displaying system information in a visually appealing way.",
+ "link": "https://github.com/nepnep39/neofetch-win",
+ "winget": "nepnep.neofetch-win"
+ },
+ "WPFInstallneovim": {
+ "category": "Development",
+ "choco": "neovim",
+ "content": "Neovim",
+ "description": "Neovim is a highly extensible text editor and an improvement over the original Vim editor.",
+ "link": "https://neovim.io/",
+ "winget": "Neovim.Neovim"
+ },
+ "WPFInstallnextclouddesktop": {
+ "category": "Utilities",
+ "choco": "nextcloud-client",
+ "content": "Nextcloud Desktop",
+ "description": "Nextcloud Desktop is the official desktop client for the Nextcloud file synchronization and sharing platform.",
+ "link": "https://nextcloud.com/install/#install-clients",
+ "winget": "Nextcloud.NextcloudDesktop"
+ },
+ "WPFInstallnglide": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "nGlide (3dfx compatibility)",
+ "description": "nGlide is a 3Dfx Voodoo Glide wrapper. It allows you to play games that use Glide API on modern graphics cards without the need for a 3Dfx Voodoo graphics card.",
+ "link": "http://www.zeus-software.com/downloads/nglide",
+ "winget": "ZeusSoftware.nGlide"
+ },
+ "WPFInstallnmap": {
+ "category": "Pro Tools",
+ "choco": "nmap",
+ "content": "Nmap",
+ "description": "Nmap (Network Mapper) is an open-source tool for network exploration and security auditing. It discovers devices on a network and provides information about their ports and services.",
+ "link": "https://nmap.org/",
+ "winget": "Insecure.Nmap"
+ },
+ "WPFInstallnodejs": {
+ "category": "Development",
+ "choco": "nodejs",
+ "content": "NodeJS",
+ "description": "NodeJS is a JavaScript runtime built on Chrome's V8 JavaScript engine for building server-side and networking applications.",
+ "link": "https://nodejs.org/",
+ "winget": "OpenJS.NodeJS"
+ },
+ "WPFInstallnodejslts": {
+ "category": "Development",
+ "choco": "nodejs-lts",
+ "content": "NodeJS LTS",
+ "description": "NodeJS LTS provides Long-Term Support releases for stable and reliable server-side JavaScript development.",
+ "link": "https://nodejs.org/",
+ "winget": "OpenJS.NodeJS.LTS"
+ },
+ "WPFInstallnomacs": {
+ "category": "Multimedia Tools",
+ "choco": "nomacs",
+ "content": "Nomacs (Image viewer)",
+ "description": "Nomacs is a free, open-source image viewer that supports multiple platforms. It features basic image editing capabilities and supports a variety of image formats.",
+ "link": "https://nomacs.org/",
+ "winget": "nomacs.nomacs"
+ },
+ "WPFInstallnotepadplus": {
+ "category": "Document",
+ "choco": "notepadplusplus",
+ "content": "Notepad++",
+ "description": "Notepad++ is a free, open-source code editor and Notepad replacement with support for multiple languages.",
+ "link": "https://notepad-plus-plus.org/",
+ "winget": "Notepad++.Notepad++"
+ },
+ "WPFInstallnuget": {
+ "category": "Microsoft Tools",
+ "choco": "nuget.commandline",
+ "content": "NuGet",
+ "description": "NuGet is a package manager for the .NET framework, enabling developers to manage and share libraries in their .NET applications.",
+ "link": "https://www.nuget.org/",
+ "winget": "Microsoft.NuGet"
+ },
+ "WPFInstallnushell": {
+ "category": "Utilities",
+ "choco": "nushell",
+ "content": "Nushell",
+ "description": "Nushell is a new shell that takes advantage of modern hardware and systems to provide a powerful, expressive, and fast experience.",
+ "link": "https://www.nushell.sh/",
+ "winget": "Nushell.Nushell"
+ },
+ "WPFInstallnvclean": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "NVCleanstall",
+ "description": "NVCleanstall is a tool designed to customize NVIDIA driver installations, allowing advanced users to control more aspects of the installation process.",
+ "link": "https://www.techpowerup.com/nvcleanstall/",
+ "winget": "TechPowerUp.NVCleanstall"
+ },
+ "WPFInstallnvm": {
+ "category": "Development",
+ "choco": "nvm",
+ "content": "Node Version Manager",
+ "description": "Node Version Manager (NVM) for Windows allows you to easily switch between multiple Node.js versions.",
+ "link": "https://github.com/coreybutler/nvm-windows",
+ "winget": "CoreyButler.NVMforWindows"
+ },
+ "WPFInstallobs": {
+ "category": "Multimedia Tools",
+ "choco": "obs-studio",
+ "content": "OBS Studio",
+ "description": "OBS Studio is a free and open-source software for video recording and live streaming. It supports real-time video/audio capturing and mixing, making it popular among content creators.",
+ "link": "https://obsproject.com/",
+ "winget": "OBSProject.OBSStudio"
+ },
+ "WPFInstallobsidian": {
+ "category": "Document",
+ "choco": "obsidian",
+ "content": "Obsidian",
+ "description": "Obsidian is a powerful note-taking and knowledge management application.",
+ "link": "https://obsidian.md/",
+ "winget": "Obsidian.Obsidian"
+ },
+ "WPFInstallokular": {
+ "category": "Document",
+ "choco": "okular",
+ "content": "Okular",
+ "description": "Okular is a versatile document viewer with advanced features.",
+ "link": "https://okular.kde.org/",
+ "winget": "KDE.Okular"
+ },
+ "WPFInstallonedrive": {
+ "category": "Microsoft Tools",
+ "choco": "onedrive",
+ "content": "OneDrive",
+ "description": "OneDrive is a cloud storage service provided by Microsoft, allowing users to store and share files securely across devices.",
+ "link": "https://onedrive.live.com/",
+ "winget": "Microsoft.OneDrive"
+ },
+ "WPFInstallonlyoffice": {
+ "category": "Document",
+ "choco": "onlyoffice",
+ "content": "ONLYOffice Desktop",
+ "description": "ONLYOffice Desktop is a comprehensive office suite for document editing and collaboration.",
+ "link": "https://www.onlyoffice.com/desktop.aspx",
+ "winget": "ONLYOFFICE.DesktopEditors"
+ },
+ "WPFInstallOPAutoClicker": {
+ "category": "Utilities",
+ "choco": "autoclicker",
+ "content": "OPAutoClicker",
+ "description": "A full-fledged autoclicker with two modes of autoclicking, at your dynamic cursor location or at a prespecified location.",
+ "link": "https://www.opautoclicker.com",
+ "winget": "OPAutoClicker.OPAutoClicker"
+ },
+ "WPFInstallopenhashtab": {
+ "category": "Utilities",
+ "choco": "openhashtab",
+ "content": "OpenHashTab",
+ "description": "OpenHashTab is a shell extension for conveniently calculating and checking file hashes from file properties.",
+ "link": "https://github.com/namazso/OpenHashTab/",
+ "winget": "namazso.OpenHashTab"
+ },
+ "WPFInstallopenoffice": {
+ "category": "Document",
+ "choco": "openoffice",
+ "content": "Apache OpenOffice",
+ "description": "Apache OpenOffice is an open-source office software suite for word processing, spreadsheets, presentations, and more.",
+ "link": "https://www.openoffice.org/",
+ "winget": "Apache.OpenOffice"
+ },
+ "WPFInstallopenrgb": {
+ "category": "Utilities",
+ "choco": "openrgb",
+ "content": "OpenRGB",
+ "description": "OpenRGB is an open-source RGB lighting control software designed to manage and control RGB lighting for various components and peripherals.",
+ "link": "https://openrgb.org/",
+ "winget": "CalcProgrammer1.OpenRGB"
+ },
+ "WPFInstallopenscad": {
+ "category": "Multimedia Tools",
+ "choco": "openscad",
+ "content": "OpenSCAD",
+ "description": "OpenSCAD is a free and open-source script-based 3D CAD modeler. It is especially useful for creating parametric designs for 3D printing.",
+ "link": "https://www.openscad.org/",
+ "winget": "OpenSCAD.OpenSCAD"
+ },
+ "WPFInstallopenshell": {
+ "category": "Utilities",
+ "choco": "open-shell",
+ "content": "Open Shell (Start Menu)",
+ "description": "Open Shell is a Windows Start Menu replacement with enhanced functionality and customization options.",
+ "link": "https://github.com/Open-Shell/Open-Shell-Menu",
+ "winget": "Open-Shell.Open-Shell-Menu"
+ },
+ "WPFInstallOpenVPN": {
+ "category": "Pro Tools",
+ "choco": "openvpn-connect",
+ "content": "OpenVPN Connect",
+ "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/",
+ "winget": "OpenVPNTechnologies.OpenVPNConnect"
+ },
+ "WPFInstallOVirtualBox": {
+ "category": "Utilities",
+ "choco": "virtualbox",
+ "content": "Oracle VirtualBox",
+ "description": "Oracle VirtualBox is a powerful and free open-source virtualization tool for x86 and AMD64/Intel64 architectures.",
+ "link": "https://www.virtualbox.org/",
+ "winget": "Oracle.VirtualBox"
+ },
+ "WPFInstallownclouddesktop": {
+ "category": "Utilities",
+ "choco": "owncloud-client",
+ "content": "ownCloud Desktop",
+ "description": "ownCloud Desktop is the official desktop client for the ownCloud file synchronization and sharing platform.",
+ "link": "https://owncloud.com/desktop-app/",
+ "winget": "ownCloud.ownCloudDesktop"
+ },
+ "WPFInstallPaintdotnet": {
+ "category": "Multimedia Tools",
+ "choco": "paint.net",
+ "content": "Paint.NET",
+ "description": "Paint.NET is a free image and photo editing software for Windows. It features an intuitive user interface and supports a wide range of powerful editing tools.",
+ "link": "https://www.getpaint.net/",
+ "winget": "dotPDN.PaintDotNet"
+ },
+ "WPFInstallparsec": {
+ "category": "Utilities",
+ "choco": "parsec",
+ "content": "Parsec",
+ "description": "Parsec is a low-latency, high-quality remote desktop sharing application for collaborating and gaming across devices.",
+ "link": "https://parsec.app/",
+ "winget": "Parsec.Parsec"
+ },
+ "WPFInstallpdf24creator": {
+ "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/",
+ "winget": "geeksoftwareGmbH.PDF24Creator"
+ },
+ "WPFInstallpdfsam": {
+ "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"
+ },
+ "WPFInstallpeazip": {
+ "category": "Utilities",
+ "choco": "peazip",
+ "content": "PeaZip",
+ "description": "PeaZip is a free, open-source file archiver utility that supports multiple archive formats and provides encryption features.",
+ "link": "https://peazip.github.io/",
+ "winget": "Giorgiotani.Peazip"
+ },
+ "WPFInstallpiimager": {
+ "category": "Utilities",
+ "choco": "rpi-imager",
+ "content": "Raspberry Pi Imager",
+ "description": "Raspberry Pi Imager is a utility for writing operating system images to SD cards for Raspberry Pi devices.",
+ "link": "https://www.raspberrypi.com/software/",
+ "winget": "RaspberryPiFoundation.RaspberryPiImager"
+ },
+ "WPFInstallplaynite": {
+ "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"
+ },
+ "WPFInstallplex": {
+ "category": "Multimedia Tools",
+ "choco": "plexmediaserver",
+ "content": "Plex Media Server",
+ "description": "Plex Media Server is a media server software that allows you to organize and stream your media library. It supports various media formats and offers a wide range of features.",
+ "link": "https://www.plex.tv/your-media/",
+ "winget": "Plex.PlexMediaServer"
+ },
+ "WPFInstallplexdesktop": {
+ "category": "Multimedia Tools",
+ "choco": "plex",
+ "content": "Plex Desktop",
+ "description": "Plex Desktop for Windows is the front end for Plex Media Server.",
+ "link": "https://www.plex.tv",
+ "winget": "Plex.Plex"
+ },
+ "WPFInstallPortmaster": {
+ "category": "Pro Tools",
+ "choco": "portmaster",
+ "content": "Portmaster",
+ "description": "Portmaster is a free and open-source application that puts you back in charge over all your computers network connections.",
+ "link": "https://safing.io/",
+ "winget": "Safing.Portmaster"
+ },
+ "WPFInstallposh": {
+ "category": "Development",
+ "choco": "oh-my-posh",
+ "content": "Oh My Posh (Prompt)",
+ "description": "Oh My Posh is a cross-platform prompt theme engine for any shell.",
+ "link": "https://ohmyposh.dev/",
+ "winget": "JanDeDobbeleer.OhMyPosh"
+ },
+ "WPFInstallpostman": {
+ "category": "Development",
+ "choco": "postman",
+ "content": "Postman",
+ "description": "Postman is a collaboration platform for API development that simplifies the process of developing APIs.",
+ "link": "https://www.postman.com/",
+ "winget": "Postman.Postman"
+ },
+ "WPFInstallpowerautomate": {
+ "category": "Microsoft Tools",
+ "choco": "powerautomatedesktop",
+ "content": "Power Automate",
+ "description": "Using Power Automate Desktop you can automate tasks on the desktop as well as the Web.",
+ "link": "https://www.microsoft.com/en-us/power-platform/products/power-automate",
+ "winget": "Microsoft.PowerAutomateDesktop"
+ },
+ "WPFInstallpowerbi": {
+ "category": "Microsoft Tools",
+ "choco": "powerbi",
+ "content": "Power BI",
+ "description": "Create stunning reports and visualizations with Power BI Desktop. It puts visual analytics at your fingertips with intuitive report authoring. Drag-and-drop to place content exactly where you want it on the flexible and fluid canvas. Quickly discover patterns as you explore a single unified view of linked, interactive visualizations.",
+ "link": "https://www.microsoft.com/en-us/power-platform/products/power-bi/",
+ "winget": "Microsoft.PowerBI"
+ },
+ "WPFInstallpowershell": {
+ "category": "Microsoft Tools",
+ "choco": "powershell-core",
+ "content": "PowerShell",
+ "description": "PowerShell is a task automation framework and scripting language designed for system administrators, offering powerful command-line capabilities.",
+ "link": "https://github.com/PowerShell/PowerShell",
+ "winget": "Microsoft.PowerShell"
+ },
+ "WPFInstallpowertoys": {
+ "category": "Microsoft Tools",
+ "choco": "powertoys",
+ "content": "PowerToys",
+ "description": "PowerToys is a set of utilities for power users to enhance productivity, featuring tools like FancyZones, PowerRename, and more.",
+ "link": "https://github.com/microsoft/PowerToys",
+ "winget": "Microsoft.PowerToys"
+ },
+ "WPFInstallprismlauncher": {
+ "category": "Games",
+ "choco": "prismlauncher",
+ "content": "Prism Launcher",
+ "description": "Prism Launcher is a game launcher and manager designed to provide a clean and intuitive interface for organizing and launching your games.",
+ "link": "https://prismlauncher.org/",
+ "winget": "PrismLauncher.PrismLauncher"
+ },
+ "WPFInstallprocesslasso": {
+ "category": "Utilities",
+ "choco": "plasso",
+ "content": "Process Lasso",
+ "description": "Process Lasso is a system optimization and automation tool that improves system responsiveness and stability by adjusting process priorities and CPU affinities.",
+ "link": "https://bitsum.com/",
+ "winget": "BitSum.ProcessLasso"
+ },
+ "WPFInstallspotify": {
+ "category": "Multimedia Tools",
+ "choco": "spotify",
+ "content": "Spotify",
+ "description": "Spotify is a digital music service that gives you access to millions of songs, podcasts, and videos from artists all over the world.",
+ "link": "https://www.spotify.com/",
+ "winget": "Spotify.Spotify"
+ },
+ "WPFInstallprocessmonitor": {
+ "category": "Microsoft Tools",
+ "choco": "procexp",
+ "content": "SysInternals Process Monitor",
+ "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",
+ "winget": "Microsoft.Sysinternals.ProcessMonitor"
+ },
+ "WPFInstallorcaslicer": {
+ "category": "Utilities",
+ "choco": "orcaslicer",
+ "content": "OrcaSlicer",
+ "description": "G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.)",
+ "link": "https://github.com/SoftFever/OrcaSlicer",
+ "winget": "SoftFever.OrcaSlicer"
+ },
+ "WPFInstallprucaslicer": {
+ "category": "Utilities",
+ "choco": "prusaslicer",
+ "content": "PrusaSlicer",
+ "description": "PrusaSlicer is a powerful and easy-to-use slicing software for 3D printing with Prusa 3D printers.",
+ "link": "https://www.prusa3d.com/prusaslicer/",
+ "winget": "Prusa3d.PrusaSlicer"
+ },
+ "WPFInstallpsremoteplay": {
+ "category": "Games",
+ "choco": "ps-remote-play",
+ "content": "PS Remote Play",
+ "description": "PS Remote Play is a free application that allows you to stream games from your PlayStation console to a PC or mobile device.",
+ "link": "https://remoteplay.dl.playstation.net/remoteplay/lang/gb/",
+ "winget": "PlayStation.PSRemotePlay"
+ },
+ "WPFInstallputty": {
+ "category": "Pro Tools",
+ "choco": "putty",
+ "content": "PuTTY",
+ "description": "PuTTY is a free and open-source terminal emulator, serial console, and network file transfer application. It supports various network protocols such as SSH, Telnet, and SCP.",
+ "link": "https://www.chiark.greenend.org.uk/~sgtatham/putty/",
+ "winget": "PuTTY.PuTTY"
+ },
+ "WPFInstallpython3": {
+ "category": "Development",
+ "choco": "python",
+ "content": "Python3",
+ "description": "Python is a versatile programming language used for web development, data analysis, artificial intelligence, and more.",
+ "link": "https://www.python.org/",
+ "winget": "Python.Python.3.12"
+ },
+ "WPFInstallqbittorrent": {
+ "category": "Utilities",
+ "choco": "qbittorrent",
+ "content": "qBittorrent",
+ "description": "qBittorrent is a free and open-source BitTorrent client that aims to provide a feature-rich and lightweight alternative to other torrent clients.",
+ "link": "https://www.qbittorrent.org/",
+ "winget": "qBittorrent.qBittorrent"
+ },
+ "WPFInstalltransmission": {
+ "category": "Utilities",
+ "choco": "transmission",
+ "content": "Transmission",
+ "description": "Transmission is a cross-platform BitTorrent client that is open source, easy, powerful, and lean.",
+ "link": "https://transmissionbt.com/",
+ "winget": "Transmission.Transmission"
+ },
+ "WPFInstalltixati": {
+ "category": "Utilities",
+ "choco": "tixati.portable",
+ "content": "Tixati",
+ "description": "Tixati is a cross-platform BitTorrent client written in C++ that has been designed to be light on system resources.",
+ "link": "https://www.tixati.com/",
+ "winget": "Tixati.Tixati.Portable"
+ },
+ "WPFInstallqtox": {
+ "category": "Communications",
+ "choco": "qtox",
+ "content": "QTox",
+ "description": "QTox is a free and open-source messaging app that prioritizes user privacy and security in its design.",
+ "link": "https://qtox.github.io/",
+ "winget": "Tox.qTox"
+ },
+ "WPFInstallquicklook": {
+ "category": "Utilities",
+ "choco": "quicklook",
+ "content": "Quicklook",
+ "description": "Bring macOS “Quick Look” feature to Windows",
+ "link": "https://github.com/QL-Win/QuickLook",
+ "winget": "QL-Win.QuickLook"
+ },
+ "WPFInstallrainmeter": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Rainmeter",
+ "description": "Rainmeter is a desktop customization tool that allows you to create and share customizable skins for your desktop.",
+ "link": "https://www.rainmeter.net/",
+ "winget": "Rainmeter.Rainmeter"
+ },
+ "WPFInstallrevo": {
+ "category": "Utilities",
+ "choco": "revo-uninstaller",
+ "content": "Revo Uninstaller",
+ "description": "Revo Uninstaller is an advanced uninstaller tool that helps you remove unwanted software and clean up your system.",
+ "link": "https://www.revouninstaller.com/",
+ "winget": "RevoUninstaller.RevoUninstaller"
+ },
+ "WPFInstallWiseProgramUninstaller": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Wise Program Uninstaller (WiseCleaner)",
+ "description": "Wise Program Uninstaller is the perfect solution for uninstalling Windows programs, allowing you to uninstall applications quickly and completely using its simple and user-friendly interface.",
+ "link": "https://www.wisecleaner.com/wise-program-uninstaller.html",
+ "winget": "WiseCleaner.WiseProgramUninstaller"
+ },
+ "WPFInstallrevolt": {
+ "category": "Communications",
+ "choco": "na",
+ "content": "Revolt",
+ "description": "Find your community, connect with the world. Revolt is one of the best ways to stay connected with your friends and community without sacrificing any usability.",
+ "link": "https://revolt.chat/",
+ "winget": "Revolt.RevoltDesktop"
+ },
+ "WPFInstallripgrep": {
+ "category": "Utilities",
+ "choco": "ripgrep",
+ "content": "Ripgrep",
+ "description": "Fast and powerful commandline search tool",
+ "link": "https://github.com/BurntSushi/ripgrep/",
+ "winget": "BurntSushi.ripgrep.MSVC"
+ },
+ "WPFInstallrufus": {
+ "category": "Utilities",
+ "choco": "rufus",
+ "content": "Rufus Imager",
+ "description": "Rufus is a utility that helps format and create bootable USB drives, such as USB keys or pen drives.",
+ "link": "https://rufus.ie/",
+ "winget": "Rufus.Rufus"
+ },
+ "WPFInstallrustdesk": {
+ "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"
+ },
+ "WPFInstallrustlang": {
+ "category": "Development",
+ "choco": "rust",
+ "content": "Rust",
+ "description": "Rust is a programming language designed for safety and performance, particularly focused on systems programming.",
+ "link": "https://www.rust-lang.org/",
+ "winget": "Rustlang.Rust.MSVC"
+ },
+ "WPFInstallsagethumbs": {
+ "category": "Utilities",
+ "choco": "sagethumbs",
+ "content": "SageThumbs",
+ "description": "Provides support for thumbnails in Explorer with more formats.",
+ "link": "https://sagethumbs.en.lo4d.com/windows",
+ "winget": "CherubicSoftware.SageThumbs"
+ },
+ "WPFInstallsamsungmagician": {
+ "category": "Utilities",
+ "choco": "samsung-magician",
+ "content": "Samsung Magician",
+ "description": "Samsung Magician is a utility for managing and optimizing Samsung SSDs.",
+ "link": "https://semiconductor.samsung.com/consumer-storage/magician/",
+ "winget": "Samsung.SamsungMagician"
+ },
+ "WPFInstallsandboxie": {
+ "category": "Utilities",
+ "choco": "sandboxie",
+ "content": "Sandboxie Plus",
+ "description": "Sandboxie Plus is a sandbox-based isolation program that provides enhanced security by running applications in an isolated environment.",
+ "link": "https://github.com/sandboxie-plus/Sandboxie",
+ "winget": "Sandboxie.Plus"
+ },
+ "WPFInstallsdio": {
+ "category": "Utilities",
+ "choco": "sdio",
+ "content": "Snappy Driver Installer Origin",
+ "description": "Snappy Driver Installer Origin is a free and open-source driver updater with a vast driver database for Windows.",
+ "link": "https://sourceforge.net/projects/snappy-driver-installer-origin",
+ "winget": "GlennDelahoy.SnappyDriverInstallerOrigin"
+ },
+ "WPFInstallsession": {
+ "category": "Communications",
+ "choco": "session",
+ "content": "Session",
+ "description": "Session is a private and secure messaging app built on a decentralized network for user privacy and data protection.",
+ "link": "https://getsession.org/",
+ "winget": "Oxen.Session"
+ },
+ "WPFInstallsharex": {
+ "category": "Multimedia Tools",
+ "choco": "sharex",
+ "content": "ShareX (Screenshots)",
+ "description": "ShareX is a free and open-source screen capture and file sharing tool. It supports various capture methods and offers advanced features for editing and sharing screenshots.",
+ "link": "https://getsharex.com/",
+ "winget": "ShareX.ShareX"
+ },
+ "WPFInstallnilesoftShell": {
+ "category": "Utilities",
+ "choco": "nilesoft-shell",
+ "content": "Nilesoft Shell",
+ "description": "Shell is an expanded context menu tool that adds extra functionality and customization options to the Windows context menu.",
+ "link": "https://nilesoft.org/",
+ "winget": "Nilesoft.Shell"
+ },
+ "WPFInstallsidequest": {
+ "category": "Games",
+ "choco": "sidequest",
+ "content": "SideQuestVR",
+ "description": "SideQuestVR is a community-driven platform that enables users to discover, install, and manage virtual reality content on Oculus Quest devices.",
+ "link": "https://sidequestvr.com/",
+ "winget": "SideQuestVR.SideQuest"
+ },
+ "WPFInstallsignal": {
+ "category": "Communications",
+ "choco": "signal",
+ "content": "Signal",
+ "description": "Signal is a privacy-focused messaging app that offers end-to-end encryption for secure and private communication.",
+ "link": "https://signal.org/",
+ "winget": "OpenWhisperSystems.Signal"
+ },
+ "WPFInstallsignalrgb": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "SignalRGB",
+ "description": "SignalRGB lets you control and sync your favorite RGB devices with one free application.",
+ "link": "https://www.signalrgb.com/",
+ "winget": "WhirlwindFX.SignalRgb"
+ },
+ "WPFInstallsimplenote": {
+ "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"
+ },
+ "WPFInstallsimplewall": {
+ "category": "Pro Tools",
+ "choco": "simplewall",
+ "content": "Simplewall",
+ "description": "Simplewall is a free and open-source firewall application for Windows. It allows users to control and manage the inbound and outbound network traffic of applications.",
+ "link": "https://github.com/henrypp/simplewall",
+ "winget": "Henry++.simplewall"
+ },
+ "WPFInstallskype": {
+ "category": "Communications",
+ "choco": "skype",
+ "content": "Skype",
+ "description": "Skype is a widely used communication platform offering video calls, voice calls, and instant messaging services.",
+ "link": "https://www.skype.com/",
+ "winget": "Microsoft.Skype"
+ },
+ "WPFInstallslack": {
+ "category": "Communications",
+ "choco": "slack",
+ "content": "Slack",
+ "description": "Slack is a collaboration hub that connects teams and facilitates communication through channels, messaging, and file sharing.",
+ "link": "https://slack.com/",
+ "winget": "SlackTechnologies.Slack"
+ },
+ "WPFInstallspacedrive": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Spacedrive File Manager",
+ "description": "Spacedrive is a file manager that offers cloud storage integration and file synchronization across devices.",
+ "link": "https://www.spacedrive.com/",
+ "winget": "spacedrive.Spacedrive"
+ },
+ "WPFInstallspacesniffer": {
+ "category": "Utilities",
+ "choco": "spacesniffer",
+ "content": "SpaceSniffer",
+ "description": "A tool application that lets you understand how folders and files are structured on your disks",
+ "link": "http://www.uderzo.it/main_products/space_sniffer/",
+ "winget": "UderzoSoftware.SpaceSniffer"
+ },
+ "WPFInstallspotube": {
+ "category": "Multimedia Tools",
+ "choco": "spotube",
+ "content": "Spotube",
+ "description": "Open source Spotify client that doesn't require Premium nor uses Electron! Available for both desktop & mobile! ",
+ "link": "https://github.com/KRTirtho/spotube",
+ "winget": "KRTirtho.Spotube"
+ },
+ "WPFInstallstarship": {
+ "category": "Development",
+ "choco": "starship",
+ "content": "Starship (Shell Prompt)",
+ "description": "Starship is a minimal, fast, and customizable prompt for any shell.",
+ "link": "https://starship.rs/",
+ "winget": "starship"
+ },
+ "WPFInstallsteam": {
+ "category": "Games",
+ "choco": "steam-client",
+ "content": "Steam",
+ "description": "Steam is a digital distribution platform for purchasing and playing video games, offering multiplayer gaming, video streaming, and more.",
+ "link": "https://store.steampowered.com/about/",
+ "winget": "Valve.Steam"
+ },
+ "WPFInstallstrawberry": {
+ "category": "Multimedia Tools",
+ "choco": "strawberrymusicplayer",
+ "content": "Strawberry (Music Player)",
+ "description": "Strawberry is an open-source music player that focuses on music collection management and audio quality. It supports various audio formats and features a clean user interface.",
+ "link": "https://www.strawberrymusicplayer.org/",
+ "winget": "StrawberryMusicPlayer.Strawberry"
+ },
+ "WPFInstallstremio": {
+ "winget": "Stremio.Stremio",
+ "choco": "stremio",
+ "category": "Multimedia Tools",
+ "content": "Stremio",
+ "link": "https://www.stremio.com/",
+ "description": "Stremio is a media center application that allows users to organize and stream their favorite movies, TV shows, and video content."
+ },
+ "WPFInstallsublimemerge": {
+ "category": "Development",
+ "choco": "sublimemerge",
+ "content": "Sublime Merge",
+ "description": "Sublime Merge is a Git client with advanced features and a beautiful interface.",
+ "link": "https://www.sublimemerge.com/",
+ "winget": "SublimeHQ.SublimeMerge"
+ },
+ "WPFInstallsublimetext": {
+ "category": "Development",
+ "choco": "sublimetext4",
+ "content": "Sublime Text",
+ "description": "Sublime Text is a sophisticated text editor for code, markup, and prose.",
+ "link": "https://www.sublimetext.com/",
+ "winget": "SublimeHQ.SublimeText.4"
+ },
+ "WPFInstallsumatra": {
+ "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"
+ },
+ "WPFInstallpdfgear": {
+ "category": "Document",
+ "choco": "na",
+ "content": "PDFgear",
+ "description": "PDFgear is a piece of full-featured PDF management software for Windows, Mac, and mobile, and it's completely free to use.",
+ "link": "https://www.pdfgear.com/",
+ "winget": "PDFgear.PDFgear"
+ },
+ "WPFInstallsunshine": {
+ "category": "Games",
+ "choco": "sunshine",
+ "content": "Sunshine/GameStream Server",
+ "description": "Sunshine is a GameStream server that allows you to remotely play PC games on Android devices, offering low-latency streaming.",
+ "link": "https://github.com/LizardByte/Sunshine",
+ "winget": "LizardByte.Sunshine"
+ },
+ "WPFInstallsuperf4": {
+ "category": "Utilities",
+ "choco": "superf4",
+ "content": "SuperF4",
+ "description": "SuperF4 is a utility that allows you to terminate programs instantly by pressing a customizable hotkey.",
+ "link": "https://stefansundin.github.io/superf4/",
+ "winget": "StefanSundin.Superf4"
+ },
+ "WPFInstallswift": {
+ "category": "Development",
+ "choco": "na",
+ "content": "Swift toolchain",
+ "description": "Swift is a general-purpose programming language that's approachable for newcomers and powerful for experts.",
+ "link": "https://www.swift.org/",
+ "winget": "Swift.Toolchain"
+ },
+ "WPFInstallsynctrayzor": {
+ "category": "Utilities",
+ "choco": "synctrayzor",
+ "content": "SyncTrayzor",
+ "description": "Windows tray utility / filesystem watcher / launcher for Syncthing",
+ "link": "https://github.com/canton7/SyncTrayzor/",
+ "winget": "SyncTrayzor.SyncTrayzor"
+ },
+ "WPFInstallsqlmanagementstudio": {
+ "category": "Microsoft Tools",
+ "choco": "sql-server-management-studio",
+ "content": "Microsoft SQL Server Management Studio",
+ "description": "SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure, from SQL Server to Azure SQL Database. SSMS provides tools to configure, monitor, and administer instances of SQL Server and databases.",
+ "link": "https://learn.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver16",
+ "winget": "Microsoft.SQLServerManagementStudio"
+ },
+ "WPFInstalltabby": {
+ "category": "Utilities",
+ "choco": "tabby",
+ "content": "Tabby.sh",
+ "description": "Tabby is a highly configurable terminal emulator, SSH and serial client for Windows, macOS and Linux",
+ "link": "https://tabby.sh/",
+ "winget": "Eugeny.Tabby"
+ },
+ "WPFInstalltailscale": {
+ "category": "Utilities",
+ "choco": "tailscale",
+ "content": "Tailscale",
+ "description": "Tailscale is a secure and easy-to-use VPN solution for connecting your devices and networks.",
+ "link": "https://tailscale.com/",
+ "winget": "tailscale.tailscale"
+ },
+ "WPFInstallTcNoAccSwitcher": {
+ "category": "Games",
+ "choco": "tcno-acc-switcher",
+ "content": "TCNO Account Switcher",
+ "description": "A Super-fast account switcher for Steam, Battle.net, Epic Games, Origin, Riot, Ubisoft and many others!",
+ "link": "https://github.com/TCNOco/TcNo-Acc-Switcher",
+ "winget": "TechNobo.TcNoAccountSwitcher"
+ },
+ "WPFInstalltcpview": {
+ "category": "Microsoft Tools",
+ "choco": "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.",
+ "link": "https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview",
+ "winget": "Microsoft.Sysinternals.TCPView"
+ },
+ "WPFInstallteams": {
+ "category": "Communications",
+ "choco": "microsoft-teams",
+ "content": "Teams",
+ "description": "Microsoft Teams is a collaboration platform that integrates with Office 365 and offers chat, video conferencing, file sharing, and more.",
+ "link": "https://www.microsoft.com/en-us/microsoft-teams/group-chat-software",
+ "winget": "Microsoft.Teams"
+ },
+ "WPFInstallteamviewer": {
+ "category": "Utilities",
+ "choco": "teamviewer9",
+ "content": "TeamViewer",
+ "description": "TeamViewer is a popular remote access and support software that allows you to connect to and control remote devices.",
+ "link": "https://www.teamviewer.com/",
+ "winget": "TeamViewer.TeamViewer"
+ },
+ "WPFInstalltelegram": {
+ "category": "Communications",
+ "choco": "telegram",
+ "content": "Telegram",
+ "description": "Telegram is a cloud-based instant messaging app known for its security features, speed, and simplicity.",
+ "link": "https://telegram.org/",
+ "winget": "Telegram.TelegramDesktop"
+ },
+ "WPFInstallunigram": {
+ "category": "Communications",
+ "choco": "na",
+ "content": "Unigram",
+ "description": "Unigram - Telegram for Windows",
+ "link": "https://unigramdev.github.io/",
+ "winget": "Telegram.Unigram"
+ },
+ "WPFInstallterminal": {
+ "category": "Microsoft Tools",
+ "choco": "microsoft-windows-terminal",
+ "content": "Windows Terminal",
+ "description": "Windows Terminal is a modern, fast, and efficient terminal application for command-line users, supporting multiple tabs, panes, and more.",
+ "link": "https://aka.ms/terminal",
+ "winget": "Microsoft.WindowsTerminal"
+ },
+ "WPFInstallThonny": {
+ "category": "Development",
+ "choco": "thonny",
+ "content": "Thonny Python IDE",
+ "description": "Python IDE for beginners.",
+ "link": "https://github.com/thonny/thonny",
+ "winget": "AivarAnnamaa.Thonny"
+ },
+ "WPFInstallMuEditor": {
+ "category": "Development",
+ "choco": "na",
+ "content": "Code With Mu (Mu Editor)",
+ "description": "Mu is a Python code editor for beginner programmers",
+ "link": "https://codewith.mu/",
+ "winget": "Mu.Mu"
+ },
+ "WPFInstallthorium": {
+ "category": "Browsers",
+ "choco": "na",
+ "content": "Thorium Browser AVX2",
+ "description": "Browser built for speed over vanilla chromium. It is built with AVX2 optimizations and is the fastest browser on the market.",
+ "link": "http://thorium.rocks/",
+ "winget": "Alex313031.Thorium.AVX2"
+ },
+ "WPFInstallthunderbird": {
+ "category": "Communications",
+ "choco": "thunderbird",
+ "content": "Thunderbird",
+ "description": "Mozilla Thunderbird is a free and open-source email client, news client, and chat client with advanced features.",
+ "link": "https://www.thunderbird.net/",
+ "winget": "Mozilla.Thunderbird"
+ },
+ "WPFInstallbetterbird": {
+ "category": "Communications",
+ "choco": "betterbird",
+ "content": "Betterbird",
+ "description": "Betterbird is a fork of Mozilla Thunderbird with additional features and bugfixes.",
+ "link": "https://www.betterbird.eu/",
+ "winget": "Betterbird.Betterbird"
+ },
+ "WPFInstalltidal": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "Tidal",
+ "description": "Tidal is a music streaming service known for its high-fidelity audio quality and exclusive content. It offers a vast library of songs and curated playlists.",
+ "link": "https://tidal.com/",
+ "winget": "9NNCB5BS59PH"
+ },
+ "WPFInstalltor": {
+ "category": "Browsers",
+ "choco": "tor-browser",
+ "content": "Tor Browser",
+ "description": "Tor Browser is designed for anonymous web browsing, utilizing the Tor network to protect user privacy and security.",
+ "link": "https://www.torproject.org/",
+ "winget": "TorProject.TorBrowser"
+ },
+ "WPFInstalltotalcommander": {
+ "category": "Utilities",
+ "choco": "TotalCommander",
+ "content": "Total Commander",
+ "description": "Total Commander is a file manager for Windows that provides a powerful and intuitive interface for file management.",
+ "link": "https://www.ghisler.com/",
+ "winget": "Ghisler.TotalCommander"
+ },
+ "WPFInstalltreesize": {
+ "category": "Utilities",
+ "choco": "treesizefree",
+ "content": "TreeSize Free",
+ "description": "TreeSize Free is a disk space manager that helps you analyze and visualize the space usage on your drives.",
+ "link": "https://www.jam-software.com/treesize_free/",
+ "winget": "JAMSoftware.TreeSize.Free"
+ },
+ "WPFInstallttaskbar": {
+ "category": "Utilities",
+ "choco": "translucenttb",
+ "content": "Translucent Taskbar",
+ "description": "Translucent Taskbar is a tool that allows you to customize the transparency of the Windows taskbar.",
+ "link": "https://github.com/TranslucentTB/TranslucentTB",
+ "winget": "9PF4KZ2VN4W9"
+ },
+ "WPFInstalltwinkletray": {
+ "category": "Utilities",
+ "choco": "twinkle-tray",
+ "content": "Twinkle Tray",
+ "description": "Twinkle Tray lets you easily manage the brightness levels of multiple monitors.",
+ "link": "https://twinkletray.com/",
+ "winget": "xanderfrangos.twinkletray"
+ },
+ "WPFInstallubisoft": {
+ "category": "Games",
+ "choco": "ubisoft-connect",
+ "content": "Ubisoft Connect",
+ "description": "Ubisoft Connect is Ubisoft's digital distribution and online gaming service, providing access to Ubisoft's games and services.",
+ "link": "https://ubisoftconnect.com/",
+ "winget": "Ubisoft.Connect"
+ },
+ "WPFInstallungoogled": {
+ "category": "Browsers",
+ "choco": "ungoogled-chromium",
+ "content": "Ungoogled",
+ "description": "Ungoogled Chromium is a version of Chromium without Google's integration for enhanced privacy and control.",
+ "link": "https://github.com/Eloston/ungoogled-chromium",
+ "winget": "eloston.ungoogled-chromium"
+ },
+ "WPFInstallunity": {
+ "category": "Development",
+ "choco": "unityhub",
+ "content": "Unity Game Engine",
+ "description": "Unity is a powerful game development platform for creating 2D, 3D, augmented reality, and virtual reality games.",
+ "link": "https://unity.com/",
+ "winget": "Unity.UnityHub"
+ },
+ "WPFInstallvagrant": {
+ "category": "Development",
+ "choco": "vagrant",
+ "content": "Vagrant",
+ "description": "Vagrant is an open-source tool for building and managing virtualized development environments.",
+ "link": "https://www.vagrantup.com/",
+ "winget": "Hashicorp.Vagrant"
+ },
+ "WPFInstallvc2015_32": {
+ "category": "Microsoft Tools",
+ "choco": "na",
+ "content": "Visual C++ 2015-2022 32-bit",
+ "description": "Visual C++ 2015-2022 32-bit redistributable package installs runtime components of Visual C++ libraries required to run 32-bit applications.",
+ "link": "https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads",
+ "winget": "Microsoft.VCRedist.2015+.x86"
+ },
+ "WPFInstallvc2015_64": {
+ "category": "Microsoft Tools",
+ "choco": "na",
+ "content": "Visual C++ 2015-2022 64-bit",
+ "description": "Visual C++ 2015-2022 64-bit redistributable package installs runtime components of Visual C++ libraries required to run 64-bit applications.",
+ "link": "https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads",
+ "winget": "Microsoft.VCRedist.2015+.x64"
+ },
+ "WPFInstallventoy": {
+ "category": "Pro Tools",
+ "choco": "ventoy",
+ "content": "Ventoy",
+ "description": "Ventoy is an open-source tool for creating bootable USB drives. It supports multiple ISO files on a single USB drive, making it a versatile solution for installing operating systems.",
+ "link": "https://www.ventoy.net/",
+ "winget": "Ventoy.Ventoy"
+ },
+ "WPFInstallvesktop": {
+ "category": "Communications",
+ "choco": "na",
+ "content": "Vesktop",
+ "description": "A cross platform electron-based desktop app aiming to give you a snappier Discord experience with Vencord pre-installed.",
+ "link": "https://github.com/Vencord/Vesktop",
+ "winget": "Vencord.Vesktop"
+ },
+ "WPFInstallviber": {
+ "category": "Communications",
+ "choco": "viber",
+ "content": "Viber",
+ "description": "Viber is a free messaging and calling app with features like group chats, video calls, and more.",
+ "link": "https://www.viber.com/",
+ "winget": "Viber.Viber"
+ },
+ "WPFInstallvideomass": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "Videomass",
+ "description": "Videomass by GianlucaPernigotto is a cross-platform GUI for FFmpeg, streamlining multimedia file processing with batch conversions and user-friendly features.",
+ "link": "https://jeanslack.github.io/Videomass/",
+ "winget": "GianlucaPernigotto.Videomass"
+ },
+ "WPFInstallvisualstudio": {
+ "category": "Development",
+ "choco": "visualstudio2022community",
+ "content": "Visual Studio 2022",
+ "description": "Visual Studio 2022 is an integrated development environment (IDE) for building, debugging, and deploying applications.",
+ "link": "https://visualstudio.microsoft.com/",
+ "winget": "Microsoft.VisualStudio.2022.Community"
+ },
+ "WPFInstallvivaldi": {
+ "category": "Browsers",
+ "choco": "vivaldi",
+ "content": "Vivaldi",
+ "description": "Vivaldi is a highly customizable web browser with a focus on user personalization and productivity features.",
+ "link": "https://vivaldi.com/",
+ "winget": "Vivaldi.Vivaldi"
+ },
+ "WPFInstallvlc": {
+ "category": "Multimedia Tools",
+ "choco": "vlc",
+ "content": "VLC (Video Player)",
+ "description": "VLC Media Player is a free and open-source multimedia player that supports a wide range of audio and video formats. It is known for its versatility and cross-platform compatibility.",
+ "link": "https://www.videolan.org/vlc/",
+ "winget": "VideoLAN.VLC"
+ },
+ "WPFInstallvoicemeeter": {
+ "category": "Multimedia Tools",
+ "choco": "voicemeeter",
+ "content": "Voicemeeter (Audio)",
+ "description": "Voicemeeter is a virtual audio mixer that allows you to manage and enhance audio streams on your computer. It is commonly used for audio recording and streaming purposes.",
+ "link": "https://voicemeeter.com/",
+ "winget": "VB-Audio.Voicemeeter"
+ },
+ "WPFInstallVoicemeeterPotato": {
+ "category": "Multimedia Tools",
+ "choco": "voicemeeter-potato",
+ "content": "Voicemeeter Potato",
+ "description": "Voicemeeter Potato is the ultimate version of the Voicemeeter Audio Mixer Application endowed with Virtual Audio Device to mix and manage any audio sources from or to any audio devices or applications.",
+ "link": "https://voicemeeter.com/",
+ "winget": "VB-Audio.Voicemeeter.Potato"
+ },
+ "WPFInstallvrdesktopstreamer": {
+ "category": "Games",
+ "choco": "na",
+ "content": "Virtual Desktop Streamer",
+ "description": "Virtual Desktop Streamer is a tool that allows you to stream your desktop screen to VR devices.",
+ "link": "https://www.vrdesktop.net/",
+ "winget": "VirtualDesktop.Streamer"
+ },
+ "WPFInstallvscode": {
+ "category": "Development",
+ "choco": "vscode",
+ "content": "VS Code",
+ "description": "Visual Studio Code is a free, open-source code editor with support for multiple programming languages.",
+ "link": "https://code.visualstudio.com/",
+ "winget": "Microsoft.VisualStudioCode"
+ },
+ "WPFInstallvscodium": {
+ "category": "Development",
+ "choco": "vscodium",
+ "content": "VS Codium",
+ "description": "VSCodium is a community-driven, freely-licensed binary distribution of Microsoft's VS Code.",
+ "link": "https://vscodium.com/",
+ "winget": "VSCodium.VSCodium"
+ },
+ "WPFInstallwaterfox": {
+ "category": "Browsers",
+ "choco": "waterfox",
+ "content": "Waterfox",
+ "description": "Waterfox is a fast, privacy-focused web browser based on Firefox, designed to preserve user choice and privacy.",
+ "link": "https://www.waterfox.net/",
+ "winget": "Waterfox.Waterfox"
+ },
+ "WPFInstallwazuh": {
+ "category": "Utilities",
+ "choco": "wazuh-agent",
+ "content": "Wazuh.",
+ "description": "Wazuh is an open-source security monitoring platform that offers intrusion detection, compliance checks, and log analysis.",
+ "link": "https://wazuh.com/",
+ "winget": "Wazuh.WazuhAgent"
+ },
+ "WPFInstallwezterm": {
+ "category": "Development",
+ "choco": "wezterm",
+ "content": "Wezterm",
+ "description": "WezTerm is a powerful cross-platform terminal emulator and multiplexer",
+ "link": "https://wezfurlong.org/wezterm/index.html",
+ "winget": "wez.wezterm"
+ },
+ "WPFInstallwindowspchealth": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Windows PC Health Check",
+ "description": "Windows PC Health Check is a tool that helps you check if your PC meets the system requirements for Windows 11.",
+ "link": "https://support.microsoft.com/en-us/windows/how-to-use-the-pc-health-check-app-9c8abd9b-03ba-4e67-81ef-36f37caa7844",
+ "winget": "Microsoft.WindowsPCHealthCheck"
+ },
+ "WPFInstallWindowGrid": {
+ "category": "Utilities",
+ "choco": "windowgrid",
+ "content": "WindowGrid",
+ "description": "WindowGrid is a modern window management program for Windows that allows the user to quickly and easily layout their windows on a dynamic grid using just the mouse.",
+ "link": "http://windowgrid.net/",
+ "winget": "na"
+ },
+ "WPFInstallwingetui": {
+ "category": "Utilities",
+ "choco": "wingetui",
+ "content": "UnigetUI",
+ "description": "WingetUI is a graphical user interface for Microsoft's Windows Package Manager (winget).",
+ "link": "https://www.marticliment.com/wingetui/",
+ "winget": "SomePythonThings.WingetUIStore"
+ },
+ "WPFInstallwinmerge": {
+ "category": "Document",
+ "choco": "winmerge",
+ "content": "WinMerge",
+ "description": "WinMerge is a visual text file and directory comparison tool for Windows.",
+ "link": "https://winmerge.org/",
+ "winget": "WinMerge.WinMerge"
+ },
+ "WPFInstallwinpaletter": {
+ "category": "Utilities",
+ "choco": "WinPaletter",
+ "content": "WinPaletter",
+ "description": "WinPaletter is a tool for adjusting the color palette of Windows 10, providing customization options for window colors.",
+ "link": "https://github.com/Abdelrhman-AK/WinPaletter",
+ "winget": "Abdelrhman-AK.WinPaletter"
+ },
+ "WPFInstallwinrar": {
+ "category": "Utilities",
+ "choco": "winrar",
+ "content": "WinRAR",
+ "description": "WinRAR is a powerful archive manager that allows you to create, manage, and extract compressed files.",
+ "link": "https://www.win-rar.com/",
+ "winget": "RARLab.WinRAR"
+ },
+ "WPFInstallwinscp": {
+ "category": "Pro Tools",
+ "choco": "winscp",
+ "content": "WinSCP",
+ "description": "WinSCP is a popular open-source SFTP, FTP, and SCP client for Windows. It allows secure file transfers between a local and a remote computer.",
+ "link": "https://winscp.net/",
+ "winget": "WinSCP.WinSCP"
+ },
+ "WPFInstallwireguard": {
+ "category": "Pro Tools",
+ "choco": "wireguard",
+ "content": "WireGuard",
+ "description": "WireGuard is a fast and modern VPN (Virtual Private Network) protocol. It aims to be simpler and more efficient than other VPN protocols, providing secure and reliable connections.",
+ "link": "https://www.wireguard.com/",
+ "winget": "WireGuard.WireGuard"
+ },
+ "WPFInstallwireshark": {
+ "category": "Pro Tools",
+ "choco": "wireshark",
+ "content": "Wireshark",
+ "description": "Wireshark is a widely-used open-source network protocol analyzer. It allows users to capture and analyze network traffic in real-time, providing detailed insights into network activities.",
+ "link": "https://www.wireshark.org/",
+ "winget": "WiresharkFoundation.Wireshark"
+ },
+ "WPFInstallwisetoys": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "WiseToys",
+ "description": "WiseToys is a set of utilities and tools designed to enhance and optimize your Windows experience.",
+ "link": "https://toys.wisecleaner.com/",
+ "winget": "WiseCleaner.WiseToys"
+ },
+ "WPFInstallTeraCopy": {
+ "category": "Utilities",
+ "choco": "TeraCopy",
+ "content": "TeraCopy",
+ "description": "Copy your files faster and more securely",
+ "link": "https://codesector.com/teracopy",
+ "winget": "CodeSector.TeraCopy"
+ },
+ "WPFInstallwizfile": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "WizFile",
+ "description": "Find files by name on your hard drives almost instantly.",
+ "link": "https://antibody-software.com/wizfile/",
+ "winget": "AntibodySoftware.WizFile"
+ },
+ "WPFInstallwiztree": {
+ "category": "Utilities",
+ "choco": "wiztree",
+ "content": "WizTree",
+ "description": "WizTree is a fast disk space analyzer that helps you quickly find the files and folders consuming the most space on your hard drive.",
+ "link": "https://wiztreefree.com/",
+ "winget": "AntibodySoftware.WizTree"
+ },
+ "WPFInstallxdm": {
+ "category": "Utilities",
+ "choco": "xdm",
+ "content": "Xtreme Download Manager",
+ "description": "Xtreme Download Manager is an advanced download manager with support for various protocols and browsers.*Browser integration deprecated by google store. No official release.*",
+ "link": "https://xtremedownloadmanager.com/",
+ "winget": "subhra74.XtremeDownloadManager"
+ },
+ "WPFInstallxeheditor": {
+ "category": "Utilities",
+ "choco": "HxD",
+ "content": "HxD Hex Editor",
+ "description": "HxD is a free hex editor that allows you to edit, view, search, and analyze binary files.",
+ "link": "https://mh-nexus.de/en/hxd/",
+ "winget": "MHNexus.HxD"
+ },
+ "WPFInstallxemu": {
+ "category": "Games",
+ "choco": "na",
+ "content": "XEMU",
+ "description": "XEMU is an open-source Xbox emulator that allows you to play Xbox games on your PC, aiming for accuracy and compatibility.",
+ "link": "https://xemu.app/",
+ "winget": "xemu-project.xemu"
+ },
+ "WPFInstallxnview": {
+ "category": "Utilities",
+ "choco": "xnview",
+ "content": "XnView classic",
+ "description": "XnView is an efficient image viewer, browser and converter for Windows.",
+ "link": "https://www.xnview.com/en/xnview/",
+ "winget": "XnSoft.XnView.Classic"
+ },
+ "WPFInstallxournal": {
+ "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++"
+ },
+ "WPFInstallxpipe": {
+ "category": "Pro Tools",
+ "choco": "xpipe",
+ "content": "XPipe",
+ "description": "XPipe is an open-source tool for orchestrating containerized applications. It simplifies the deployment and management of containerized services in a distributed environment.",
+ "link": "https://xpipe.io/",
+ "winget": "xpipe-io.xpipe"
+ },
+ "WPFInstallyarn": {
+ "category": "Development",
+ "choco": "yarn",
+ "content": "Yarn",
+ "description": "Yarn is a fast, reliable, and secure dependency management tool for JavaScript projects.",
+ "link": "https://yarnpkg.com/",
+ "winget": "Yarn.Yarn"
+ },
+ "WPFInstallytdlp": {
+ "category": "Multimedia Tools",
+ "choco": "yt-dlp",
+ "content": "Yt-dlp",
+ "description": "Command-line tool that allows you to download videos from YouTube and other supported sites. It is an improved version of the popular youtube-dl.",
+ "link": "https://github.com/yt-dlp/yt-dlp",
+ "winget": "yt-dlp.yt-dlp"
+ },
+ "WPFInstallzerotierone": {
+ "category": "Utilities",
+ "choco": "zerotier-one",
+ "content": "ZeroTier One",
+ "description": "ZeroTier One is a software-defined networking tool that allows you to create secure and scalable networks.",
+ "link": "https://zerotier.com/",
+ "winget": "ZeroTier.ZeroTierOne"
+ },
+ "WPFInstallzim": {
+ "category": "Document",
+ "choco": "zim",
+ "content": "Zim Desktop Wiki",
+ "description": "Zim Desktop Wiki is a graphical text editor used to maintain a collection of wiki pages.",
+ "link": "https://zim-wiki.org/",
+ "winget": "Zimwiki.Zim"
+ },
+ "WPFInstallznote": {
+ "category": "Document",
+ "choco": "na",
+ "content": "Znote",
+ "description": "Znote is a note-taking application.",
+ "link": "https://znote.io/",
+ "winget": "alagrede.znote"
+ },
+ "WPFInstallzoom": {
+ "category": "Communications",
+ "choco": "zoom",
+ "content": "Zoom",
+ "description": "Zoom is a popular video conferencing and web conferencing service for online meetings, webinars, and collaborative projects.",
+ "link": "https://zoom.us/",
+ "winget": "Zoom.Zoom"
+ },
+ "WPFInstallzotero": {
+ "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"
+ },
+ "WPFInstallzoxide": {
+ "category": "Utilities",
+ "choco": "zoxide",
+ "content": "Zoxide",
+ "description": "Zoxide is a fast and efficient directory changer (cd) that helps you navigate your file system with ease.",
+ "link": "https://github.com/ajeetdsouza/zoxide",
+ "winget": "ajeetdsouza.zoxide"
+ },
+ "WPFInstallzulip": {
+ "category": "Communications",
+ "choco": "zulip",
+ "content": "Zulip",
+ "description": "Zulip is an open-source team collaboration tool with chat streams for productive and organized communication.",
+ "link": "https://zulipchat.com/",
+ "winget": "Zulip.Zulip"
+ },
+ "WPFInstallsyncthingtray": {
+ "category": "Utilities",
+ "choco": "syncthingtray",
+ "content": "Syncthingtray",
+ "description": "Might be the alternative for Synctrayzor. Windows tray utility / filesystem watcher / launcher for Syncthing",
+ "link": "https://github.com/Martchus/syncthingtray",
+ "winget": "Martchus.syncthingtray"
+ },
+ "WPFInstallminiconda": {
+ "category": "Development",
+ "choco": "miniconda3",
+ "content": "Miniconda",
+ "description": "Miniconda is a free minimal installer for conda. It is a small bootstrap version of Anaconda that includes only conda, Python, the packages they both depend on, and a small number of other useful packages (like pip, zlib, and a few others).",
+ "link": "https://docs.conda.io/projects/miniconda",
+ "winget": "Anaconda.Miniconda3"
+ },
+ "WPFInstallpixi": {
+ "category": "Development",
+ "choco": "pixi",
+ "content": "Pixi",
+ "description": "Pixi is a fast software package manager built on top of the existing conda ecosystem. Spins up development environments quickly on Windows, macOS and Linux. Pixi supports Python, R, C/C++, Rust, Ruby, and many other languages.",
+ "link": "https://pixi.sh",
+ "winget": "prefix-dev.pixi"
+ },
+ "WPFInstalltemurin": {
+ "category": "Development",
+ "choco": "temurin",
+ "content": "Eclipse Temurin",
+ "description": "Eclipse Temurin is the open source Java SE build based upon OpenJDK.",
+ "link": "https://adoptium.net/temurin/",
+ "winget": "EclipseAdoptium.Temurin.21.JDK"
+ },
+ "WPFInstallintelpresentmon": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Intel-PresentMon",
+ "description": "A new gaming performance overlay and telemetry application to monitor and measure your gaming experience.",
+ "link": "https://game.intel.com/us/stories/intel-presentmon/",
+ "winget": "Intel.PresentMon.Beta"
+ },
+ "WPFInstallpyenvwin": {
+ "category": "Development",
+ "choco": "pyenv-win",
+ "content": "Python Version Manager (pyenv-win)",
+ "description": "pyenv for Windows is a simple python version management tool. It lets you easily switch between multiple versions of Python.",
+ "link": "https://pyenv-win.github.io/pyenv-win/",
+ "winget": "na"
+ },
+ "WPFInstalltightvnc": {
+ "category": "Utilities",
+ "choco": "TightVNC",
+ "content": "TightVNC",
+ "description": "TightVNC is a free and Open Source remote desktop software that lets you access and control a computer over the network. With its intuitive interface, you can interact with the remote screen as if you were sitting in front of it. You can open files, launch applications, and perform other actions on the remote desktop almost as if you were physically there",
+ "link": "https://www.tightvnc.com/",
+ "winget": "GlavSoft.TightVNC"
+ },
+ "WPFInstallultravnc": {
+ "category": "Utilities",
+ "choco": "ultravnc",
+ "content": "UltraVNC",
+ "description": "UltraVNC is a powerful, easy to use and free - remote pc access softwares - that can display the screen of another computer (via internet or network) on your own screen. The program allows you to use your mouse and keyboard to control the other PC remotely. It means that you can work on a remote computer, as if you were sitting in front of it, right from your current location.",
+ "link": "https://uvnc.com/",
+ "winget": "uvncbvba.UltraVnc"
+ },
+ "WPFInstallwindowsfirewallcontrol": {
+ "category": "Utilities",
+ "choco": "windowsfirewallcontrol",
+ "content": "Windows Firewall Control",
+ "description": "Windows Firewall Control is a powerful tool which extends the functionality of Windows Firewall and provides new extra features which makes Windows Firewall better.",
+ "link": "https://www.binisoft.org/wfc",
+ "winget": "BiniSoft.WindowsFirewallControl"
+ },
+ "WPFInstallvistaswitcher": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "VistaSwitcher",
+ "description": "VistaSwitcher makes it easier for you to locate windows and switch focus, even on multi-monitor systems. The switcher window consists of an easy-to-read list of all tasks running with clearly shown titles and a full-sized preview of the selected task.",
+ "link": "https://www.ntwind.com/freeware/vistaswitcher.html",
+ "winget": "ntwind.VistaSwitcher"
+ },
+ "WPFInstallautodarkmode": {
+ "category": "Utilities",
+ "choco": "auto-dark-mode",
+ "content": "Windows Auto Dark Mode",
+ "description": "Automatically switches between the dark and light theme of Windows 10 and Windows 11",
+ "link": "https://github.com/AutoDarkMode/Windows-Auto-Night-Mode",
+ "winget": "Armin2208.WindowsAutoNightMode"
+ },
+ "WPFInstallAmbieWhiteNoise": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Ambie White Noise",
+ "description": "Ambie is the ultimate app to help you focus, study, or relax. We use white noise and nature sounds combined with an innovative focus timer to keep you concentrated on doing your best work.",
+ "link": "https://ambieapp.com/",
+ "winget": "9P07XNM5CHP0"
+ },
+ "WPFInstallmagicwormhole": {
+ "category": "Utilities",
+ "choco": "magic-wormhole",
+ "content": "Magic Wormhole",
+ "description": "get things from one computer to another, safely",
+ "link": "https://github.com/magic-wormhole/magic-wormhole",
+ "winget": "magic-wormhole.magic-wormhole"
+ },
+ "WPFInstallcroc": {
+ "category": "Utilities",
+ "choco": "croc",
+ "content": "croc",
+ "description": "Easily and securely send things from one computer to another.",
+ "link": "https://github.com/schollz/croc",
+ "winget": "schollz.croc"
+ },
+ "WPFInstallqgis": {
+ "category": "Multimedia Tools",
+ "choco": "qgis",
+ "content": "QGIS",
+ "description": "QGIS (Quantum GIS) is an open-source Geographic Information System (GIS) software that enables users to create, edit, visualize, analyze, and publish geospatial information on Windows, Mac, and Linux platforms.",
+ "link": "https://qgis.org/en/site/",
+ "winget": "OSGeo.QGIS"
+ },
+ "WPFInstallsmplayer": {
+ "category": "Multimedia Tools",
+ "choco": "smplayer",
+ "content": "SMPlayer",
+ "description": "SMPlayer is a free media player for Windows and Linux with built-in codecs that can play virtually all video and audio formats.",
+ "link": "https://www.smplayer.info",
+ "winget": "SMPlayer.SMPlayer"
+ },
+ "WPFInstallglazewm": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "GlazeWM",
+ "description": "GlazeWM is a tiling window manager for Windows inspired by i3 and Polybar",
+ "link": "https://github.com/glzr-io/glazewm",
+ "winget": "glzr-io.glazewm"
+ },
+ "WPFInstallfancontrol": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "FanControl",
+ "description": "Fan Control is a free and open-source software that allows the user to control his CPU, GPU and case fans using temperatures.",
+ "link": "https://getfancontrol.com/",
+ "winget": "Rem0o.FanControl"
+ },
+ "WPFInstallfnm": {
+ "category": "Development",
+ "choco": "fnm",
+ "content": "Fast Node Manager",
+ "description": "Fast Node Manager (fnm) allows you to switch your Node version by using the Terminal",
+ "link": "https://github.com/Schniz/fnm",
+ "winget": "Schniz.fnm"
+ },
+ "WPFInstallWindhawk": {
+ "category": "Utilities",
+ "choco": "windhawk",
+ "content": "Windhawk",
+ "description": "The customization marketplace for Windows programs",
+ "link": "https://windhawk.net",
+ "winget": "RamenSoftware.Windhawk"
+ },
+ "WPFInstallForceAutoHDR": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "ForceAutoHDR",
+ "description": "ForceAutoHDR simplifies the process of adding games to the AutoHDR list in the Windows Registry",
+ "link": "https://github.com/7gxycn08/ForceAutoHDR",
+ "winget": "ForceAutoHDR.7gxycn08"
+ },
+ "WPFInstallJoyToKey": {
+ "category": "Utilities",
+ "choco": "joytokey",
+ "content": "JoyToKey",
+ "description": "enables PC game controllers to emulate the keyboard and mouse input",
+ "link": "https://joytokey.net/en/",
+ "winget": "JTKsoftware.JoyToKey"
+ },
+ "WPFInstallnditools": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "NDI Tools",
+ "description": "NDI, or Network Device Interface, is a video connectivity standard that enables multimedia systems to identify and communicate with one another over IP and to encode, transmit, and receive high-quality, low latency, frame-accurate video and audio, and exchange metadata in real-time.",
+ "link": "https://ndi.video/",
+ "winget": "NDI.NDITools"
+ },
+ "WPFInstallkicad": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "Kicad",
+ "description": "Kicad is an open-source EDA tool. It's a good starting point for those who want to do electrical design and is even used by professionals in the industry.",
+ "link": "https://www.kicad.org/",
+ "winget": "KiCad.KiCad"
+ },
+ "WPFInstallFormatFactory": {
+ "category": "Utilities",
+ "choco": "formatfactory",
+ "content": "Format Factory",
+ "description": "FormatFactory is an ad-supported freeware multimedia converter that can convert video, audio, and picture files. It is also capable of ripping DVDs and CDs to other file formats, as well as creating .iso images. It can also join multiple video files together into one.",
+ "link": "http://www.pcfreetime.com/formatfactory/",
+ "winget": "na"
+ },
+ "WPFInstalldropox": {
+ "category": "Utilities",
+ "choco": "na",
+ "content": "Dropbox",
+ "description": "The Dropbox desktop app! Save hard drive space, share and edit files and send for signature ? all without the distraction of countless browser tabs.",
+ "link": "https://www.dropbox.com/en_GB/desktop",
+ "winget": "Dropbox.Dropbox"
+ },
+ "WPFInstallOFGB": {
+ "category": "Utilities",
+ "choco": "ofgb",
+ "content": "OFGB (Oh Frick Go Back)",
+ "description": "GUI Tool To Removes Ads From Various Places Around Windows 11",
+ "link": "https://github.com/xM4ddy/OFGB",
+ "winget": "xM4ddy.OFGB"
+ },
+ "WPFInstallShotcut": {
+ "category": "Multimedia Tools",
+ "choco": "na",
+ "content": "Shotcut",
+ "description": "Shotcut is a free, open source, cross-platform video editor.",
+ "link": "https://shotcut.org/",
+ "winget": "Meltytech.Shotcut"
+ }
}' | convertfrom-json
$sync.configs.dns = '{
- "Google": {
- "Primary": "8.8.8.8",
- "Secondary": "8.8.4.4"
- },
- "Cloudflare": {
- "Primary": "1.1.1.1",
- "Secondary": "1.0.0.1"
- },
- "Cloudflare_Malware": {
- "Primary": "1.1.1.2",
- "Secondary": "1.0.0.2"
- },
- "Cloudflare_Malware_Adult": {
- "Primary": "1.1.1.3",
- "Secondary": "1.0.0.3"
- },
- "Level3": {
- "Primary": "4.2.2.2",
- "Secondary": "4.2.2.1"
- },
- "Open_DNS": {
- "Primary": "208.67.222.222",
- "Secondary": "208.67.220.220"
- },
- "Quad9": {
- "Primary": "9.9.9.9",
- "Secondary": "149.112.112.112"
- }
+ "Google": {
+ "Primary": "8.8.8.8",
+ "Secondary": "8.8.4.4",
+ "Primary6": "2001:4860:4860::8888",
+ "Secondary6": "2001:4860:4860::8844"
+ },
+ "Cloudflare": {
+ "Primary": "1.1.1.1",
+ "Secondary": "1.0.0.1",
+ "Primary6": "2606:4700:4700::1111",
+ "Secondary6": "2606:4700:4700::1001"
+ },
+ "Cloudflare_Malware": {
+ "Primary": "1.1.1.2",
+ "Secondary": "1.0.0.2",
+ "Primary6": "2606:4700:4700::1112",
+ "Secondary6": "2606:4700:4700::1002"
+ },
+ "Cloudflare_Malware_Adult": {
+ "Primary": "1.1.1.3",
+ "Secondary": "1.0.0.3",
+ "Primary6": "2606:4700:4700::1113",
+ "Secondary6": "2606:4700:4700::1003"
+ },
+ "Open_DNS": {
+ "Primary": "208.67.222.222",
+ "Secondary": "208.67.220.220",
+ "Primary6": "2620:119:35::35",
+ "Secondary6": "2620:119:53::53"
+ },
+ "Quad9": {
+ "Primary": "9.9.9.9",
+ "Secondary": "149.112.112.112",
+ "Primary6": "2620:fe::fe",
+ "Secondary6": "2620:fe::9"
+ },
+ "AdGuard_Ads_Trackers": {
+ "Primary": "94.140.14.14",
+ "Secondary": "94.140.15.15",
+ "Primary6": "2a10:50c0::ad1:ff",
+ "Secondary6": "2a10:50c0::ad2:ff"
+ },
+ "AdGuard_Ads_Trackers_Malware_Adult": {
+ "Primary": "94.140.14.15",
+ "Secondary": "94.140.15.16",
+ "Primary6": "2a10:50c0::bad1:ff",
+ "Secondary6": "2a10:50c0::bad2:ff"
+ }
}' | convertfrom-json
$sync.configs.feature = '{
- "WPFFeaturesdotnet": {
- "Content": "All .Net Framework (2,3,4)",
- "Description": ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.",
- "category": "Features",
- "panel": "1",
- "Order": "a010_",
- "feature": [
- "NetFx4-AdvSrvs",
- "NetFx3"
- ],
- "InvokeScript": [
-
- ]
- },
- "WPFFeatureshyperv": {
- "Content": "HyperV Virtualization",
- "Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
- "category": "Features",
- "panel": "1",
- "Order": "a011_",
- "feature": [
- "HypervisorPlatform",
- "Microsoft-Hyper-V-All",
- "Microsoft-Hyper-V",
- "Microsoft-Hyper-V-Tools-All",
- "Microsoft-Hyper-V-Management-PowerShell",
- "Microsoft-Hyper-V-Hypervisor",
- "Microsoft-Hyper-V-Services",
- "Microsoft-Hyper-V-Management-Clients"
- ],
- "InvokeScript": [
- "Start-Process -FilePath cmd.exe -ArgumentList \u0027\u0027/c bcdedit /set hypervisorschedulertype classic\u0027\u0027 -Wait"
- ]
- },
- "WPFFeatureslegacymedia": {
- "Content": "Legacy Media (WMP, DirectPlay)",
- "Description": "Enables legacy programs from previous versions of windows",
- "category": "Features",
- "panel": "1",
- "Order": "a012_",
- "feature": [
- "WindowsMediaPlayer",
- "MediaPlayback",
- "DirectPlay",
- "LegacyComponents"
- ],
- "InvokeScript": [
-
- ]
- },
- "WPFFeaturewsl": {
- "Content": "Windows Subsystem for Linux",
- "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.",
- "category": "Features",
- "panel": "1",
- "Order": "a020_",
- "feature": [
- "VirtualMachinePlatform",
- "Microsoft-Windows-Subsystem-Linux"
- ],
- "InvokeScript": [
-
- ]
- },
- "WPFFeaturenfs": {
- "Content": "NFS - Network File System",
- "Description": "Network File System (NFS) is a mechanism for storing files on a network.",
- "category": "Features",
- "panel": "1",
- "Order": "a014_",
- "feature": [
- "ServicesForNFS-ClientOnly",
- "ClientForNFS-Infrastructure",
- "NFS-Administration"
- ],
- "InvokeScript": [
- "nfsadmin client stop",
- "Set-ItemProperty -Path \u0027\u0027HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default\u0027\u0027 -Name \u0027\u0027AnonymousUID\u0027\u0027 -Type DWord -Value 0",
- "Set-ItemProperty -Path \u0027\u0027HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default\u0027\u0027 -Name \u0027\u0027AnonymousGID\u0027\u0027 -Type DWord -Value 0",
- "nfsadmin client start",
- "nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i"
- ]
- },
- "WPFFeatureEnableSearchSuggestions": {
- "Content": "Enable Search Box Web Suggestions in Registry(explorer restart)",
- "Description": "Enables web suggestions when searching using Windows Search.",
- "category": "Features",
- "panel": "1",
- "Order": "a015_",
- "feature": [
-
- ],
- "InvokeScript": [
- "
- If (!(Test-Path \u0027\u0027HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer\u0027\u0027)) {
- New-Item -Path \u0027\u0027HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer\u0027\u0027 -Force | Out-Null
+ "WPFFeaturesdotnet": {
+ "Content": "All .Net Framework (2,3,4)",
+ "Description": ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a010_",
+ "feature": [
+ "NetFx4-AdvSrvs",
+ "NetFx3"
+ ],
+ "InvokeScript": []
+ },
+ "WPFFeatureshyperv": {
+ "Content": "HyperV Virtualization",
+ "Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a011_",
+ "feature": [
+ "HypervisorPlatform",
+ "Microsoft-Hyper-V-All",
+ "Microsoft-Hyper-V",
+ "Microsoft-Hyper-V-Tools-All",
+ "Microsoft-Hyper-V-Management-PowerShell",
+ "Microsoft-Hyper-V-Hypervisor",
+ "Microsoft-Hyper-V-Services",
+ "Microsoft-Hyper-V-Management-Clients"
+ ],
+ "InvokeScript": [
+ "Start-Process -FilePath cmd.exe -ArgumentList ''/c bcdedit /set hypervisorschedulertype classic'' -Wait"
+ ]
+ },
+ "WPFFeatureslegacymedia": {
+ "Content": "Legacy Media (WMP, DirectPlay)",
+ "Description": "Enables legacy programs from previous versions of windows",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a012_",
+ "feature": [
+ "WindowsMediaPlayer",
+ "MediaPlayback",
+ "DirectPlay",
+ "LegacyComponents"
+ ],
+ "InvokeScript": []
+ },
+ "WPFFeaturewsl": {
+ "Content": "Windows Subsystem for Linux",
+ "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.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a020_",
+ "feature": [
+ "VirtualMachinePlatform",
+ "Microsoft-Windows-Subsystem-Linux"
+ ],
+ "InvokeScript": []
+ },
+ "WPFFeaturenfs": {
+ "Content": "NFS - Network File System",
+ "Description": "Network File System (NFS) is a mechanism for storing files on a network.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a014_",
+ "feature": [
+ "ServicesForNFS-ClientOnly",
+ "ClientForNFS-Infrastructure",
+ "NFS-Administration"
+ ],
+ "InvokeScript": [
+ "nfsadmin client stop",
+ "Set-ItemProperty -Path ''HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default'' -Name ''AnonymousUID'' -Type DWord -Value 0",
+ "Set-ItemProperty -Path ''HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default'' -Name ''AnonymousGID'' -Type DWord -Value 0",
+ "nfsadmin client start",
+ "nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i"
+ ]
+ },
+ "WPFFeatureEnableSearchSuggestions": {
+ "Content": "Enable Search Box Web Suggestions in Registry(explorer restart)",
+ "Description": "Enables web suggestions when searching using Windows Search.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a015_",
+ "feature": [],
+ "InvokeScript": [
+ "
+ If (!(Test-Path ''HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer'')) {
+ New-Item -Path ''HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer'' -Force | Out-Null
}
- New-ItemProperty -Path \u0027\u0027HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer\u0027\u0027 -Name \u0027\u0027DisableSearchBoxSuggestions\u0027\u0027 -Type DWord -Value 0 -Force
+ New-ItemProperty -Path ''HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer'' -Name ''DisableSearchBoxSuggestions'' -Type DWord -Value 0 -Force
Stop-Process -name explorer -force
"
- ]
- },
- "WPFFeatureDisableSearchSuggestions": {
- "Content": "Disable Search Box Web Suggestions in Registry(explorer restart)",
- "Description": "Disables web suggestions when searching using Windows Search.",
- "category": "Features",
- "panel": "1",
- "Order": "a016_",
- "feature": [
-
- ],
- "InvokeScript": [
- "
- If (!(Test-Path \u0027\u0027HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer\u0027\u0027)) {
- New-Item -Path \u0027\u0027HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer\u0027\u0027 -Force | Out-Null
+ ]
+ },
+ "WPFFeatureDisableSearchSuggestions": {
+ "Content": "Disable Search Box Web Suggestions in Registry(explorer restart)",
+ "Description": "Disables web suggestions when searching using Windows Search.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a016_",
+ "feature": [],
+ "InvokeScript": [
+ "
+ If (!(Test-Path ''HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer'')) {
+ New-Item -Path ''HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer'' -Force | Out-Null
}
- New-ItemProperty -Path \u0027\u0027HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer\u0027\u0027 -Name \u0027\u0027DisableSearchBoxSuggestions\u0027\u0027 -Type DWord -Value 1 -Force
+ New-ItemProperty -Path ''HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer'' -Name ''DisableSearchBoxSuggestions'' -Type DWord -Value 1 -Force
Stop-Process -name explorer -force
"
- ]
- },
- "WPFFeatureRegBackup": {
- "Content": "Enable Daily Registry Backup Task 12.30am",
- "Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
- "category": "Features",
- "panel": "1",
- "Order": "a017_",
- "feature": [
-
- ],
- "InvokeScript": [
- "
- New-ItemProperty -Path \u0027\u0027HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\u0027\u0027 -Name \u0027\u0027EnablePeriodicBackup\u0027\u0027 -Type DWord -Value 1 -Force
- New-ItemProperty -Path \u0027\u0027HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\u0027\u0027 -Name \u0027\u0027BackupCount\u0027\u0027 -Type DWord -Value 2 -Force
- $action = New-ScheduledTaskAction -Execute \u0027\u0027schtasks\u0027\u0027 -Argument \u0027\u0027/run /i /tn \"\\Microsoft\\Windows\\Registry\\RegIdleBackup\"\u0027\u0027
+ ]
+ },
+ "WPFFeatureRegBackup": {
+ "Content": "Enable Daily Registry Backup Task 12.30am",
+ "Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a017_",
+ "feature": [],
+ "InvokeScript": [
+ "
+ New-ItemProperty -Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager'' -Name ''EnablePeriodicBackup'' -Type DWord -Value 1 -Force
+ New-ItemProperty -Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager'' -Name ''BackupCount'' -Type DWord -Value 2 -Force
+ $action = New-ScheduledTaskAction -Execute ''schtasks'' -Argument ''/run /i /tn \"\\Microsoft\\Windows\\Registry\\RegIdleBackup\"''
$trigger = New-ScheduledTaskTrigger -Daily -At 00:30
- Register-ScheduledTask -Action $action -Trigger $trigger -TaskName \u0027\u0027AutoRegBackup\u0027\u0027 -Description \u0027\u0027Create System Registry Backups\u0027\u0027 -User \u0027\u0027System\u0027\u0027
+ Register-ScheduledTask -Action $action -Trigger $trigger -TaskName ''AutoRegBackup'' -Description ''Create System Registry Backups'' -User ''System''
"
- ]
- },
- "WPFFeatureEnableLegacyRecovery": {
- "Content": "Enable Legacy F8 Boot Recovery",
- "Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
- "category": "Features",
- "panel": "1",
- "Order": "a018_",
- "feature": [
-
- ],
- "InvokeScript": [
- "
- If (!(Test-Path \u0027\u0027HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood\u0027\u0027)) {
- New-Item -Path \u0027\u0027HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood\u0027\u0027 -Force | Out-Null
+ ]
+ },
+ "WPFFeatureEnableLegacyRecovery": {
+ "Content": "Enable Legacy F8 Boot Recovery",
+ "Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a018_",
+ "feature": [],
+ "InvokeScript": [
+ "
+ If (!(Test-Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood'')) {
+ New-Item -Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood'' -Force | Out-Null
}
- New-ItemProperty -Path \u0027\u0027HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood\u0027\u0027 -Name \u0027\u0027Enabled\u0027\u0027 -Type DWord -Value 1 -Force
- Start-Process -FilePath cmd.exe -ArgumentList \u0027\u0027/c bcdedit /Set {Current} BootMenuPolicy Legacy\u0027\u0027 -Wait
+ New-ItemProperty -Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood'' -Name ''Enabled'' -Type DWord -Value 1 -Force
+ Start-Process -FilePath cmd.exe -ArgumentList ''/c bcdedit /Set {Current} BootMenuPolicy Legacy'' -Wait
"
- ]
- },
- "WPFFeatureDisableLegacyRecovery": {
- "Content": "Disable Legacy F8 Boot Recovery",
- "Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
- "category": "Features",
- "panel": "1",
- "Order": "a019_",
- "feature": [
-
- ],
- "InvokeScript": [
- "
- If (!(Test-Path \u0027\u0027HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood\u0027\u0027)) {
- New-Item -Path \u0027\u0027HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood\u0027\u0027 -Force | Out-Null
+ ]
+ },
+ "WPFFeatureDisableLegacyRecovery": {
+ "Content": "Disable Legacy F8 Boot Recovery",
+ "Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a019_",
+ "feature": [],
+ "InvokeScript": [
+ "
+ If (!(Test-Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood'')) {
+ New-Item -Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood'' -Force | Out-Null
}
- New-ItemProperty -Path \u0027\u0027HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood\u0027\u0027 -Name \u0027\u0027Enabled\u0027\u0027 -Type DWord -Value 0 -Force
- Start-Process -FilePath cmd.exe -ArgumentList \u0027\u0027/c bcdedit /Set {Current} BootMenuPolicy Standard\u0027\u0027 -Wait
+ New-ItemProperty -Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood'' -Name ''Enabled'' -Type DWord -Value 0 -Force
+ Start-Process -FilePath cmd.exe -ArgumentList ''/c bcdedit /Set {Current} BootMenuPolicy Standard'' -Wait
"
- ]
- },
- "WPFFeaturesandbox": {
- "Content": "Windows Sandbox",
- "category": "Features",
- "panel": "1",
- "Order": "a021_",
- "Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation."
- },
- "WPFFeatureInstall": {
- "Content": "Install Features",
- "category": "Features",
- "panel": "1",
- "Order": "a060_",
- "Type": "150"
- },
- "WPFPanelAutologin": {
- "Content": "Set Up Autologin",
- "category": "Fixes",
- "Order": "a040_",
- "panel": "1",
- "Type": "300"
- },
- "WPFFixesUpdate": {
- "Content": "Reset Windows Update",
- "category": "Fixes",
- "panel": "1",
- "Order": "a041_",
- "Type": "300"
- },
- "WPFFixesNetwork": {
- "Content": "Reset Network",
- "category": "Fixes",
- "Order": "a042_",
- "panel": "1",
- "Type": "300"
- },
- "WPFPanelDISM": {
- "Content": "System Corruption Scan",
- "category": "Fixes",
- "panel": "1",
- "Order": "a043_",
- "Type": "300"
- },
- "WPFFixesWinget": {
- "Content": "WinGet Reinstall",
- "category": "Fixes",
- "panel": "1",
- "Order": "a044_",
- "Type": "300"
- },
- "WPFRunAdobeCCCleanerTool": {
- "Content": "Remove Adobe Creative Cloud",
- "category": "Fixes",
- "panel": "1",
- "Order": "a045_",
- "Type": "300"
- },
- "WPFPanelnetwork": {
- "Content": "Network Connections",
- "category": "Legacy Windows Panels",
- "panel": "2",
- "Type": "200"
- },
- "WPFPanelcontrol": {
- "Content": "Control Panel",
- "category": "Legacy Windows Panels",
- "panel": "2",
- "Type": "200"
- },
- "WPFPanelpower": {
- "Content": "Power Panel",
- "category": "Legacy Windows Panels",
- "panel": "2",
- "Type": "200"
- },
- "WPFPanelregion": {
- "Content": "Region",
- "category": "Legacy Windows Panels",
- "panel": "2",
- "Type": "200"
- },
- "WPFPanelsound": {
- "Content": "Sound Settings",
- "category": "Legacy Windows Panels",
- "panel": "2",
- "Type": "200"
- },
- "WPFPanelsystem": {
- "Content": "System Properties",
- "category": "Legacy Windows Panels",
- "panel": "2",
- "Type": "200"
- },
- "WPFPaneluser": {
- "Content": "User Accounts",
- "category": "Legacy Windows Panels",
- "panel": "2",
- "Type": "200"
- }
+ ]
+ },
+ "WPFFeaturesandbox": {
+ "Content": "Windows Sandbox",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a021_",
+ "Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation."
+ },
+ "WPFFeatureInstall": {
+ "Content": "Install Features",
+ "category": "Features",
+ "panel": "1",
+ "Order": "a060_",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPanelAutologin": {
+ "Content": "Set Up Autologin",
+ "category": "Fixes",
+ "Order": "a040_",
+ "panel": "1",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFFixesUpdate": {
+ "Content": "Reset Windows Update",
+ "category": "Fixes",
+ "panel": "1",
+ "Order": "a041_",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFFixesNetwork": {
+ "Content": "Reset Network",
+ "category": "Fixes",
+ "Order": "a042_",
+ "panel": "1",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPanelDISM": {
+ "Content": "System Corruption Scan",
+ "category": "Fixes",
+ "panel": "1",
+ "Order": "a043_",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFFixesWinget": {
+ "Content": "WinGet Reinstall",
+ "category": "Fixes",
+ "panel": "1",
+ "Order": "a044_",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFRunAdobeCCCleanerTool": {
+ "Content": "Remove Adobe Creative Cloud",
+ "category": "Fixes",
+ "panel": "1",
+ "Order": "a045_",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPanelnetwork": {
+ "Content": "Network Connections",
+ "category": "Legacy Windows Panels",
+ "panel": "2",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPanelcontrol": {
+ "Content": "Control Panel",
+ "category": "Legacy Windows Panels",
+ "panel": "2",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPanelpower": {
+ "Content": "Power Panel",
+ "category": "Legacy Windows Panels",
+ "panel": "2",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPanelregion": {
+ "Content": "Region",
+ "category": "Legacy Windows Panels",
+ "panel": "2",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPanelsound": {
+ "Content": "Sound Settings",
+ "category": "Legacy Windows Panels",
+ "panel": "2",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPanelsystem": {
+ "Content": "System Properties",
+ "category": "Legacy Windows Panels",
+ "panel": "2",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFPaneluser": {
+ "Content": "User Accounts",
+ "category": "Legacy Windows Panels",
+ "panel": "2",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ }
}' | convertfrom-json
$sync.configs.preset = '{
- "Standard": [
- "WPFTweaksAH",
- "WPFTweaksConsumerFeatures",
- "WPFTweaksDVR",
- "WPFTweaksHiber",
- "WPFTweaksHome",
- "WPFTweaksLoc",
- "WPFTweaksServices",
- "WPFTweaksStorage",
- "WPFTweaksTele",
- "WPFTweaksWifi",
- "WPFTweaksDiskCleanup",
- "WPFTweaksDeleteTempFiles",
- "WPFTweaksEndTaskOnTaskbar",
- "WPFTweaksRestorePoint",
- "WPFTweaksTeredo"
- ],
- "Minimal": [
- "WPFTweaksConsumerFeatures",
- "WPFTweaksHome",
- "WPFTweaksServices",
- "WPFTweaksTele"
- ]
+ "Standard": [
+ "WPFTweaksAH",
+ "WPFTweaksConsumerFeatures",
+ "WPFTweaksDVR",
+ "WPFTweaksHiber",
+ "WPFTweaksHome",
+ "WPFTweaksLoc",
+ "WPFTweaksServices",
+ "WPFTweaksStorage",
+ "WPFTweaksTele",
+ "WPFTweaksWifi",
+ "WPFTweaksDiskCleanup",
+ "WPFTweaksDeleteTempFiles",
+ "WPFTweaksEndTaskOnTaskbar",
+ "WPFTweaksRestorePoint",
+ "WPFTweaksTeredo",
+ "WPFTweaksPowershell7Tele"
+ ],
+ "Minimal": [
+ "WPFTweaksConsumerFeatures",
+ "WPFTweaksHome",
+ "WPFTweaksServices",
+ "WPFTweaksTele"
+ ]
}' | convertfrom-json
$sync.configs.themes = '{
- "Classic": {
- "ComboBoxBackgroundColor": "#FFFFFF",
- "LabelboxForegroundColor": "#000000",
- "MainForegroundColor": "#000000",
- "MainBackgroundColor": "#FFFFFF",
- "LabelBackgroundColor": "#FAFAFA",
- "LinkForegroundColor": "#000000",
- "LinkHoverForegroundColor": "#000000",
- "GroupBorderBackgroundColor": "#000000",
- "ComboBoxForegroundColor": "#000000",
- "ButtonInstallBackgroundColor": "#FFFFFF",
- "ButtonTweaksBackgroundColor": "#FFFFFF",
- "ButtonConfigBackgroundColor": "#FFFFFF",
- "ButtonUpdatesBackgroundColor": "#FFFFFF",
- "ButtonInstallForegroundColor": "#000000",
- "ButtonTweaksForegroundColor": "#000000",
- "ButtonConfigForegroundColor": "#000000",
- "ButtonUpdatesForegroundColor": "#000000",
- "ButtonBackgroundColor": "#F5F5F5",
- "ButtonBackgroundPressedColor": "#1A1A1A",
- "CheckboxMouseOverColor": "#999999",
- "ButtonBackgroundMouseoverColor": "#C2C2C2",
- "ButtonBackgroundSelectedColor": "#F0F0F0",
- "ButtonForegroundColor": "#000000",
- "ToggleButtonOnColor": "#2e77ff",
- "ButtonBorderThickness": "1",
- "ButtonMargin": "1",
- "ButtonCornerRadius": "2",
- "ToggleButtonHeight": "25",
- "BorderColor": "#000000",
- "BorderOpacity": "0.2",
- "ShadowPulse": "Forever"
- },
- "Matrix": {
- "ComboBoxBackgroundColor": "#000000",
- "LabelboxForegroundColor": "#FFEE58",
- "MainForegroundColor": "#9CCC65",
- "MainBackgroundColor": "#000000",
- "LabelBackgroundColor": "#000000",
- "LinkForegroundColor": "#add8e6",
- "LinkHoverForegroundColor": "#FFFFFF",
- "ComboBoxForegroundColor": "#FFEE58",
- "ButtonInstallBackgroundColor": "#222222",
- "ButtonTweaksBackgroundColor": "#333333",
- "ButtonConfigBackgroundColor": "#444444",
- "ButtonUpdatesBackgroundColor": "#555555",
- "ButtonInstallForegroundColor": "#FFFFFF",
- "ButtonTweaksForegroundColor": "#FFFFFF",
- "ButtonConfigForegroundColor": "#FFFFFF",
- "ButtonUpdatesForegroundColor": "#FFFFFF",
- "ButtonBackgroundColor": "#000019",
- "ButtonBackgroundPressedColor": "#FFFFFF",
- "ButtonBackgroundMouseoverColor": "#A55A64",
- "ButtonBackgroundSelectedColor": "#FF5733",
- "ButtonForegroundColor": "#9CCC65",
- "ToggleButtonOnColor": "#2e77ff",
- "ButtonBorderThickness": "1",
- "ButtonMargin": "1",
- "ButtonCornerRadius": "2",
- "ToggleButtonHeight": "25",
- "BorderColor": "#FFAC1C",
- "BorderOpacity": "0.8",
- "ShadowPulse": "0:0:3"
- },
- "Dark": {
- "ComboBoxBackgroundColor": "#000000",
- "LabelboxForegroundColor": "#FFEE58",
- "MainForegroundColor": "#9CCC65",
- "MainBackgroundColor": "#000000",
- "LabelBackgroundColor": "#000000",
- "LinkForegroundColor": "#add8e6",
- "LinkHoverForegroundColor": "#FFFFFF",
- "ComboBoxForegroundColor": "#FFEE58",
- "ButtonInstallBackgroundColor": "#222222",
- "ButtonTweaksBackgroundColor": "#333333",
- "ButtonConfigBackgroundColor": "#444444",
- "ButtonUpdatesBackgroundColor": "#555555",
- "ButtonInstallForegroundColor": "#FFFFFF",
- "ButtonTweaksForegroundColor": "#FFFFFF",
- "ButtonConfigForegroundColor": "#FFFFFF",
- "ButtonUpdatesForegroundColor": "#FFFFFF",
- "ButtonBackgroundColor": "#000019",
- "ButtonBackgroundPressedColor": "#9CCC65",
- "ButtonBackgroundMouseoverColor": "#FF5733",
- "ButtonBackgroundSelectedColor": "#FF5733",
- "ButtonForegroundColor": "#9CCC65",
- "ToggleButtonOnColor": "#2e77ff",
- "ButtonBorderThickness": "1",
- "ButtonMargin": "1",
- "ButtonCornerRadius": "2",
- "ToggleButtonHeight": "25",
- "BorderColor": "#FFAC1C",
- "BorderOpacity": "0.2",
- "ShadowPulse": "Forever"
- }
+ "Classic": {
+ "CustomDialogFontSize": "12",
+ "CustomDialogFontSizeHeader": "14",
+ "CustomDialogIconSize": "25",
+ "CustomDialogWidth": "400",
+ "CustomDialogHeight": "200",
+ "FontSize": "12",
+ "FontFamily": "Arial",
+ "FontSizeHeading": "14",
+ "HeaderFontFamily": "Consolas, Monaco",
+ "CheckBoxBulletDecoratorFontSize": "14",
+ "CheckBoxMargin": "15,0,0,2",
+ "TabButtonFontSize": "14",
+ "TabButtonWidth": "100",
+ "TabButtonHeight": "25",
+ "TabRowHeightInPixels": "50",
+ "IconFontSize": "14",
+ "IconButtonSize": "35",
+ "WinUtilIconSize": "Auto",
+ "SettingsIconFontSize": "18",
+ "MicroWinLogoSize": "10",
+ "ComboBoxBackgroundColor": "#FFFFFF",
+ "LabelboxForegroundColor": "#000000",
+ "MainForegroundColor": "#000000",
+ "MainBackgroundColor": "#FFFFFF",
+ "LabelBackgroundColor": "#FAFAFA",
+ "LinkForegroundColor": "#000000",
+ "LinkHoverForegroundColor": "#000000",
+ "GroupBorderBackgroundColor": "#000000",
+ "ComboBoxForegroundColor": "#000000",
+ "ButtonFontSize": "12",
+ "ButtonFontFamily": "Arial",
+ "ButtonWidth": "200",
+ "ButtonHeight": "25",
+ "ConfigTabButtonFontSize": "16",
+ "SearchBarWidth": "200",
+ "SearchBarHeight": "25",
+ "SearchBarTextBoxFontSize": "16",
+ "SearchBarClearButtonFontSize": "14",
+ "ButtonInstallBackgroundColor": "#FFFFFF",
+ "ButtonTweaksBackgroundColor": "#FFFFFF",
+ "ButtonConfigBackgroundColor": "#FFFFFF",
+ "ButtonUpdatesBackgroundColor": "#FFFFFF",
+ "ButtonInstallForegroundColor": "#000000",
+ "ButtonTweaksForegroundColor": "#000000",
+ "ButtonConfigForegroundColor": "#000000",
+ "ButtonUpdatesForegroundColor": "#000000",
+ "ButtonBackgroundColor": "#F5F5F5",
+ "ButtonBackgroundPressedColor": "#1A1A1A",
+ "CheckboxMouseOverColor": "#999999",
+ "ButtonBackgroundMouseoverColor": "#C2C2C2",
+ "ButtonBackgroundSelectedColor": "#F0F0F0",
+ "ButtonForegroundColor": "#000000",
+ "ToggleButtonOnColor": "#2e77ff",
+ "ButtonBorderThickness": "1",
+ "ButtonMargin": "1",
+ "ButtonCornerRadius": "2",
+ "BorderColor": "#000000",
+ "BorderOpacity": "0.2",
+ "ShadowPulse": "Forever"
+ },
+ "Matrix": {
+ "CustomDialogFontSize": "12",
+ "CustomDialogFontSizeHeader": "14",
+ "CustomDialogIconSize": "25",
+ "CustomDialogWidth": "400",
+ "CustomDialogHeight": "200",
+ "FontSize": "12",
+ "FontFamily": "Arial",
+ "FontSizeHeading": "14",
+ "HeaderFontFamily": "Consolas, Monaco",
+ "CheckBoxBulletDecoratorFontSize": "14",
+ "CheckBoxMargin": "15,0,0,2",
+ "TabButtonFontSize": "14",
+ "TabButtonWidth": "100",
+ "TabButtonHeight": "25",
+ "TabRowHeightInPixels": "50",
+ "IconFontSize": "14",
+ "IconButtonSize": "35",
+ "WinUtilIconSize": "Auto",
+ "SettingsIconFontSize": "18",
+ "MicroWinLogoSize": "10",
+ "ComboBoxBackgroundColor": "#000000",
+ "LabelboxForegroundColor": "#FFEE58",
+ "MainForegroundColor": "#9CCC65",
+ "MainBackgroundColor": "#000000",
+ "LabelBackgroundColor": "#000000",
+ "LinkForegroundColor": "#add8e6",
+ "LinkHoverForegroundColor": "#FFFFFF",
+ "ComboBoxForegroundColor": "#FFEE58",
+ "ButtonFontSize": "12",
+ "ButtonFontFamily": "Arial",
+ "ButtonWidth": "200",
+ "ButtonHeight": "25",
+ "ConfigTabButtonFontSize": "16",
+ "SearchBarWidth": "200",
+ "SearchBarHeight": "25",
+ "SearchBarTextBoxFontSize": "16",
+ "SearchBarClearButtonFontSize": "14",
+ "ButtonInstallBackgroundColor": "#222222",
+ "ButtonTweaksBackgroundColor": "#333333",
+ "ButtonConfigBackgroundColor": "#444444",
+ "ButtonUpdatesBackgroundColor": "#555555",
+ "ButtonInstallForegroundColor": "#FFFFFF",
+ "ButtonTweaksForegroundColor": "#FFFFFF",
+ "ButtonConfigForegroundColor": "#FFFFFF",
+ "ButtonUpdatesForegroundColor": "#FFFFFF",
+ "ButtonBackgroundColor": "#000019",
+ "ButtonBackgroundPressedColor": "#FFFFFF",
+ "ButtonBackgroundMouseoverColor": "#A55A64",
+ "ButtonBackgroundSelectedColor": "#FF5733",
+ "ButtonForegroundColor": "#9CCC65",
+ "ToggleButtonOnColor": "#2e77ff",
+ "ButtonBorderThickness": "1",
+ "ButtonMargin": "1",
+ "ButtonCornerRadius": "2",
+ "BorderColor": "#FFAC1C",
+ "BorderOpacity": "0.8",
+ "ShadowPulse": "0:0:3"
+ },
+ "Dark": {
+ "CustomDialogFontSize": "12",
+ "CustomDialogFontSizeHeader": "14",
+ "CustomDialogIconSize": "25",
+ "CustomDialogWidth": "400",
+ "CustomDialogHeight": "200",
+ "FontSize": "12",
+ "FontFamily": "Arial",
+ "FontSizeHeading": "14",
+ "HeaderFontFamily": "Consolas, Monaco",
+ "CheckBoxBulletDecoratorFontSize": "14",
+ "CheckBoxMargin": "15,0,0,2",
+ "TabButtonFontSize": "14",
+ "TabButtonWidth": "100",
+ "TabButtonHeight": "25",
+ "TabRowHeightInPixels": "50",
+ "IconFontSize": "14",
+ "IconButtonSize": "35",
+ "WinUtilIconSize": "Auto",
+ "SettingsIconFontSize": "18",
+ "MicroWinLogoSize": "10",
+ "ComboBoxBackgroundColor": "#000000",
+ "LabelboxForegroundColor": "#FFEE58",
+ "MainForegroundColor": "#9CCC65",
+ "MainBackgroundColor": "#000000",
+ "LabelBackgroundColor": "#000000",
+ "LinkForegroundColor": "#add8e6",
+ "LinkHoverForegroundColor": "#FFFFFF",
+ "ComboBoxForegroundColor": "#FFEE58",
+ "ButtonFontSize": "12",
+ "ButtonFontFamily": "Arial",
+ "ButtonWidth": "200",
+ "ButtonHeight": "25",
+ "ConfigTabButtonFontSize": "16",
+ "SearchBarWidth": "200",
+ "SearchBarHeight": "25",
+ "SearchBarTextBoxFontSize": "16",
+ "SearchBarClearButtonFontSize": "14",
+ "ButtonInstallBackgroundColor": "#222222",
+ "ButtonTweaksBackgroundColor": "#333333",
+ "ButtonConfigBackgroundColor": "#444444",
+ "ButtonUpdatesBackgroundColor": "#555555",
+ "ButtonInstallForegroundColor": "#FFFFFF",
+ "ButtonTweaksForegroundColor": "#FFFFFF",
+ "ButtonConfigForegroundColor": "#FFFFFF",
+ "ButtonUpdatesForegroundColor": "#FFFFFF",
+ "ButtonBackgroundColor": "#000019",
+ "ButtonBackgroundPressedColor": "#9CCC65",
+ "ButtonBackgroundMouseoverColor": "#FF5733",
+ "ButtonBackgroundSelectedColor": "#FF5733",
+ "ButtonForegroundColor": "#9CCC65",
+ "ToggleButtonOnColor": "#2e77ff",
+ "ButtonBorderThickness": "1",
+ "ButtonMargin": "1",
+ "ButtonCornerRadius": "2",
+ "BorderColor": "#FFAC1C",
+ "BorderOpacity": "0.2",
+ "ShadowPulse": "Forever"
+ }
}' | convertfrom-json
$sync.configs.tweaks = '{
- "WPFTweaksAH": {
- "Content": "Disable Activity History",
- "Description": "This erases recent docs, clipboard, and run history.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a005_",
- "registry": [
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
- "Name": "EnableActivityFeed",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
- "Name": "PublishUserActivities",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
- "Name": "UploadUserActivities",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- }
- ]
- },
- "WPFTweaksHiber": {
- "Content": "Disable Hibernation",
- "Description": "Hibernation is really meant for laptops as it saves what\u0026#39;s in memory before turning the pc off. It really should never be used, but some people are lazy and rely on it. Don\u0026#39;t be like Bob. Bob likes hibernation.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a005_",
- "registry": [
- {
- "Path": "HKLM:\\System\\CurrentControlSet\\Control\\Session Manager\\Power",
- "Name": "HibernateEnabled",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FlyoutMenuSettings",
- "Name": "ShowHibernateOption",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- }
- ],
- "InvokeScript": [
- "powercfg.exe /hibernate off"
- ],
- "UndoScript": [
- "powercfg.exe /hibernate on"
- ]
- },
- "WPFTweaksLaptopHibernation": {
- "Content": "Set Hibernation as default (good for laptops)",
- "Description": "Most modern laptops have connected stadby enabled which drains the battery, this sets hibernation as default which will not drain the battery. See issue https://github.com/ChrisTitusTech/winutil/issues/1399",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a014_",
- "registry": [
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Power\\PowerSettings\\238C9FA8-0AAD-41ED-83F4-97BE242C8F20\\7bc4a2f9-d8fc-4469-b07b-33eb785aaca0",
- "OriginalValue": "1",
- "Name": "Attributes",
- "Value": "2",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Power\\PowerSettings\\abfc2519-3608-4c2a-94ea-171b0ed546ab\\94ac6d29-73ce-41a6-809f-6363ba21b47e",
- "OriginalValue": "0",
- "Name": "Attributes ",
- "Value": "2",
- "Type": "DWord"
- }
- ],
- "InvokeScript": [
- "
+ "WPFTweaksAH": {
+ "Content": "Disable Activity History",
+ "Description": "This erases recent docs, clipboard, and run history.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a005_",
+ "registry": [
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
+ "Name": "EnableActivityFeed",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
+ "Name": "PublishUserActivities",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
+ "Name": "UploadUserActivities",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ }
+ ]
+ },
+ "WPFTweaksHiber": {
+ "Content": "Disable Hibernation",
+ "Description": "Hibernation is really meant for laptops as it saves what's in memory before turning the pc off. It really should never be used, but some people are lazy and rely on it. Don't be like Bob. Bob likes hibernation.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a005_",
+ "registry": [
+ {
+ "Path": "HKLM:\\System\\CurrentControlSet\\Control\\Session Manager\\Power",
+ "Name": "HibernateEnabled",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FlyoutMenuSettings",
+ "Name": "ShowHibernateOption",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ }
+ ],
+ "InvokeScript": [
+ "powercfg.exe /hibernate off"
+ ],
+ "UndoScript": [
+ "powercfg.exe /hibernate on"
+ ]
+ },
+ "WPFTweaksLaptopHibernation": {
+ "Content": "Set Hibernation as default (good for laptops)",
+ "Description": "Most modern laptops have connected stadby enabled which drains the battery, this sets hibernation as default which will not drain the battery. See issue https://github.com/ChrisTitusTech/winutil/issues/1399",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a014_",
+ "registry": [
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Power\\PowerSettings\\238C9FA8-0AAD-41ED-83F4-97BE242C8F20\\7bc4a2f9-d8fc-4469-b07b-33eb785aaca0",
+ "OriginalValue": "1",
+ "Name": "Attributes",
+ "Value": "2",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Power\\PowerSettings\\abfc2519-3608-4c2a-94ea-171b0ed546ab\\94ac6d29-73ce-41a6-809f-6363ba21b47e",
+ "OriginalValue": "0",
+ "Name": "Attributes ",
+ "Value": "2",
+ "Type": "DWord"
+ }
+ ],
+ "InvokeScript": [
+ "
Write-Host \"Turn on Hibernation\"
Start-Process -FilePath powercfg -ArgumentList \"/hibernate on\" -NoNewWindow -Wait
@@ -8923,9 +9060,9 @@ $sync.configs.tweaks = '{
Start-Process -FilePath powercfg -ArgumentList \"/change monitor-timeout-ac 10\" -NoNewWindow -Wait
Start-Process -FilePath powercfg -ArgumentList \"/change monitor-timeout-dc 1\" -NoNewWindow -Wait
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
Write-Host \"Turn off Hibernation\"
Start-Process -FilePath powercfg -ArgumentList \"/hibernate off\" -NoNewWindow -Wait
@@ -8935,1836 +9072,1836 @@ $sync.configs.tweaks = '{
Start-Process -FilePath powercfg -ArgumentList \"/change monitor-timeout-ac 15\" -NoNewWindow -Wait
Start-Process -FilePath powercfg -ArgumentList \"/change monitor-timeout-dc 15\" -NoNewWindow -Wait
"
- ]
- },
- "WPFTweaksHome": {
- "Content": "Disable Homegroup",
- "Description": "Disables HomeGroup - HomeGroup is a password-protected home networking service that lets you share your stuff with other PCs that are currently running and connected to your network.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a005_",
- "service": [
- {
- "Name": "HomeGroupListener",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "HomeGroupProvider",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- }
- ]
- },
- "WPFTweaksLoc": {
- "Content": "Disable Location Tracking",
- "Description": "Disables Location Tracking...DUH!",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a005_",
- "registry": [
- {
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\location",
- "Name": "Value",
- "Type": "String",
- "Value": "Deny",
- "OriginalValue": "Allow"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Sensor\\Overrides\\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}",
- "Name": "SensorPermissionState",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- },
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\lfsvc\\Service\\Configuration",
- "Name": "Status",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- },
- {
- "Path": "HKLM:\\SYSTEM\\Maps",
- "Name": "AutoUpdateEnabled",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- }
- ]
- },
- "WPFTweaksServices": {
- "Content": "Set Services to Manual",
- "Description": "Turns a bunch of system services to manual that don\u0026#39;t need to be running all the time. This is pretty harmless as if the service is needed, it will simply start on demand.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a014_",
- "service": [
- {
- "Name": "AJRouter",
- "StartupType": "Disabled",
- "OriginalType": "Manual"
- },
- {
- "Name": "ALG",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "AppIDSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "AppMgmt",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "AppReadiness",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "AppVClient",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "AppXSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Appinfo",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "AssignedAccessManagerSvc",
- "StartupType": "Disabled",
- "OriginalType": "Manual"
- },
- {
- "Name": "AudioEndpointBuilder",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "AudioSrv",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "Audiosrv",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "AxInstSV",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "BDESVC",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "BFE",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "BITS",
- "StartupType": "AutomaticDelayedStart",
- "OriginalType": "Automatic"
- },
- {
- "Name": "BTAGService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "BcastDVRUserService_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "BluetoothUserService_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "BrokerInfrastructure",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "Browser",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "BthAvctpSvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "BthHFSrv",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "CDPSvc",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "CDPUserSvc_*",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "COMSysApp",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "CaptureService_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "CertPropSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "ClipSVC",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "ConsentUxUserSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "CoreMessagingRegistrar",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "CredentialEnrollmentManagerUserSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "CryptSvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "CscService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DPS",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "DcomLaunch",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "DcpSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DevQueryBroker",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DeviceAssociationBrokerSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DeviceAssociationService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DeviceInstall",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DevicePickerUserSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DevicesFlowUserSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Dhcp",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "DiagTrack",
- "StartupType": "Disabled",
- "OriginalType": "Automatic"
- },
- {
- "Name": "DialogBlockingService",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "DispBrokerDesktopSvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "DisplayEnhancementService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DmEnrollmentSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Dnscache",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "DoSvc",
- "StartupType": "AutomaticDelayedStart",
- "OriginalType": "Automatic"
- },
- {
- "Name": "DsSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DsmSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "DusmSvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "EFS",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "EapHost",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "EntAppSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "EventLog",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "EventSystem",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "FDResPub",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Fax",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "FontCache",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "FrameServer",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "FrameServerMonitor",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "GraphicsPerfSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "HomeGroupListener",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "HomeGroupProvider",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "HvHost",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "IEEtwCollectorService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "IKEEXT",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "InstallService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "InventorySvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "IpxlatCfgSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "KeyIso",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "KtmRm",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "LSM",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "LanmanServer",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "LanmanWorkstation",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "LicenseManager",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "LxpSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "MSDTC",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "MSiSCSI",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "MapsBroker",
- "StartupType": "AutomaticDelayedStart",
- "OriginalType": "Automatic"
- },
- {
- "Name": "McpManagementService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "MessagingService_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "MicrosoftEdgeElevationService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "MixedRealityOpenXRSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "MpsSvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "MsKeyboardFilter",
- "StartupType": "Manual",
- "OriginalType": "Disabled"
- },
- {
- "Name": "NPSMSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NaturalAuthentication",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NcaSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NcbService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NcdAutoSetup",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NetSetupSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NetTcpPortSharing",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "Netlogon",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "Netman",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NgcCtnrSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NgcSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "NlaSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "OneSyncSvc_*",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "P9RdrService_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PNRPAutoReg",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PNRPsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PcaSvc",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "PeerDistSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PenService_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PerfHost",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PhoneSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PimIndexMaintenanceSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PlugPlay",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PolicyAgent",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Power",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "PrintNotify",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "PrintWorkflowUserSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "ProfSvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "PushToInstall",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "QWAVE",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "RasAuto",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "RasMan",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "RemoteAccess",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "RemoteRegistry",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "RetailDemo",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "RmSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "RpcEptMapper",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "RpcLocator",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "RpcSs",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "SCPolicySvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SCardSvr",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SDRSVC",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SEMgrSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SENS",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "SNMPTRAP",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SNMPTrap",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SSDPSRV",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SamSs",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "ScDeviceEnum",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Schedule",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "SecurityHealthService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Sense",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SensorDataService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SensorService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SensrSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SessionEnv",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SgrmBroker",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "SharedAccess",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "SharedRealitySvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "ShellHWDetection",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "SmsRouter",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Spooler",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "SstpSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "StateRepository",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "StiSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "StorSvc",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "SysMain",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "SystemEventsBroker",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "TabletInputService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "TapiSrv",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "TermService",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "TextInputManagementService",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "Themes",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "TieringEngineService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "TimeBroker",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "TimeBrokerSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "TokenBroker",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "TrkWks",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "TroubleshootingSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "TrustedInstaller",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "UI0Detect",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "UdkUserSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "UevAgentService",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "UmRdpService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "UnistoreSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "UserDataSvc_*",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "UserManager",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "UsoSvc",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "VGAuthService",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "VMTools",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "VSS",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "VacSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "VaultSvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "W32Time",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WEPHOSTSVC",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WFDSConMgrSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WMPNetworkSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WManSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WPDBusEnum",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WSService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WSearch",
- "StartupType": "AutomaticDelayedStart",
- "OriginalType": "Automatic"
- },
- {
- "Name": "WaaSMedicSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WalletService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WarpJITSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WbioSrvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Wcmsvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "WcsPlugInService",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WdNisSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WdiServiceHost",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WdiSystemHost",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WebClient",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Wecsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WerSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WiaRpc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WinDefend",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "WinHttpAutoProxySvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WinRM",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "Winmgmt",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "WlanSvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "WpcMonSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "WpnService",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "WpnUserService_*",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "XblAuthManager",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "XblGameSave",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "XboxGipSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "XboxNetApiSvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "autotimesvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "bthserv",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "camsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "cbdhsvc_*",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "cloudidsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "dcsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "defragsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "diagnosticshub.standardcollector.service",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "diagsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "dmwappushservice",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "dot3svc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "edgeupdate",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "edgeupdatem",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "embeddedmode",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "fdPHost",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "fhsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "gpsvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "hidserv",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "icssvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "iphlpsvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "lfsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "lltdsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "lmhosts",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "mpssvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "msiserver",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "netprofm",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "nsi",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "p2pimsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "p2psvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "perceptionsimulation",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "pla",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "seclogon",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "shpamsvc",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "smphost",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "spectrum",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "sppsvc",
- "StartupType": "AutomaticDelayedStart",
- "OriginalType": "Automatic"
- },
- {
- "Name": "ssh-agent",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "svsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "swprv",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "tiledatamodelsvc",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "tzautoupdate",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "uhssvc",
- "StartupType": "Disabled",
- "OriginalType": "Disabled"
- },
- {
- "Name": "upnphost",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vds",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vm3dservice",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "vmicguestinterface",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vmicheartbeat",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vmickvpexchange",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vmicrdv",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vmicshutdown",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vmictimesync",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vmicvmsession",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vmicvss",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "vmvss",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "wbengine",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "wcncsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "webthreatdefsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "webthreatdefusersvc_*",
- "StartupType": "Automatic",
- "OriginalType": "Automatic"
- },
- {
- "Name": "wercplsupport",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "wisvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "wlidsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "wlpasvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "wmiApSrv",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "workfolderssvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "wscsvc",
- "StartupType": "AutomaticDelayedStart",
- "OriginalType": "Automatic"
- },
- {
- "Name": "wuauserv",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- },
- {
- "Name": "wudfsvc",
- "StartupType": "Manual",
- "OriginalType": "Manual"
- }
- ]
- },
- "WPFTweaksConsumerFeatures": {
- "Content": "Disable ConsumerFeatures",
- "Description": "Windows 10 will not automatically install any games, third-party apps, or application links from the Windows Store for the signed-in user. Some default Apps will be inaccessible (eg. Phone Link)",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a003_",
- "registry": [
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CloudContent",
- "OriginalValue": "0",
- "Name": "DisableWindowsConsumerFeatures",
- "Value": "1",
- "Type": "DWord"
- }
- ]
- },
- "WPFTweaksTele": {
- "Content": "Disable Telemetry",
- "Description": "Disables Microsoft Telemetry. Note: This will lock many Edge Browser settings. Microsoft spies heavily on you when using the Edge browser.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a003_",
- "ScheduledTask": [
- {
- "Name": "Microsoft\\Windows\\Application Experience\\Microsoft Compatibility Appraiser",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Application Experience\\ProgramDataUpdater",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Autochk\\Proxy",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Customer Experience Improvement Program\\Consolidator",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Customer Experience Improvement Program\\UsbCeip",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\DiskDiagnostic\\Microsoft-Windows-DiskDiagnosticDataCollector",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Feedback\\Siuf\\DmClient",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Feedback\\Siuf\\DmClientOnScenarioDownload",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Windows Error Reporting\\QueueReporting",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Application Experience\\MareBackup",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Application Experience\\StartupAppTask",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Application Experience\\PcaPatchDbTask",
- "State": "Disabled",
- "OriginalState": "Enabled"
- },
- {
- "Name": "Microsoft\\Windows\\Maps\\MapsUpdateTask",
- "State": "Disabled",
- "OriginalState": "Enabled"
- }
- ],
- "registry": [
- {
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\DataCollection",
- "Type": "DWord",
- "Value": "0",
- "Name": "AllowTelemetry",
- "OriginalValue": "1"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\DataCollection",
- "OriginalValue": "1",
- "Name": "AllowTelemetry",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "ContentDeliveryAllowed",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "OemPreInstalledAppsEnabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "PreInstalledAppsEnabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "PreInstalledAppsEverEnabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "SilentInstalledAppsEnabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "SubscribedContent-338387Enabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "SubscribedContent-338388Enabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "SubscribedContent-338389Enabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "SubscribedContent-353698Enabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
- "OriginalValue": "1",
- "Name": "SystemPaneSuggestionsEnabled",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Siuf\\Rules",
- "OriginalValue": "0",
- "Name": "NumberOfSIUFInPeriod",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\DataCollection",
- "OriginalValue": "0",
- "Name": "DoNotShowFeedbackNotifications",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CloudContent",
- "OriginalValue": "0",
- "Name": "DisableTailoredExperiencesWithDiagnosticData",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AdvertisingInfo",
- "OriginalValue": "0",
- "Name": "DisabledByGroupPolicy",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Windows Error Reporting",
- "OriginalValue": "0",
- "Name": "Disabled",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\DeliveryOptimization\\Config",
- "OriginalValue": "1",
- "Name": "DODownloadMode",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Remote Assistance",
- "OriginalValue": "1",
- "Name": "fAllowToGetHelp",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\OperationStatusManager",
- "OriginalValue": "0",
- "Name": "EnthusiastMode",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "OriginalValue": "1",
- "Name": "ShowTaskViewButton",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\People",
- "OriginalValue": "1",
- "Name": "PeopleBand",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "OriginalValue": "1",
- "Name": "LaunchTo",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\FileSystem",
- "OriginalValue": "0",
- "Name": "LongPathsEnabled",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "_Comment": "Driver searching is a function that should be left in",
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\DriverSearching",
- "OriginalValue": "1",
- "Name": "SearchOrderConfig",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Multimedia\\SystemProfile",
- "OriginalValue": "1",
- "Name": "SystemResponsiveness",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Multimedia\\SystemProfile",
- "OriginalValue": "1",
- "Name": "NetworkThrottlingIndex",
- "Value": "4294967295",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Control Panel\\Desktop",
- "OriginalValue": "1",
- "Name": "MenuShowDelay",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Control Panel\\Desktop",
- "OriginalValue": "1",
- "Name": "AutoEndTasks",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Memory Management",
- "OriginalValue": "0",
- "Name": "ClearPageFileAtShutdown",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SYSTEM\\ControlSet001\\Services\\Ndu",
- "OriginalValue": "1",
- "Name": "Start",
- "Value": "2",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Control Panel\\Mouse",
- "OriginalValue": "400",
- "Name": "MouseHoverTime",
- "Value": "400",
- "Type": "String"
- },
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\LanmanServer\\Parameters",
- "OriginalValue": "20",
- "Name": "IRPStackSize",
- "Value": "30",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Windows Feeds",
- "OriginalValue": "1",
- "Name": "EnableFeeds",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Feeds",
- "OriginalValue": "1",
- "Name": "ShellFeedsTaskbarViewMode",
- "Value": "2",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
- "OriginalValue": "1",
- "Name": "HideSCAMeetNow",
- "Value": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\UserProfileEngagement",
- "OriginalValue": "1",
- "Name": "ScoobeSystemSettingEnabled",
- "Value": "0",
- "Type": "DWord"
- }
- ],
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksHome": {
+ "Content": "Disable Homegroup",
+ "Description": "Disables HomeGroup - HomeGroup is a password-protected home networking service that lets you share your stuff with other PCs that are currently running and connected to your network.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a005_",
+ "service": [
+ {
+ "Name": "HomeGroupListener",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "HomeGroupProvider",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ }
+ ]
+ },
+ "WPFTweaksLoc": {
+ "Content": "Disable Location Tracking",
+ "Description": "Disables Location Tracking...DUH!",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a005_",
+ "registry": [
+ {
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\location",
+ "Name": "Value",
+ "Type": "String",
+ "Value": "Deny",
+ "OriginalValue": "Allow"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Sensor\\Overrides\\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}",
+ "Name": "SensorPermissionState",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ },
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\lfsvc\\Service\\Configuration",
+ "Name": "Status",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ },
+ {
+ "Path": "HKLM:\\SYSTEM\\Maps",
+ "Name": "AutoUpdateEnabled",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ }
+ ]
+ },
+ "WPFTweaksServices": {
+ "Content": "Set Services to Manual",
+ "Description": "Turns a bunch of system services to manual that don't need to be running all the time. This is pretty harmless as if the service is needed, it will simply start on demand.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a014_",
+ "service": [
+ {
+ "Name": "AJRouter",
+ "StartupType": "Disabled",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "ALG",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "AppIDSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "AppMgmt",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "AppReadiness",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "AppVClient",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "AppXSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Appinfo",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "AssignedAccessManagerSvc",
+ "StartupType": "Disabled",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "AudioEndpointBuilder",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "AudioSrv",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "Audiosrv",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "AxInstSV",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "BDESVC",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "BFE",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "BITS",
+ "StartupType": "AutomaticDelayedStart",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "BTAGService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "BcastDVRUserService_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "BluetoothUserService_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "BrokerInfrastructure",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "Browser",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "BthAvctpSvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "BthHFSrv",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "CDPSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "CDPUserSvc_*",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "COMSysApp",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "CaptureService_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "CertPropSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "ClipSVC",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "ConsentUxUserSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "CoreMessagingRegistrar",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "CredentialEnrollmentManagerUserSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "CryptSvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "CscService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DPS",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "DcomLaunch",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "DcpSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DevQueryBroker",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DeviceAssociationBrokerSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DeviceAssociationService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DeviceInstall",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DevicePickerUserSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DevicesFlowUserSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Dhcp",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "DiagTrack",
+ "StartupType": "Disabled",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "DialogBlockingService",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "DispBrokerDesktopSvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "DisplayEnhancementService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DmEnrollmentSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Dnscache",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "DoSvc",
+ "StartupType": "AutomaticDelayedStart",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "DsSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DsmSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "DusmSvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "EFS",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "EapHost",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "EntAppSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "EventLog",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "EventSystem",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "FDResPub",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Fax",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "FontCache",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "FrameServer",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "FrameServerMonitor",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "GraphicsPerfSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "HomeGroupListener",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "HomeGroupProvider",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "HvHost",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "IEEtwCollectorService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "IKEEXT",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "InstallService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "InventorySvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "IpxlatCfgSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "KeyIso",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "KtmRm",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "LSM",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "LanmanServer",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "LanmanWorkstation",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "LicenseManager",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "LxpSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "MSDTC",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "MSiSCSI",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "MapsBroker",
+ "StartupType": "AutomaticDelayedStart",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "McpManagementService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "MessagingService_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "MicrosoftEdgeElevationService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "MixedRealityOpenXRSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "MpsSvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "MsKeyboardFilter",
+ "StartupType": "Manual",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "NPSMSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NaturalAuthentication",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NcaSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NcbService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NcdAutoSetup",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NetSetupSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NetTcpPortSharing",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "Netlogon",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "Netman",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NgcCtnrSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NgcSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "NlaSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "OneSyncSvc_*",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "P9RdrService_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PNRPAutoReg",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PNRPsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PcaSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "PeerDistSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PenService_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PerfHost",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PhoneSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PimIndexMaintenanceSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PlugPlay",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PolicyAgent",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Power",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "PrintNotify",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "PrintWorkflowUserSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "ProfSvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "PushToInstall",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "QWAVE",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "RasAuto",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "RasMan",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "RemoteAccess",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "RemoteRegistry",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "RetailDemo",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "RmSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "RpcEptMapper",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "RpcLocator",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "RpcSs",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "SCPolicySvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SCardSvr",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SDRSVC",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SEMgrSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SENS",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "SNMPTRAP",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SNMPTrap",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SSDPSRV",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SamSs",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "ScDeviceEnum",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Schedule",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "SecurityHealthService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Sense",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SensorDataService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SensorService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SensrSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SessionEnv",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SgrmBroker",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "SharedAccess",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "SharedRealitySvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "ShellHWDetection",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "SmsRouter",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Spooler",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "SstpSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "StateRepository",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "StiSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "StorSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "SysMain",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "SystemEventsBroker",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "TabletInputService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "TapiSrv",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "TermService",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "TextInputManagementService",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "Themes",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "TieringEngineService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "TimeBroker",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "TimeBrokerSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "TokenBroker",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "TrkWks",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "TroubleshootingSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "TrustedInstaller",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "UI0Detect",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "UdkUserSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "UevAgentService",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "UmRdpService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "UnistoreSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "UserDataSvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "UserManager",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "UsoSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "VGAuthService",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "VMTools",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "VSS",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "VacSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "VaultSvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "W32Time",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WEPHOSTSVC",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WFDSConMgrSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WMPNetworkSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WManSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WPDBusEnum",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WSService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WSearch",
+ "StartupType": "AutomaticDelayedStart",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "WaaSMedicSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WalletService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WarpJITSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WbioSrvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Wcmsvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "WcsPlugInService",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WdNisSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WdiServiceHost",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WdiSystemHost",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WebClient",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Wecsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WerSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WiaRpc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WinDefend",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "WinHttpAutoProxySvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WinRM",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "Winmgmt",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "WlanSvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "WpcMonSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "WpnService",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "WpnUserService_*",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "XblAuthManager",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "XblGameSave",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "XboxGipSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "XboxNetApiSvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "autotimesvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "bthserv",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "camsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "cbdhsvc_*",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "cloudidsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "dcsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "defragsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "diagnosticshub.standardcollector.service",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "diagsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "dmwappushservice",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "dot3svc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "edgeupdate",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "edgeupdatem",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "embeddedmode",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "fdPHost",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "fhsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "gpsvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "hidserv",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "icssvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "iphlpsvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "lfsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "lltdsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "lmhosts",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "mpssvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "msiserver",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "netprofm",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "nsi",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "p2pimsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "p2psvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "perceptionsimulation",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "pla",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "seclogon",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "shpamsvc",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "smphost",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "spectrum",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "sppsvc",
+ "StartupType": "AutomaticDelayedStart",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "ssh-agent",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "svsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "swprv",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "tiledatamodelsvc",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "tzautoupdate",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "uhssvc",
+ "StartupType": "Disabled",
+ "OriginalType": "Disabled"
+ },
+ {
+ "Name": "upnphost",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vds",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vm3dservice",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "vmicguestinterface",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vmicheartbeat",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vmickvpexchange",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vmicrdv",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vmicshutdown",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vmictimesync",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vmicvmsession",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vmicvss",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "vmvss",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "wbengine",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "wcncsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "webthreatdefsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "webthreatdefusersvc_*",
+ "StartupType": "Automatic",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "wercplsupport",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "wisvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "wlidsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "wlpasvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "wmiApSrv",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "workfolderssvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "wscsvc",
+ "StartupType": "AutomaticDelayedStart",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "wuauserv",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ },
+ {
+ "Name": "wudfsvc",
+ "StartupType": "Manual",
+ "OriginalType": "Manual"
+ }
+ ]
+ },
+ "WPFTweaksConsumerFeatures": {
+ "Content": "Disable ConsumerFeatures",
+ "Description": "Windows 10 will not automatically install any games, third-party apps, or application links from the Windows Store for the signed-in user. Some default Apps will be inaccessible (eg. Phone Link)",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a003_",
+ "registry": [
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CloudContent",
+ "OriginalValue": "0",
+ "Name": "DisableWindowsConsumerFeatures",
+ "Value": "1",
+ "Type": "DWord"
+ }
+ ]
+ },
+ "WPFTweaksTele": {
+ "Content": "Disable Telemetry",
+ "Description": "Disables Microsoft Telemetry. Note: This will lock many Edge Browser settings. Microsoft spies heavily on you when using the Edge browser.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a003_",
+ "ScheduledTask": [
+ {
+ "Name": "Microsoft\\Windows\\Application Experience\\Microsoft Compatibility Appraiser",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Application Experience\\ProgramDataUpdater",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Autochk\\Proxy",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Customer Experience Improvement Program\\Consolidator",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Customer Experience Improvement Program\\UsbCeip",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\DiskDiagnostic\\Microsoft-Windows-DiskDiagnosticDataCollector",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Feedback\\Siuf\\DmClient",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Feedback\\Siuf\\DmClientOnScenarioDownload",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Windows Error Reporting\\QueueReporting",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Application Experience\\MareBackup",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Application Experience\\StartupAppTask",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Application Experience\\PcaPatchDbTask",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ },
+ {
+ "Name": "Microsoft\\Windows\\Maps\\MapsUpdateTask",
+ "State": "Disabled",
+ "OriginalState": "Enabled"
+ }
+ ],
+ "registry": [
+ {
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\DataCollection",
+ "Type": "DWord",
+ "Value": "0",
+ "Name": "AllowTelemetry",
+ "OriginalValue": "1"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\DataCollection",
+ "OriginalValue": "1",
+ "Name": "AllowTelemetry",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "ContentDeliveryAllowed",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "OemPreInstalledAppsEnabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "PreInstalledAppsEnabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "PreInstalledAppsEverEnabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "SilentInstalledAppsEnabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "SubscribedContent-338387Enabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "SubscribedContent-338388Enabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "SubscribedContent-338389Enabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "SubscribedContent-353698Enabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager",
+ "OriginalValue": "1",
+ "Name": "SystemPaneSuggestionsEnabled",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Siuf\\Rules",
+ "OriginalValue": "0",
+ "Name": "NumberOfSIUFInPeriod",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\DataCollection",
+ "OriginalValue": "0",
+ "Name": "DoNotShowFeedbackNotifications",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\CloudContent",
+ "OriginalValue": "0",
+ "Name": "DisableTailoredExperiencesWithDiagnosticData",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\AdvertisingInfo",
+ "OriginalValue": "0",
+ "Name": "DisabledByGroupPolicy",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Windows Error Reporting",
+ "OriginalValue": "0",
+ "Name": "Disabled",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\DeliveryOptimization\\Config",
+ "OriginalValue": "1",
+ "Name": "DODownloadMode",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Remote Assistance",
+ "OriginalValue": "1",
+ "Name": "fAllowToGetHelp",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\OperationStatusManager",
+ "OriginalValue": "0",
+ "Name": "EnthusiastMode",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "OriginalValue": "1",
+ "Name": "ShowTaskViewButton",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\People",
+ "OriginalValue": "1",
+ "Name": "PeopleBand",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "OriginalValue": "1",
+ "Name": "LaunchTo",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\FileSystem",
+ "OriginalValue": "0",
+ "Name": "LongPathsEnabled",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "_Comment": "Driver searching is a function that should be left in",
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\DriverSearching",
+ "OriginalValue": "1",
+ "Name": "SearchOrderConfig",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Multimedia\\SystemProfile",
+ "OriginalValue": "1",
+ "Name": "SystemResponsiveness",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Multimedia\\SystemProfile",
+ "OriginalValue": "1",
+ "Name": "NetworkThrottlingIndex",
+ "Value": "4294967295",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Control Panel\\Desktop",
+ "OriginalValue": "1",
+ "Name": "MenuShowDelay",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Control Panel\\Desktop",
+ "OriginalValue": "1",
+ "Name": "AutoEndTasks",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Memory Management",
+ "OriginalValue": "0",
+ "Name": "ClearPageFileAtShutdown",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SYSTEM\\ControlSet001\\Services\\Ndu",
+ "OriginalValue": "1",
+ "Name": "Start",
+ "Value": "2",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Control Panel\\Mouse",
+ "OriginalValue": "400",
+ "Name": "MouseHoverTime",
+ "Value": "400",
+ "Type": "String"
+ },
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\LanmanServer\\Parameters",
+ "OriginalValue": "20",
+ "Name": "IRPStackSize",
+ "Value": "30",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Windows Feeds",
+ "OriginalValue": "1",
+ "Name": "EnableFeeds",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Feeds",
+ "OriginalValue": "1",
+ "Name": "ShellFeedsTaskbarViewMode",
+ "Value": "2",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
+ "OriginalValue": "1",
+ "Name": "HideSCAMeetNow",
+ "Value": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\UserProfileEngagement",
+ "OriginalValue": "1",
+ "Name": "ScoobeSystemSettingEnabled",
+ "Value": "0",
+ "Type": "DWord"
+ }
+ ],
+ "InvokeScript": [
+ "
bcdedit /set `{current`} bootmenupolicy Legacy | Out-Null
If ((get-ItemProperty -Path \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" -Name CurrentBuild).CurrentBuild -lt 22557) {
$taskmgr = Start-Process -WindowStyle Hidden -FilePath taskmgr.exe -PassThru
@@ -10797,239 +10934,239 @@ $sync.configs.tweaks = '{
# Disable Defender Auto Sample Submission
Set-MpPreference -SubmitSamplesConsent 2 -ErrorAction SilentlyContinue | Out-Null
"
- ]
- },
- "WPFTweaksWifi": {
- "Content": "Disable Wifi-Sense",
- "Description": "Wifi Sense is a spying service that phones home all nearby scanned wifi networks and your current geo location.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a005_",
- "registry": [
- {
- "Path": "HKLM:\\Software\\Microsoft\\PolicyManager\\default\\WiFi\\AllowWiFiHotSpotReporting",
- "Name": "Value",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- },
- {
- "Path": "HKLM:\\Software\\Microsoft\\PolicyManager\\default\\WiFi\\AllowAutoConnectToWiFiSenseHotspots",
- "Name": "Value",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- }
- ]
- },
- "WPFTweaksUTC": {
- "Content": "Set Time to UTC (Dual Boot)",
- "Description": "Essential for computers that are dual booting. Fixes the time sync with Linux Systems.",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a027_",
- "registry": [
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\TimeZoneInformation",
- "Name": "RealTimeIsUniversal",
- "Type": "DWord",
- "Value": "1",
- "OriginalValue": "0"
- }
- ]
- },
- "WPFTweaksDisplay": {
- "Content": "Set Display for Performance",
- "Description": "Sets the system preferences to performance. You can do this manually with sysdm.cpl as well.",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a027_",
- "registry": [
- {
- "Path": "HKCU:\\Control Panel\\Desktop",
- "OriginalValue": "1",
- "Name": "DragFullWindows",
- "Value": "0",
- "Type": "String"
- },
- {
- "Path": "HKCU:\\Control Panel\\Desktop",
- "OriginalValue": "1",
- "Name": "MenuShowDelay",
- "Value": "200",
- "Type": "String"
- },
- {
- "Path": "HKCU:\\Control Panel\\Desktop\\WindowMetrics",
- "OriginalValue": "1",
- "Name": "MinAnimate",
- "Value": "0",
- "Type": "String"
- },
- {
- "Path": "HKCU:\\Control Panel\\Keyboard",
- "OriginalValue": "1",
- "Name": "KeyboardDelay",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "OriginalValue": "1",
- "Name": "ListviewAlphaSelect",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "OriginalValue": "1",
- "Name": "ListviewShadow",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "OriginalValue": "1",
- "Name": "TaskbarAnimations",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VisualEffects",
- "OriginalValue": "1",
- "Name": "VisualFXSetting",
- "Value": "3",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\DWM",
- "OriginalValue": "1",
- "Name": "EnableAeroPeek",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "OriginalValue": "1",
- "Name": "TaskbarMn",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "OriginalValue": "1",
- "Name": "TaskbarDa",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "OriginalValue": "1",
- "Name": "ShowTaskViewButton",
- "Value": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Search",
- "OriginalValue": "1",
- "Name": "SearchboxTaskbarMode",
- "Value": "0",
- "Type": "DWord"
- }
- ],
- "InvokeScript": [
- "Set-ItemProperty -Path \"HKCU:\\Control Panel\\Desktop\" -Name \"UserPreferencesMask\" -Type Binary -Value ([byte[]](144,18,3,128,16,0,0,0))"
- ],
- "UndoScript": [
- "Remove-ItemProperty -Path \"HKCU:\\Control Panel\\Desktop\" -Name \"UserPreferencesMask\""
- ]
- },
- "WPFTweaksDeBloat": {
- "Content": "Remove ALL MS Store Apps - NOT RECOMMENDED",
- "Description": "USE WITH CAUTION!!!!! This will remove ALL Microsoft store apps other than the essentials to make winget work. Games installed by MS Store ARE INCLUDED!",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a028_",
- "appx": [
- "Microsoft.Microsoft3DViewer",
- "Microsoft.AppConnector",
- "Microsoft.BingFinance",
- "Microsoft.BingNews",
- "Microsoft.BingSports",
- "Microsoft.BingTranslator",
- "Microsoft.BingWeather",
- "Microsoft.BingFoodAndDrink",
- "Microsoft.BingHealthAndFitness",
- "Microsoft.BingTravel",
- "Microsoft.MinecraftUWP",
- "Microsoft.GamingServices",
- "Microsoft.GetHelp",
- "Microsoft.Getstarted",
- "Microsoft.Messaging",
- "Microsoft.Microsoft3DViewer",
- "Microsoft.MicrosoftSolitaireCollection",
- "Microsoft.NetworkSpeedTest",
- "Microsoft.News",
- "Microsoft.Office.Lens",
- "Microsoft.Office.Sway",
- "Microsoft.Office.OneNote",
- "Microsoft.OneConnect",
- "Microsoft.People",
- "Microsoft.Print3D",
- "Microsoft.SkypeApp",
- "Microsoft.Wallet",
- "Microsoft.Whiteboard",
- "Microsoft.WindowsAlarms",
- "microsoft.windowscommunicationsapps",
- "Microsoft.WindowsFeedbackHub",
- "Microsoft.WindowsMaps",
- "Microsoft.WindowsPhone",
- "Microsoft.WindowsSoundRecorder",
- "Microsoft.XboxApp",
- "Microsoft.ConnectivityStore",
- "Microsoft.CommsPhone",
- "Microsoft.ScreenSketch",
- "Microsoft.Xbox.TCUI",
- "Microsoft.XboxGameOverlay",
- "Microsoft.XboxGameCallableUI",
- "Microsoft.XboxSpeechToTextOverlay",
- "Microsoft.MixedReality.Portal",
- "Microsoft.XboxIdentityProvider",
- "Microsoft.ZuneMusic",
- "Microsoft.ZuneVideo",
- "Microsoft.Getstarted",
- "Microsoft.MicrosoftOfficeHub",
- "*EclipseManager*",
- "*ActiproSoftwareLLC*",
- "*AdobeSystemsIncorporated.AdobePhotoshopExpress*",
- "*Duolingo-LearnLanguagesforFree*",
- "*PandoraMediaInc*",
- "*CandyCrush*",
- "*BubbleWitch3Saga*",
- "*Wunderlist*",
- "*Flipboard*",
- "*Twitter*",
- "*Facebook*",
- "*Royal Revolt*",
- "*Sway*",
- "*Speed Test*",
- "*Dolby*",
- "*Viber*",
- "*ACGMediaPlayer*",
- "*Netflix*",
- "*OneCalendar*",
- "*LinkedInforWindows*",
- "*HiddenCityMysteryofShadows*",
- "*Hulu*",
- "*HiddenCity*",
- "*AdobePhotoshopExpress*",
- "*HotspotShieldFreeVPN*",
- "*Microsoft.Advertising.Xaml*"
- ],
- "InvokeScript": [
- "
- $TeamsPath = [System.IO.Path]::Combine($env:LOCALAPPDATA, \u0027\u0027Microsoft\u0027\u0027, \u0027\u0027Teams\u0027\u0027)
- $TeamsUpdateExePath = [System.IO.Path]::Combine($TeamsPath, \u0027\u0027Update.exe\u0027\u0027)
+ ]
+ },
+ "WPFTweaksWifi": {
+ "Content": "Disable Wifi-Sense",
+ "Description": "Wifi Sense is a spying service that phones home all nearby scanned wifi networks and your current geo location.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a005_",
+ "registry": [
+ {
+ "Path": "HKLM:\\Software\\Microsoft\\PolicyManager\\default\\WiFi\\AllowWiFiHotSpotReporting",
+ "Name": "Value",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ },
+ {
+ "Path": "HKLM:\\Software\\Microsoft\\PolicyManager\\default\\WiFi\\AllowAutoConnectToWiFiSenseHotspots",
+ "Name": "Value",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ }
+ ]
+ },
+ "WPFTweaksUTC": {
+ "Content": "Set Time to UTC (Dual Boot)",
+ "Description": "Essential for computers that are dual booting. Fixes the time sync with Linux Systems.",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a027_",
+ "registry": [
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\TimeZoneInformation",
+ "Name": "RealTimeIsUniversal",
+ "Type": "DWord",
+ "Value": "1",
+ "OriginalValue": "0"
+ }
+ ]
+ },
+ "WPFTweaksDisplay": {
+ "Content": "Set Display for Performance",
+ "Description": "Sets the system preferences to performance. You can do this manually with sysdm.cpl as well.",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a027_",
+ "registry": [
+ {
+ "Path": "HKCU:\\Control Panel\\Desktop",
+ "OriginalValue": "1",
+ "Name": "DragFullWindows",
+ "Value": "0",
+ "Type": "String"
+ },
+ {
+ "Path": "HKCU:\\Control Panel\\Desktop",
+ "OriginalValue": "1",
+ "Name": "MenuShowDelay",
+ "Value": "200",
+ "Type": "String"
+ },
+ {
+ "Path": "HKCU:\\Control Panel\\Desktop\\WindowMetrics",
+ "OriginalValue": "1",
+ "Name": "MinAnimate",
+ "Value": "0",
+ "Type": "String"
+ },
+ {
+ "Path": "HKCU:\\Control Panel\\Keyboard",
+ "OriginalValue": "1",
+ "Name": "KeyboardDelay",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "OriginalValue": "1",
+ "Name": "ListviewAlphaSelect",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "OriginalValue": "1",
+ "Name": "ListviewShadow",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "OriginalValue": "1",
+ "Name": "TaskbarAnimations",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VisualEffects",
+ "OriginalValue": "1",
+ "Name": "VisualFXSetting",
+ "Value": "3",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\DWM",
+ "OriginalValue": "1",
+ "Name": "EnableAeroPeek",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "OriginalValue": "1",
+ "Name": "TaskbarMn",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "OriginalValue": "1",
+ "Name": "TaskbarDa",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "OriginalValue": "1",
+ "Name": "ShowTaskViewButton",
+ "Value": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Search",
+ "OriginalValue": "1",
+ "Name": "SearchboxTaskbarMode",
+ "Value": "0",
+ "Type": "DWord"
+ }
+ ],
+ "InvokeScript": [
+ "Set-ItemProperty -Path \"HKCU:\\Control Panel\\Desktop\" -Name \"UserPreferencesMask\" -Type Binary -Value ([byte[]](144,18,3,128,16,0,0,0))"
+ ],
+ "UndoScript": [
+ "Remove-ItemProperty -Path \"HKCU:\\Control Panel\\Desktop\" -Name \"UserPreferencesMask\""
+ ]
+ },
+ "WPFTweaksDeBloat": {
+ "Content": "Remove ALL MS Store Apps - NOT RECOMMENDED",
+ "Description": "USE WITH CAUTION!!!!! This will remove ALL Microsoft store apps other than the essentials to make winget work. Games installed by MS Store ARE INCLUDED!",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a028_",
+ "appx": [
+ "Microsoft.Microsoft3DViewer",
+ "Microsoft.AppConnector",
+ "Microsoft.BingFinance",
+ "Microsoft.BingNews",
+ "Microsoft.BingSports",
+ "Microsoft.BingTranslator",
+ "Microsoft.BingWeather",
+ "Microsoft.BingFoodAndDrink",
+ "Microsoft.BingHealthAndFitness",
+ "Microsoft.BingTravel",
+ "Microsoft.MinecraftUWP",
+ "Microsoft.GamingServices",
+ "Microsoft.GetHelp",
+ "Microsoft.Getstarted",
+ "Microsoft.Messaging",
+ "Microsoft.Microsoft3DViewer",
+ "Microsoft.MicrosoftSolitaireCollection",
+ "Microsoft.NetworkSpeedTest",
+ "Microsoft.News",
+ "Microsoft.Office.Lens",
+ "Microsoft.Office.Sway",
+ "Microsoft.Office.OneNote",
+ "Microsoft.OneConnect",
+ "Microsoft.People",
+ "Microsoft.Print3D",
+ "Microsoft.SkypeApp",
+ "Microsoft.Wallet",
+ "Microsoft.Whiteboard",
+ "Microsoft.WindowsAlarms",
+ "microsoft.windowscommunicationsapps",
+ "Microsoft.WindowsFeedbackHub",
+ "Microsoft.WindowsMaps",
+ "Microsoft.WindowsPhone",
+ "Microsoft.WindowsSoundRecorder",
+ "Microsoft.XboxApp",
+ "Microsoft.ConnectivityStore",
+ "Microsoft.CommsPhone",
+ "Microsoft.ScreenSketch",
+ "Microsoft.Xbox.TCUI",
+ "Microsoft.XboxGameOverlay",
+ "Microsoft.XboxGameCallableUI",
+ "Microsoft.XboxSpeechToTextOverlay",
+ "Microsoft.MixedReality.Portal",
+ "Microsoft.XboxIdentityProvider",
+ "Microsoft.ZuneMusic",
+ "Microsoft.ZuneVideo",
+ "Microsoft.Getstarted",
+ "Microsoft.MicrosoftOfficeHub",
+ "*EclipseManager*",
+ "*ActiproSoftwareLLC*",
+ "*AdobeSystemsIncorporated.AdobePhotoshopExpress*",
+ "*Duolingo-LearnLanguagesforFree*",
+ "*PandoraMediaInc*",
+ "*CandyCrush*",
+ "*BubbleWitch3Saga*",
+ "*Wunderlist*",
+ "*Flipboard*",
+ "*Twitter*",
+ "*Facebook*",
+ "*Royal Revolt*",
+ "*Sway*",
+ "*Speed Test*",
+ "*Dolby*",
+ "*Viber*",
+ "*ACGMediaPlayer*",
+ "*Netflix*",
+ "*OneCalendar*",
+ "*LinkedInforWindows*",
+ "*HiddenCityMysteryofShadows*",
+ "*Hulu*",
+ "*HiddenCity*",
+ "*AdobePhotoshopExpress*",
+ "*HotspotShieldFreeVPN*",
+ "*Microsoft.Advertising.Xaml*"
+ ],
+ "InvokeScript": [
+ "
+ $TeamsPath = [System.IO.Path]::Combine($env:LOCALAPPDATA, ''Microsoft'', ''Teams'')
+ $TeamsUpdateExePath = [System.IO.Path]::Combine($TeamsPath, ''Update.exe'')
Write-Host \"Stopping Teams process...\"
Stop-Process -Name \"*teams*\" -Force -ErrorAction SilentlyContinue
@@ -11052,26 +11189,26 @@ $sync.configs.tweaks = '{
Write-Host \"Deleting Teams uninstall registry key\"
# Uninstall from Uninstall registry key UninstallString
- $us = (Get-ChildItem -Path HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall, HKLM:\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall | Get-ItemProperty | Where-Object { $_.DisplayName -like \u0027\u0027*Teams*\u0027\u0027}).UninstallString
+ $us = (Get-ChildItem -Path HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall, HKLM:\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall | Get-ItemProperty | Where-Object { $_.DisplayName -like ''*Teams*''}).UninstallString
if ($us.Length -gt 0) {
- $us = ($us.Replace(\u0027\u0027/I\u0027\u0027, \u0027\u0027/uninstall \u0027\u0027) + \u0027\u0027 /quiet\u0027\u0027).Replace(\u0027\u0027 \u0027\u0027, \u0027\u0027 \u0027\u0027)
- $FilePath = ($us.Substring(0, $us.IndexOf(\u0027\u0027.exe\u0027\u0027) + 4).Trim())
- $ProcessArgs = ($us.Substring($us.IndexOf(\u0027\u0027.exe\u0027\u0027) + 5).Trim().replace(\u0027\u0027 \u0027\u0027, \u0027\u0027 \u0027\u0027))
+ $us = ($us.Replace(''/I'', ''/uninstall '') + '' /quiet'').Replace('' '', '' '')
+ $FilePath = ($us.Substring(0, $us.IndexOf(''.exe'') + 4).Trim())
+ $ProcessArgs = ($us.Substring($us.IndexOf(''.exe'') + 5).Trim().replace('' '', '' ''))
$proc = Start-Process -FilePath $FilePath -Args $ProcessArgs -PassThru
$proc.WaitForExit()
}
"
- ]
- },
- "WPFTweaksRestorePoint": {
- "Content": "Create Restore Point",
- "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications",
- "category": "Essential Tweaks",
- "panel": "1",
- "Checked": "False",
- "Order": "a001_",
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksRestorePoint": {
+ "Content": "Create Restore Point",
+ "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Checked": "False",
+ "Order": "a001_",
+ "InvokeScript": [
+ "
# Check if the user has administrative privileges
if (-Not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {
Write-Host \"Please run this script as an administrator.\"
@@ -11089,7 +11226,7 @@ $sync.configs.tweaks = '{
# Check if the SystemRestorePointCreationFrequency value exists
$exists = Get-ItemProperty -path \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SystemRestore\" -Name \"SystemRestorePointCreationFrequency\" -ErrorAction SilentlyContinue
if($null -eq $exists){
- write-host \u0027\u0027Changing system to allow multiple restore points per day\u0027\u0027
+ write-host ''Changing system to allow multiple restore points per day''
Set-ItemProperty -Path \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SystemRestore\" -Name \"SystemRestorePointCreationFrequency\" -Value \"0\" -Type DWord -Force -ErrorAction Stop | Out-Null
}
@@ -11117,121 +11254,134 @@ $sync.configs.tweaks = '{
Write-Host -ForegroundColor Green \"System Restore Point Created Successfully\"
}
"
- ]
- },
- "WPFTweaksEndTaskOnTaskbar": {
- "Content": "Enable End Task With Right Click",
- "Description": "Enables option to end task when right clicking a program in the taskbar",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a006_",
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksEndTaskOnTaskbar": {
+ "Content": "Enable End Task With Right Click",
+ "Description": "Enables option to end task when right clicking a program in the taskbar",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a006_",
+ "InvokeScript": [
+ "
Set-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\TaskbarDeveloperSettings\" -Name \"TaskbarEndTask\" -Type \"DWord\" -Value \"1\"
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
Set-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\TaskbarDeveloperSettings\" -Name \"TaskbarEndTask\" -Type \"DWord\" -Value \"0\"
"
- ]
- },
- "WPFTweaksPowershell7": {
- "Content": "Replace Default Powershell 5 to Powershell 7",
- "Description": "This will edit the config file of the Windows Terminal Replacing the Powershell 5 to Powershell 7 and install Powershell 7 if necessary",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a009_",
- "InvokeScript": [
- "Invoke-WPFTweakPS7 -action \"PS7\""
- ],
- "UndoScript": [
- "Invoke-WPFTweakPS7 -action \"PS5\""
- ]
- },
- "WPFTweaksStorage": {
- "Content": "Disable Storage Sense",
- "Description": "Storage Sense deletes temp files automatically.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a005_",
- "InvokeScript": [
- "Set-ItemProperty -Path \"HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\StorageSense\\Parameters\\StoragePolicy\" -Name \"01\" -Value 0 -Type Dword -Force"
- ],
- "UndoScript": [
- "Set-ItemProperty -Path \"HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\StorageSense\\Parameters\\StoragePolicy\" -Name \"01\" -Value 1 -Type Dword -Force"
- ]
- },
- "WPFTweaksRemoveEdge": {
- "Content": "Remove Microsoft Edge - NOT RECOMMENDED",
- "Description": "Removes MS Edge when it gets reinstalled by updates. Credit: AveYo",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a029_",
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksPowershell7": {
+ "Content": "Replace Default Powershell 5 to Powershell 7",
+ "Description": "This will edit the config file of the Windows Terminal Replacing the Powershell 5 to Powershell 7 and install Powershell 7 if necessary",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a009_",
+ "InvokeScript": [
+ "Invoke-WPFTweakPS7 -action \"PS7\""
+ ],
+ "UndoScript": [
+ "Invoke-WPFTweakPS7 -action \"PS5\""
+ ]
+ },
+ "WPFTweaksPowershell7Tele": {
+ "Content": "Disable Powershell 7 Telemetry",
+ "Description": "This will create an Environment Variable called 'POWERSHELL_TELEMETRY_OPTOUT' with a value of '1' which will tell Powershell 7 to not send Telemetry Data.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a009_",
+ "InvokeScript": [
+ "[Environment]::SetEnvironmentVariable(''POWERSHELL_TELEMETRY_OPTOUT'', ''1'', ''Machine'')"
+ ],
+ "UndoScript": [
+ "[Environment]::SetEnvironmentVariable(''POWERSHELL_TELEMETRY_OPTOUT'', '''', ''Machine'')"
+ ]
+ },
+ "WPFTweaksStorage": {
+ "Content": "Disable Storage Sense",
+ "Description": "Storage Sense deletes temp files automatically.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a005_",
+ "InvokeScript": [
+ "Set-ItemProperty -Path \"HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\StorageSense\\Parameters\\StoragePolicy\" -Name \"01\" -Value 0 -Type Dword -Force"
+ ],
+ "UndoScript": [
+ "Set-ItemProperty -Path \"HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\StorageSense\\Parameters\\StoragePolicy\" -Name \"01\" -Value 1 -Type Dword -Force"
+ ]
+ },
+ "WPFTweaksRemoveEdge": {
+ "Content": "Remove Microsoft Edge - NOT RECOMMENDED",
+ "Description": "Removes MS Edge when it gets reinstalled by updates. Credit: AveYo",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a029_",
+ "InvokeScript": [
+ "
#:: Standalone script by AveYo Source: https://raw.githubusercontent.com/AveYo/fox/main/Edge_Removal.bat
Invoke-WebRequest -Uri \"https://raw.githubusercontent.com/ChrisTitusTech/winutil/main/edgeremoval.bat\" -OutFile \"$ENV:TEMP\\edgeremoval.bat\"
Start-Process $ENV:temp\\edgeremoval.bat
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
Write-Host \"Install Microsoft Edge\"
Start-Process -FilePath winget -ArgumentList \"install -e --accept-source-agreements --accept-package-agreements --silent Microsoft.Edge \" -NoNewWindow -Wait
"
- ]
- },
- "WPFTweaksRemoveCopilot": {
- "Content": "Disable Microsoft Copilot",
- "Description": "Disables MS Copilot AI built into Windows since 23H2.",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a025_",
- "registry": [
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsCopilot",
- "Name": "TurnOffWindowsCopilot",
- "Type": "DWord",
- "Value": "1",
- "OriginalValue": "0"
- },
- {
- "Path": "HKCU:\\Software\\Policies\\Microsoft\\Windows\\WindowsCopilot",
- "Name": "TurnOffWindowsCopilot",
- "Type": "DWord",
- "Value": "1",
- "OriginalValue": "0"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "Name": "ShowCopilotButton",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- }
- ],
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksRemoveCopilot": {
+ "Content": "Disable Microsoft Copilot",
+ "Description": "Disables MS Copilot AI built into Windows since 23H2.",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a025_",
+ "registry": [
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsCopilot",
+ "Name": "TurnOffWindowsCopilot",
+ "Type": "DWord",
+ "Value": "1",
+ "OriginalValue": "0"
+ },
+ {
+ "Path": "HKCU:\\Software\\Policies\\Microsoft\\Windows\\WindowsCopilot",
+ "Name": "TurnOffWindowsCopilot",
+ "Type": "DWord",
+ "Value": "1",
+ "OriginalValue": "0"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
+ "Name": "ShowCopilotButton",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ }
+ ],
+ "InvokeScript": [
+ "
Write-Host \"Remove Copilot\"
dism /online /remove-package /package-name:Microsoft.Windows.Copilot
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
Write-Host \"Install Copilot\"
dism /online /add-package /package-name:Microsoft.Windows.Copilot
"
- ]
- },
- "WPFTweaksDisableLMS1": {
- "Content": "Disable Intel MM (vPro LMS)",
- "Description": "Intel LMS service is always listening on all ports and could be a huge security risk. There is no need to run LMS on home machines and even in the Enterprise there are better solutions.",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a026_",
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksDisableLMS1": {
+ "Content": "Disable Intel MM (vPro LMS)",
+ "Description": "Intel LMS service is always listening on all ports and could be a huge security risk. There is no need to run LMS on home machines and even in the Enterprise there are better solutions.",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a026_",
+ "InvokeScript": [
+ "
Write-Host \"Kill LMS\"
$serviceName = \"LMS\"
Write-Host \"Stopping and disabling service: $serviceName\"
@@ -11261,8 +11411,8 @@ $sync.configs.tweaks = '{
}
foreach ($file in $lmsFiles) {
Write-Host \"Taking ownership of file: $($file.FullName)\";
- \u0026 icacls $($file.FullName) /grant Administrators:F /T /C /Q;
- \u0026 takeown /F $($file.FullName) /A /R /D Y;
+ & icacls $($file.FullName) /grant Administrators:F /T /C /Q;
+ & takeown /F $($file.FullName) /A /R /D Y;
Write-Host \"Deleting file: $($file.FullName)\";
Remove-Item $($file.FullName) -Force -ErrorAction SilentlyContinue;
}
@@ -11271,24 +11421,24 @@ $sync.configs.tweaks = '{
} else {
Write-Host \"All found LMS.exe files have been deleted.\";
}
- Write-Host \u0027\u0027Intel LMS vPro service has been disabled, removed, and blocked.\u0027\u0027;
+ Write-Host ''Intel LMS vPro service has been disabled, removed, and blocked.'';
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
Write-Host \"LMS vPro needs to be redownloaded from intel.com\"
"
- ]
- },
- "WPFTweaksRemoveOnedrive": {
- "Content": "Remove OneDrive",
- "Description": "Moves OneDrive files to Default Home Folders and Uninstalls it.",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a030_",
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksRemoveOnedrive": {
+ "Content": "Remove OneDrive",
+ "Description": "Moves OneDrive files to Default Home Folders and Uninstalls it.",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a030_",
+ "InvokeScript": [
+ "
$OneDrivePath = $($env:OneDrive)
Write-Host \"Removing OneDrive\"
$regPath = \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OneDriveSetup.exe\"
@@ -11298,13 +11448,13 @@ $sync.configs.tweaks = '{
Start-Process -FilePath $OneDriveExe -ArgumentList \"$OneDriveArgs /silent\" -NoNewWindow -Wait
}
else{
- Write-Host \"Onedrive dosn\u0027\u0027t seem to be installed anymore\" -ForegroundColor Red
+ Write-Host \"Onedrive dosn''t seem to be installed anymore\" -ForegroundColor Red
return
}
# Check if OneDrive got Uninstalled
if (-not (Test-Path $regPath)){
Write-Host \"Copy downloaded Files from the OneDrive Folder to Root UserProfile\"
- Start-Process -FilePath powershell -ArgumentList \"robocopy \u0027\u0027$($OneDrivePath)\u0027\u0027 \u0027\u0027$($env:USERPROFILE.TrimEnd())\\\u0027\u0027 /mov /e /xj\" -NoNewWindow -Wait
+ Start-Process -FilePath powershell -ArgumentList \"robocopy ''$($OneDrivePath)'' ''$($env:USERPROFILE.TrimEnd())\\'' /mov /e /xj\" -NoNewWindow -Wait
Write-Host \"Removing OneDrive leftovers\"
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue \"$env:localappdata\\Microsoft\\OneDrive\"
@@ -11330,7 +11480,7 @@ $sync.configs.tweaks = '{
Remove-Item -Force -ErrorAction SilentlyContinue \"$env:userprofile\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\OneDrive.lnk\"
Write-Host \"Removing scheduled task\"
- Get-ScheduledTask -TaskPath \u0027\u0027\\\u0027\u0027 -TaskName \u0027\u0027OneDrive*\u0027\u0027 -ea SilentlyContinue | Unregister-ScheduledTask -Confirm:$false
+ Get-ScheduledTask -TaskPath ''\\'' -TaskName ''OneDrive*'' -ea SilentlyContinue | Unregister-ScheduledTask -Confirm:$false
# Add Shell folders restoring default locations
Write-Host \"Shell Fixing\"
@@ -11369,45 +11519,45 @@ $sync.configs.tweaks = '{
Write-Host \"Something went Wrong during the Unistallation of OneDrive\" -ForegroundColor Red
}
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
Write-Host \"Install OneDrive\"
Start-Process -FilePath winget -ArgumentList \"install -e --accept-source-agreements --accept-package-agreements --silent Microsoft.OneDrive \" -NoNewWindow -Wait
"
- ]
- },
- "WPFTweaksDisableNotifications": {
- "Content": "Disable Notification Tray/Calendar",
- "Description": "Disables all Notifications INCLUDING Calendar",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a026_",
- "registry": [
- {
- "Path": "HKCU:\\Software\\Policies\\Microsoft\\Windows\\Explorer",
- "Name": "DisableNotificationCenter",
- "Type": "DWord",
- "Value": "1",
- "OriginalValue": "0"
- },
- {
- "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
- "Name": "ToastEnabled",
- "Type": "DWord",
- "Value": "0",
- "OriginalValue": "1"
- }
- ]
- },
- "WPFTweaksDebloatAdobe": {
- "Content": "Adobe Debloat",
- "Description": "Manages Adobe Services, Adobe Desktop Service, and Acrobat Updates",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a021_",
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksDisableNotifications": {
+ "Content": "Disable Notification Tray/Calendar",
+ "Description": "Disables all Notifications INCLUDING Calendar",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a026_",
+ "registry": [
+ {
+ "Path": "HKCU:\\Software\\Policies\\Microsoft\\Windows\\Explorer",
+ "Name": "DisableNotificationCenter",
+ "Type": "DWord",
+ "Value": "1",
+ "OriginalValue": "0"
+ },
+ {
+ "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\PushNotifications",
+ "Name": "ToastEnabled",
+ "Type": "DWord",
+ "Value": "0",
+ "OriginalValue": "1"
+ }
+ ]
+ },
+ "WPFTweaksDebloatAdobe": {
+ "Content": "Adobe Debloat",
+ "Description": "Manages Adobe Services, Adobe Desktop Service, and Acrobat Updates",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a021_",
+ "InvokeScript": [
+ "
function CCStopper {
$path = \"C:\\Program Files (x86)\\Common Files\\Adobe\\Adobe Desktop Common\\ADS\\Adobe Desktop Service.exe\"
@@ -11431,7 +11581,7 @@ $sync.configs.tweaks = '{
# 0 = Do not download or install updates automatically
# 2 = Automatically download updates but let the user choose when to install them
# 3 = Automatically download and install updates (default value)
- # 4 = Notify the user when an update is available but don\u0027\u0027t download or install it automatically
+ # 4 = Notify the user when an update is available but don''t download or install it automatically
# = It notifies the user using Windows Notifications. It runs on startup without having to have a Service/Acrobat/Reader running, therefore 0 is the next best thing.
$rootPath = \"HKLM:\\SOFTWARE\\WOW6432Node\\Adobe\\Adobe ARM\\Legacy\\Acrobat\"
@@ -11455,9 +11605,9 @@ $sync.configs.tweaks = '{
CCStopper
AcrobatUpdates
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
function RestoreCCService {
$originalPath = \"C:\\Program Files (x86)\\Common Files\\Adobe\\Adobe Desktop Common\\ADS\\Adobe Desktop Service.exe.old\"
$newPath = \"C:\\Program Files (x86)\\Common Files\\Adobe\\Adobe Desktop Common\\ADS\\Adobe Desktop Service.exe\"
@@ -11494,68 +11644,68 @@ $sync.configs.tweaks = '{
RestoreCCService
AcrobatUpdates
"
- ],
- "service": [
- {
- "Name": "AGSService",
- "StartupType": "Disabled",
- "OriginalType": "Automatic"
- },
- {
- "Name": "AGMService",
- "StartupType": "Disabled",
- "OriginalType": "Automatic"
- },
- {
- "Name": "AdobeUpdateService",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "Adobe Acrobat Update",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "Adobe Genuine Monitor Service",
- "StartupType": "Disabled",
- "OriginalType": "Automatic"
- },
- {
- "Name": "AdobeARMservice",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "Adobe Licensing Console",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "CCXProcess",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "AdobeIPCBroker",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- },
- {
- "Name": "CoreSync",
- "StartupType": "Manual",
- "OriginalType": "Automatic"
- }
- ]
- },
- "WPFTweaksBlockAdobeNet": {
- "Content": "Adobe Network Block",
- "Description": "Reduce user interruptions by selectively blocking connections to Adobe\u0026#39;s activation and telemetry servers. Credit: Ruddernation-Designs",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a021_",
- "InvokeScript": [
- "
+ ],
+ "service": [
+ {
+ "Name": "AGSService",
+ "StartupType": "Disabled",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "AGMService",
+ "StartupType": "Disabled",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "AdobeUpdateService",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "Adobe Acrobat Update",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "Adobe Genuine Monitor Service",
+ "StartupType": "Disabled",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "AdobeARMservice",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "Adobe Licensing Console",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "CCXProcess",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "AdobeIPCBroker",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ },
+ {
+ "Name": "CoreSync",
+ "StartupType": "Manual",
+ "OriginalType": "Automatic"
+ }
+ ]
+ },
+ "WPFTweaksBlockAdobeNet": {
+ "Content": "Adobe Network Block",
+ "Description": "Reduce user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a021_",
+ "InvokeScript": [
+ "
# Define the URL of the remote HOSTS file and the local paths
$remoteHostsUrl = \"https://raw.githubusercontent.com/Ruddernation-Designs/Adobe-URL-Block-List/master/hosts\"
$localHostsPath = \"C:\\Windows\\System32\\drivers\\etc\\hosts\"
@@ -11609,9 +11759,9 @@ $sync.configs.tweaks = '{
Write-Error \"Failed to flush DNS cache. Error: $_\"
}
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
# Define the local path of the HOSTS file
$localHostsPath = \"C:\\Windows\\System32\\drivers\\etc\\hosts\"
@@ -11659,314 +11809,317 @@ $sync.configs.tweaks = '{
Write-Error \"Failed to flush DNS cache. Error: $_\"
}
"
- ]
- },
- "WPFTweaksRightClickMenu": {
- "Content": "Set Classic Right-Click Menu ",
- "Description": "Great Windows 11 tweak to bring back good context menus when right clicking things in explorer.",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a027_",
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksRightClickMenu": {
+ "Content": "Set Classic Right-Click Menu ",
+ "Description": "Great Windows 11 tweak to bring back good context menus when right clicking things in explorer.",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a027_",
+ "InvokeScript": [
+ "
New-Item -Path \"HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\" -Name \"InprocServer32\" -force -value \"\"
Write-Host Restarting explorer.exe ...
$process = Get-Process -Name \"explorer\"
Stop-Process -InputObject $process
"
- ],
- "UndoScript": [
- "
+ ],
+ "UndoScript": [
+ "
Remove-Item -Path \"HKCU:\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\" -Recurse -Confirm:$false -Force
# Restarting Explorer in the Undo Script might not be necessary, as the Registry change without restarting Explorer does work, but just to make sure.
Write-Host Restarting explorer.exe ...
$process = Get-Process -Name \"explorer\"
Stop-Process -InputObject $process
"
- ]
- },
- "WPFTweaksDiskCleanup": {
- "Content": "Run Disk Cleanup",
- "Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a009_",
- "InvokeScript": [
- "
+ ]
+ },
+ "WPFTweaksDiskCleanup": {
+ "Content": "Run Disk Cleanup",
+ "Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a009_",
+ "InvokeScript": [
+ "
cleanmgr.exe /d C: /VERYLOWDISK
Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
"
- ]
- },
- "WPFTweaksDeleteTempFiles": {
- "Content": "Delete Temporary Files",
- "Description": "Erases TEMP Folders",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a002_",
- "InvokeScript": [
- "Get-ChildItem -Path \"C:\\Windows\\Temp\" *.* -Recurse | Remove-Item -Force -Recurse
+ ]
+ },
+ "WPFTweaksDeleteTempFiles": {
+ "Content": "Delete Temporary Files",
+ "Description": "Erases TEMP Folders",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a002_",
+ "InvokeScript": [
+ "Get-ChildItem -Path \"C:\\Windows\\Temp\" *.* -Recurse | Remove-Item -Force -Recurse
Get-ChildItem -Path $env:TEMP *.* -Recurse | Remove-Item -Force -Recurse"
- ]
- },
- "WPFTweaksDVR": {
- "Content": "Disable GameDVR",
- "Description": "GameDVR is a Windows App that is a dependency for some Store Games. I\u0026#39;ve never met someone that likes it, but it\u0026#39;s there for the XBOX crowd.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a005_",
- "registry": [
- {
- "Path": "HKCU:\\System\\GameConfigStore",
- "Name": "GameDVR_FSEBehavior",
- "Value": "2",
- "OriginalValue": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\System\\GameConfigStore",
- "Name": "GameDVR_Enabled",
- "Value": "0",
- "OriginalValue": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\System\\GameConfigStore",
- "Name": "GameDVR_HonorUserFSEBehaviorMode",
- "Value": "1",
- "OriginalValue": "0",
- "Type": "DWord"
- },
- {
- "Path": "HKCU:\\System\\GameConfigStore",
- "Name": "GameDVR_EFSEFeatureFlags",
- "Value": "0",
- "OriginalValue": "1",
- "Type": "DWord"
- },
- {
- "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\GameDVR",
- "Name": "AllowGameDVR",
- "Value": "0",
- "OriginalValue": "1",
- "Type": "DWord"
- }
- ]
- },
- "WPFTweaksTeredo": {
- "Content": "Disable Teredo",
- "Description": "Teredo network tunneling is a ipv6 feature that can cause additional latency.",
- "category": "Essential Tweaks",
- "panel": "1",
- "Order": "a005_",
- "registry": [
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
- "Name": "DisabledComponents",
- "Value": "1",
- "OriginalValue": "0",
- "Type": "DWord"
- }
- ],
- "InvokeScript": [
- "netsh interface teredo set state disabled"
- ],
- "UndoScript": [
- "netsh interface teredo set state default"
- ]
- },
- "WPFTweaksDisableipsix": {
- "Content": "Disable IPv6",
- "Description": "Disables IPv6.",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a023_",
- "registry": [
- {
- "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
- "Name": "DisabledComponents",
- "Value": "255",
- "OriginalValue": "0",
- "Type": "DWord"
- }
- ],
- "InvokeScript": [
- "Disable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6"
- ],
- "UndoScript": [
- "Enable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6"
- ]
- },
- "WPFTweaksDisableFSO": {
- "Content": "Disable Fullscreen Optimizations",
- "Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a024_",
- "registry": [
- {
- "Path": "HKCU:\\System\\GameConfigStore",
- "Name": "GameDVR_DXGIHonorFSEWindowsCompatible",
- "Value": "1",
- "OriginalValue": "0",
- "Type": "DWord"
- }
- ]
- },
- "WPFToggleDarkMode": {
- "Content": "Dark Theme",
- "Description": "Enable/Disable Dark Mode.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a060_",
- "Type": "Toggle"
- },
- "WPFToggleBingSearch": {
- "Content": "Bing Search in Start Menu",
- "Description": "If enable then includes web search results from Bing in your Start Menu search.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a061_",
- "Type": "Toggle"
- },
- "WPFToggleNumLock": {
- "Content": "NumLock on Startup",
- "Description": "Toggle the Num Lock key state when your computer starts.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a062_",
- "Type": "Toggle"
- },
- "WPFToggleVerboseLogon": {
- "Content": "Verbose Logon Messages",
- "Description": "Show detailed messages during the login process for troubleshooting and diagnostics.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a063_",
- "Type": "Toggle"
- },
- "WPFToggleShowExt": {
- "Content": "Show File Extensions",
- "Description": "If enabled then File extensions (e.g., .txt, .jpg) are visible.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a064_",
- "Type": "Toggle"
- },
- "WPFToggleSnapWindow": {
- "Content": "Snap Window",
- "Description": "If enabled you can align windows by dragging them. | Relogin Required",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a065_",
- "Type": "Toggle"
- },
- "WPFToggleSnapFlyout": {
- "Content": "Snap Assist Flyout",
- "Description": "If enabled then Snap preview is disabled when maximize button is hovered.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a066_",
- "Type": "Toggle"
- },
- "WPFToggleSnapSuggestion": {
- "Content": "Snap Assist Suggestion",
- "Description": "If enabled then you will get suggestions to snap other applications in the left over spaces.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a067_",
- "Type": "Toggle"
- },
- "WPFToggleMouseAcceleration": {
- "Content": "Mouse Acceleration",
- "Description": "If Enabled then Cursor movement is affected by the speed of your physical mouse movements.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a068_",
- "Type": "Toggle"
- },
- "WPFToggleStickyKeys": {
- "Content": "Sticky Keys",
- "Description": "If Enabled then Sticky Keys is activated - Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a070_",
- "Type": "Toggle"
- },
- "WPFToggleTaskbarSearch": {
- "Content": "Taskbar Search",
- "Description": "If Enabled Search Button will be on the taskbar.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a068_",
- "Type": "Toggle"
- },
- "WPFOOSUbutton": {
- "Content": "Run OO Shutup 10",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a039_",
- "Type": "220"
- },
- "WPFToggleTaskbarWidgets": {
- "Content": "Taskbar Widgets",
- "Description": "If Enabled then Widgets Icon in Taskbar will be shown.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a069_",
- "Type": "Toggle"
- },
- "WPFchangedns": {
- "Content": "DNS",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a040_",
- "Type": "Combobox",
- "ComboItems": "Default DHCP Google Cloudflare Cloudflare_Malware Cloudflare_Malware_Adult Level3 Open_DNS Quad9"
- },
- "WPFTweaksbutton": {
- "Content": "Run Tweaks",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a041_",
- "Type": "160"
- },
- "WPFUndoall": {
- "Content": "Undo Selected Tweaks",
- "category": "z__Advanced Tweaks - CAUTION",
- "panel": "1",
- "Order": "a042_",
- "Type": "160"
- },
- "WPFAddUltPerf": {
- "Content": "Add and Activate Ultimate Performance Profile",
- "category": "Performance Plans",
- "panel": "2",
- "Order": "a080_",
- "Type": "300"
- },
- "WPFRemoveUltPerf": {
- "Content": "Remove Ultimate Performance Profile",
- "category": "Performance Plans",
- "panel": "2",
- "Order": "a081_",
- "Type": "300"
- },
- "WPFWinUtilShortcut": {
- "Content": "Create WinUtil Shortcut",
- "category": "Shortcuts",
- "panel": "2",
- "Order": "a082_",
- "Type": "300"
- },
- "WPFToggleTaskView": {
- "Content": "Task View",
- "Description": "If Enabled then Task View Icon in Taskbar will be shown.",
- "category": "Customize Preferences",
- "panel": "2",
- "Order": "a069_",
- "Type": "Toggle"
- }
+ ]
+ },
+ "WPFTweaksDVR": {
+ "Content": "Disable GameDVR",
+ "Description": "GameDVR is a Windows App that is a dependency for some Store Games. I've never met someone that likes it, but it's there for the XBOX crowd.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a005_",
+ "registry": [
+ {
+ "Path": "HKCU:\\System\\GameConfigStore",
+ "Name": "GameDVR_FSEBehavior",
+ "Value": "2",
+ "OriginalValue": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\System\\GameConfigStore",
+ "Name": "GameDVR_Enabled",
+ "Value": "0",
+ "OriginalValue": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\System\\GameConfigStore",
+ "Name": "GameDVR_HonorUserFSEBehaviorMode",
+ "Value": "1",
+ "OriginalValue": "0",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKCU:\\System\\GameConfigStore",
+ "Name": "GameDVR_EFSEFeatureFlags",
+ "Value": "0",
+ "OriginalValue": "1",
+ "Type": "DWord"
+ },
+ {
+ "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\GameDVR",
+ "Name": "AllowGameDVR",
+ "Value": "0",
+ "OriginalValue": "1",
+ "Type": "DWord"
+ }
+ ]
+ },
+ "WPFTweaksTeredo": {
+ "Content": "Disable Teredo",
+ "Description": "Teredo network tunneling is a ipv6 feature that can cause additional latency.",
+ "category": "Essential Tweaks",
+ "panel": "1",
+ "Order": "a005_",
+ "registry": [
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
+ "Name": "DisabledComponents",
+ "Value": "1",
+ "OriginalValue": "0",
+ "Type": "DWord"
+ }
+ ],
+ "InvokeScript": [
+ "netsh interface teredo set state disabled"
+ ],
+ "UndoScript": [
+ "netsh interface teredo set state default"
+ ]
+ },
+ "WPFTweaksDisableipsix": {
+ "Content": "Disable IPv6",
+ "Description": "Disables IPv6.",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a023_",
+ "registry": [
+ {
+ "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
+ "Name": "DisabledComponents",
+ "Value": "255",
+ "OriginalValue": "0",
+ "Type": "DWord"
+ }
+ ],
+ "InvokeScript": [
+ "Disable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6"
+ ],
+ "UndoScript": [
+ "Enable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6"
+ ]
+ },
+ "WPFTweaksDisableFSO": {
+ "Content": "Disable Fullscreen Optimizations",
+ "Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a024_",
+ "registry": [
+ {
+ "Path": "HKCU:\\System\\GameConfigStore",
+ "Name": "GameDVR_DXGIHonorFSEWindowsCompatible",
+ "Value": "1",
+ "OriginalValue": "0",
+ "Type": "DWord"
+ }
+ ]
+ },
+ "WPFToggleDarkMode": {
+ "Content": "Enable Dark Theme for Windows",
+ "Description": "Enable/Disable Dark Mode.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a100_",
+ "Type": "Toggle"
+ },
+ "WPFToggleBingSearch": {
+ "Content": "Enable Bing Search in Start Menu",
+ "Description": "If enable then includes web search results from Bing in your Start Menu search.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a101_",
+ "Type": "Toggle"
+ },
+ "WPFToggleNumLock": {
+ "Content": "Enable NumLock on Startup",
+ "Description": "Toggle the Num Lock key state when your computer starts.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a102_",
+ "Type": "Toggle"
+ },
+ "WPFToggleVerboseLogon": {
+ "Content": "Enable Verbose Messages During Logon",
+ "Description": "Show detailed messages during the login process for troubleshooting and diagnostics.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a103_",
+ "Type": "Toggle"
+ },
+ "WPFToggleSnapWindow": {
+ "Content": "Enable Snap Window",
+ "Description": "If enabled you can align windows by dragging them. | Relogin Required",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a104_",
+ "Type": "Toggle"
+ },
+ "WPFToggleSnapFlyout": {
+ "Content": "Enable Snap Assist Flyout",
+ "Description": "If enabled then Snap preview is disabled when maximize button is hovered.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a105_",
+ "Type": "Toggle"
+ },
+ "WPFToggleSnapSuggestion": {
+ "Content": "Enable Snap Assist Suggestion",
+ "Description": "If enabled then you will get suggestions to snap other applications in the left over spaces.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a106_",
+ "Type": "Toggle"
+ },
+ "WPFToggleMouseAcceleration": {
+ "Content": "Enable Mouse Acceleration",
+ "Description": "If Enabled then Cursor movement is affected by the speed of your physical mouse movements.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a107_",
+ "Type": "Toggle"
+ },
+ "WPFToggleStickyKeys": {
+ "Content": "Enable Sticky Keys",
+ "Description": "If Enabled then Sticky Keys is activated - Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a108_",
+ "Type": "Toggle"
+ },
+ "WPFToggleShowExt": {
+ "Content": "Show File Extensions",
+ "Description": "If enabled then File extensions (e.g., .txt, .jpg) are visible.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a200_",
+ "Type": "Toggle"
+ },
+ "WPFToggleTaskbarSearch": {
+ "Content": "Show Search Button in Taskbar",
+ "Description": "If Enabled Search Button will be on the taskbar.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a201_",
+ "Type": "Toggle"
+ },
+ "WPFToggleTaskView": {
+ "Content": "Show Task View Button in Taskbar",
+ "Description": "If Enabled then Task View Button in Taskbar will be shown.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a202_",
+ "Type": "Toggle"
+ },
+ "WPFToggleTaskbarWidgets": {
+ "Content": "Show Widgets Button in Taskbar",
+ "Description": "If Enabled then Widgets Button in Taskbar will be shown.",
+ "category": "Customize Preferences",
+ "panel": "2",
+ "Order": "a203_",
+ "Type": "Toggle"
+ },
+ "WPFOOSUbutton": {
+ "Content": "Run OO Shutup 10",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a039_",
+ "Type": "Button"
+ },
+ "WPFchangedns": {
+ "Content": "DNS",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a040_",
+ "Type": "Combobox",
+ "ComboItems": "Default DHCP Google Cloudflare Cloudflare_Malware Cloudflare_Malware_Adult Level3 Open_DNS Quad9"
+ },
+ "WPFTweaksbutton": {
+ "Content": "Run Tweaks",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a041_",
+ "Type": "Button"
+ },
+ "WPFUndoall": {
+ "Content": "Undo Selected Tweaks",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a042_",
+ "Type": "Button"
+ },
+ "WPFAddUltPerf": {
+ "Content": "Add and Activate Ultimate Performance Profile",
+ "category": "Performance Plans",
+ "panel": "2",
+ "Order": "a080_",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFRemoveUltPerf": {
+ "Content": "Remove Ultimate Performance Profile",
+ "category": "Performance Plans",
+ "panel": "2",
+ "Order": "a081_",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ },
+ "WPFWinUtilShortcut": {
+ "Content": "Create WinUtil Shortcut",
+ "category": "Shortcuts",
+ "panel": "2",
+ "Order": "a082_",
+ "Type": "Button",
+ "ButtonWidth": "300"
+ }
}' | convertfrom-json
$inputXML = '
+
+
@@ -12114,7 +12269,7 @@ $inputXML = '
@@ -12167,7 +12323,9 @@ $inputXML = '
-
@@ -12207,7 +12365,9 @@ $inputXML = '
-
+
+
+
@@ -12236,12 +12396,12 @@ $inputXML = '
-
-
-
+
@@ -12556,51 +12704,51 @@ $inputXML = '
-
+
-
-
-
+ Install
-
-
+ Tweaks
-
-
+ Config
-
-
+ Updates
-
-
+ MicroWin
@@ -12612,13 +12760,23 @@ $inputXML = '
+
@@ -12626,11 +12784,19 @@ $inputXML = '
+ FontSize="{IconFontSize}"
+ Margin="16,0,0,0">
+
@@ -12663,11 +12829,11 @@ $inputXML = '
+ Foreground="{MainForegroundColor}" FontSize="{IconFontSize}" Name="WPFCloseButton" />
@@ -12692,1135 +12858,1503 @@ $inputXML = '
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -13833,137 +14367,147 @@ $inputXML = '
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -13981,47 +14525,51 @@ $inputXML = '
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -14036,19 +14584,19 @@ $inputXML = '
-
+
This is the default settings that come with Windows. No modifications are made and will remove any custom windows update settings.Note: If you still encounter update errors, reset all updates in the config tab. That will restore ALL Microsoft Update Services from their servers and reinstall them to default settings.
-
+
This is my recommended setting I use on all computers. It will delay feature updates by 2 years and will install security updates 4 days after release.Feature Updates: Adds features and often bugs to systems when they are released. You want to delay these as long as possible.Security Updates: Typically these are pressing security flaws that need to be patched quickly. You only want to delay these a couple of days just to see if they are safe and don''t break other systems. You don''t want to go without these for ANY extended periods of time.
-
+
This completely disables ALL Windows Updates and is NOT RECOMMENDED. However, it can be suitable if you use your system for a select purpose and do not actively browse the internet. Note: Your system will be easier to hack and infect without security updates.
@@ -14056,7 +14604,7 @@ $inputXML = '
-
+
@@ -14071,12 +14619,12 @@ $inputXML = '
-
+
Choose a Windows ISO file that you''ve downloaded
Check the status in the console
-
@@ -14093,6 +14641,8 @@ $inputXML = '
@@ -14158,7 +14708,7 @@ $inputXML = '
+ FontSize="{IconFontSize}" Margin="16,0,0,0">
/\/\ (_) ___ _ __ ___ / / /\ \ \(_) _ __
@@ -14311,15 +14861,16 @@ $inputXML = Set-WinUtilUITheme -inputXML $inputXML -themeName $ctttheme
# Read the XAML file
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
-try { $sync["Form"] = [Windows.Markup.XamlReader]::Load( $reader ) }
-catch [System.Management.Automation.MethodInvocationException] {
+try {
+ $sync["Form"] = [Windows.Markup.XamlReader]::Load( $reader )
+} catch [System.Management.Automation.MethodInvocationException] {
Write-Warning "We ran into a problem with the XAML code. Check the syntax for this control..."
Write-Host $error[0].Exception.Message -ForegroundColor Red
+
If ($error[0].Exception.Message -like "*button*") {
write-warning "Ensure your <button in the `$inputXML does NOT have a Click=ButtonClick property. PS can't handle this`n`n`n`n"
}
-}
-catch {
+} catch {
Write-Host "Unable to load Windows.Markup.XamlReader. Double-check syntax and ensure .net is installed."
}
@@ -14394,16 +14945,6 @@ Invoke-WPFRunspace -ScriptBlock {
# Print the logo
Invoke-WPFFormVariables
-# download the logo
-$logoUrl = "https://christitus.com/images/logo-full.png"
-# Download the image
-$logoPath = "$env:TEMP\cttlogo.png"
-Invoke-WebRequest -Uri $logoUrl -OutFile $logoPath
-
-# Progress bar in taskbaritem > Set-WinUtilProgressbar
-$sync["Form"].TaskbarItemInfo = New-Object System.Windows.Shell.TaskbarItemInfo
-Set-WinUtilTaskbaritem -state "None"
-
# Set the titlebar
$sync["Form"].title = $sync["Form"].title + " " + $sync.version
# Set the commands that will run when the form is closed
@@ -14414,9 +14955,9 @@ $sync["Form"].Add_Closing({
})
# Attach the event handler to the Click event
-$sync.CheckboxFilterClear.Add_Click({
- $sync.CheckboxFilter.Text = ""
- $sync.CheckboxFilterClear.Visibility = "Collapsed"
+$sync.SearchBarClearButton.Add_Click({
+ $sync.SearchBar.Text = ""
+ $sync.SearchBarClearButton.Visibility = "Collapsed"
})
# add some shortcuts for people that don't like clicking
@@ -14427,9 +14968,9 @@ $commonKeyEvents = {
if ($_.Key -eq "Escape")
{
- $sync.CheckboxFilter.SelectAll()
- $sync.CheckboxFilter.Text = ""
- $sync.CheckboxFilterClear.Visibility = "Collapsed"
+ $sync.SearchBar.SelectAll()
+ $sync.SearchBar.Text = ""
+ $sync.SearchBarClearButton.Visibility = "Collapsed"
return
}
@@ -14460,11 +15001,11 @@ $commonKeyEvents = {
}
# shortcut for the filter box
if ($_.Key -eq "F" -and $_.KeyboardDevice.Modifiers -eq "Ctrl") {
- if ($sync.CheckboxFilter.Text -eq "Ctrl-F to filter") {
- $sync.CheckboxFilter.SelectAll()
- $sync.CheckboxFilter.Text = ""
+ if ($sync.SearchBar.Text -eq "Ctrl-F to filter") {
+ $sync.SearchBar.SelectAll()
+ $sync.SearchBar.Text = ""
}
- $sync.CheckboxFilter.Focus()
+ $sync.SearchBar.Focus()
}
}
@@ -14538,8 +15079,37 @@ Add-Type @"
}
}
+
+ # Using a TaskbarItem Overlay until someone figures out how to replace the icon correctly
+
+ # URL of the image
+ $imageUrl = "https://christitus.com/images/logo-full.png"
+
+ # Download the image
+ $imagePath = "$env:TEMP\logo-full.png"
+ Invoke-WebRequest -Uri $imageUrl -OutFile $imagePath
+
+ # Read the image file as a byte array
+ $imageBytes = [System.IO.File]::ReadAllBytes($imagePath)
+
+ # Convert the byte array to a Base64 string
+ $base64String = [System.Convert]::ToBase64String($imageBytes)
+
+ # Create a streaming image by streaming the base64 string to a bitmap streamsource
+ $bitmap = New-Object System.Windows.Media.Imaging.BitmapImage
+ $bitmap.BeginInit()
+ $bitmap.StreamSource = [System.IO.MemoryStream][System.Convert]::FromBase64String($base64String)
+ $bitmap.EndInit()
+ $bitmap.Freeze()
+
+ # Ensure TaskbarItemInfo is created if not already
+ if (-not $sync["Form"].TaskbarItemInfo) {
+ $sync["Form"].TaskbarItemInfo = New-Object System.Windows.Shell.TaskbarItemInfo
+ }
+
# Set the overlay icon for the taskbar
- Set-WinUtilTaskbaritem -overlay $logoPath
+ $sync["Form"].TaskbarItemInfo.Overlay = $bitmap
+
$rect = New-Object RECT
[Window]::GetWindowRect($windowHandle, [ref]$rect)
@@ -14612,7 +15182,7 @@ Add-Type @"
})
-# Load Checkboxes and Labels outside of the Filter fuction only once on startup for performance reasons
+# Load Checkboxes and Labels outside of the Filter function only once on startup for performance reasons
$filter = Get-WinUtilVariables -Type CheckBox
$CheckBoxes = ($sync.GetEnumerator()).where{ $psitem.Key -in $filter }
@@ -14622,13 +15192,13 @@ $labels = @{}
$allCategories = $checkBoxes.Name | ForEach-Object {$sync.configs.applications.$_} | Select-Object -Unique -ExpandProperty category
-$sync["CheckboxFilter"].Add_TextChanged({
+$sync["SearchBar"].Add_TextChanged({
- if ($sync.CheckboxFilter.Text -ne "") {
- $sync.CheckboxFilterClear.Visibility = "Visible"
+ if ($sync.SearchBar.Text -ne "") {
+ $sync.SearchBarClearButton.Visibility = "Visible"
}
else {
- $sync.CheckboxFilterClear.Visibility = "Collapsed"
+ $sync.SearchBarClearButton.Visibility = "Collapsed"
}
$activeApplications = @()
@@ -14639,7 +15209,7 @@ $sync["CheckboxFilter"].Add_TextChanged({
continue
}
- $textToSearch = $sync.CheckboxFilter.Text.ToLower()
+ $textToSearch = $sync.SearchBar.Text.ToLower()
$checkBoxName = $CheckBox.Key
$textBlockName = $checkBoxName + "Link"
@@ -14719,7 +15289,12 @@ MicroWin : @KonTy
GitHub : ChrisTitusTech/winutil
Version : $($sync.version)
"@
- Show-CustomDialog -Message $authorInfo -Width 400
+ $FontSize = $sync.configs.themes.$ctttheme.CustomDialogFontSize
+ $HeaderFontSize = $sync.configs.themes.$ctttheme.CustomDialogFontSizeHeader
+ $IconSize = $sync.configs.themes.$ctttheme.CustomDialogIconSize
+ $Width = $sync.configs.themes.$ctttheme.CustomDialogWidth
+ $Height = $sync.configs.themes.$ctttheme.CustomDialogHeight
+ Show-CustomDialog -Message $authorInfo -Width $Width -Height $Height -FontSize $FontSize -HeaderFontSize $HeaderFontSize -IconSize $IconSize
})
$sync["Form"].ShowDialog() | out-null
Stop-Transcript
diff --git a/xaml/inputXML.xaml b/xaml/inputXML.xaml
index 0132d2bf..4648924f 100644
--- a/xaml/inputXML.xaml
+++ b/xaml/inputXML.xaml
@@ -49,6 +49,8 @@
@@ -197,7 +200,9 @@
BorderBrush="{ButtonBackgroundColor}"
BorderThickness="{ButtonBorderThickness}"
CornerRadius="{ButtonCornerRadius}">
-
@@ -237,7 +242,9 @@
-
+
+
+
@@ -266,12 +273,12 @@
-
-
-
+
@@ -586,51 +581,51 @@
-
+
-
-
-
+ Install
-
-
+ Tweaks
-
-
+ Config
-
-
+ Updates
-
-
+ MicroWin
@@ -642,13 +637,23 @@
+
@@ -656,11 +661,19 @@
Grid.Column="0"
VerticalAlignment="Center" HorizontalAlignment="Left"
FontFamily="Segoe MDL2 Assets"
- FontSize="14" Margin="16,0,0,0">
+ FontSize="{IconFontSize}"
+ Margin="16,0,0,0">
+
-
-
+
+
-
+
@@ -693,11 +706,11 @@
Content="×" BorderThickness="0"
BorderBrush="Transparent"
Background="{MainBackgroundColor}"
- Width="35" Height="35"
+ Width="{IconButtonSize}" Height="{IconButtonSize}"
HorizontalAlignment="Right" VerticalAlignment="Top"
Margin="0,5,5,0"
FontFamily="Arial"
- Foreground="{MainForegroundColor}" FontSize="18" Name="WPFCloseButton" />
+ Foreground="{MainForegroundColor}" FontSize="{IconFontSize}" Name="WPFCloseButton" />
@@ -733,17 +746,17 @@
-
+
{{InstallPanel_tweaks}}
-
-
-
-
-
-
+
+
+
+
+
+
@@ -774,19 +787,19 @@
-
+ This is the default settings that come with Windows. No modifications are made and will remove any custom windows update settings.Note: If you still encounter update errors, reset all updates in the config tab. That will restore ALL Microsoft Update Services from their servers and reinstall them to default settings.
-
+ This is my recommended setting I use on all computers. It will delay feature updates by 2 years and will install security updates 4 days after release.Feature Updates: Adds features and often bugs to systems when they are released. You want to delay these as long as possible.Security Updates: Typically these are pressing security flaws that need to be patched quickly. You only want to delay these a couple of days just to see if they are safe and don't break other systems. You don't want to go without these for ANY extended periods of time.
-
+ This completely disables ALL Windows Updates and is NOT RECOMMENDED. However, it can be suitable if you use your system for a select purpose and do not actively browse the internet. Note: Your system will be easier to hack and infect without security updates.
@@ -794,7 +807,7 @@
-
+
@@ -809,12 +822,12 @@
HorizontalAlignment="Stretch">
-
+
Choose a Windows ISO file that you've downloaded
Check the status in the console
-
@@ -831,6 +844,8 @@
Foreground="{LabelboxForegroundColor}">
@@ -859,12 +874,12 @@
Choose Windows SKUChoose Windows features you want to remove from the ISO
-
-
-
-
+
+
+
+
-
+
-
+
-
+
@@ -896,7 +911,7 @@
+ FontSize="{IconFontSize}" Margin="16,0,0,0">
/\/\ (_) ___ _ __ ___ / / /\ \ \(_) _ __