Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 762fd6cdd7 |
@@ -9,15 +9,6 @@ body:
|
|||||||
- Remember, we only support Windows 11. If you encounter problems on Windows 10, please consider upgrading to Windows 11.
|
- Remember, we only support Windows 11. If you encounter problems on Windows 10, please consider upgrading to Windows 11.
|
||||||
- For general questions, join our Community-driven [Discord Server](https://discord.gg/RUbZUZyByQ).
|
- For general questions, join our Community-driven [Discord Server](https://discord.gg/RUbZUZyByQ).
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
id: read_issues
|
|
||||||
attributes:
|
|
||||||
label: "I have read the known issues"
|
|
||||||
description: "You [better do](https://winutil.christitus.com/knownissues/), cause your issue can be already there"
|
|
||||||
options:
|
|
||||||
- label: Yes, I did
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
id: affected_part
|
id: affected_part
|
||||||
attributes:
|
attributes:
|
||||||
@@ -38,15 +29,8 @@ body:
|
|||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: tweaks_applied
|
|
||||||
attributes:
|
|
||||||
label: List the tweaks you applied before the issue occurred.
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: error_output
|
id: error_output
|
||||||
attributes:
|
attributes:
|
||||||
label: Paste the full error output (if available) or Screenshot or Video.
|
label: Paste the full error output (if available) or Screenshot.
|
||||||
placeholder: "Include any relevant logs or error messages."
|
placeholder: "Include any relevant logs or error messages."
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
<!--Before you make this PR have you followed the docs here? - https://winutil.christitus.com/contributing/ -->
|
<!--Before you make this PR have you followed the docs here? - https://winutil.christitus.com/contributing/ -->
|
||||||
<!--Documentation is auto-generated from configs - no manual documentation updates needed -->
|
|
||||||
|
|
||||||
## Type of Change
|
## Type of Change
|
||||||
- [ ] New feature
|
- [ ] New feature
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ jobs:
|
|||||||
${{ runner.temp }}/hugo_cache
|
${{ runner.temp }}/hugo_cache
|
||||||
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
|
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-pages-artifact@v5
|
uses: actions/upload-pages-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: ./docs/public
|
path: ./docs/public
|
||||||
|
|
||||||
|
|||||||
@@ -15,63 +15,101 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Process slash command
|
- run: echo "command=false" >> $GITHUB_ENV
|
||||||
uses: actions/github-script@v9
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
const allowedUsers = ["ChrisTitusTech", "og-mrk", "Marterich", "MyDrift-user", "Real-MullaC", "CodingWonders", "GabiNun2", "FluffyPunk"];
|
|
||||||
const commenter = context.payload.comment.user.login;
|
|
||||||
|
|
||||||
// Authorization check first — before any parsing of comment content
|
- name: Check for /label command
|
||||||
if (!allowedUsers.includes(commenter)) {
|
id: check_label_command
|
||||||
console.log(`User ${commenter} is not in the allowlist. Skipping.`);
|
run: |
|
||||||
return;
|
if [[ "${{ contains(github.event.comment.body, '/label') }}" == "true" ]]; then
|
||||||
}
|
echo "command=true" >> $GITHUB_ENV
|
||||||
|
LABEL_NAME=$(echo "${{ github.event.comment.body }}" | awk -F"/label" '/\/label/ { match($2, /'\''([^'\'']*)'\''/, arr); if (arr[1] != "") print arr[1] }')
|
||||||
|
echo "label_command=true" >> $GITHUB_ENV
|
||||||
|
echo "label_name=${LABEL_NAME}" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "label_command=false" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
|
||||||
// Read comment body as data, never interpolated into shell
|
- name: Check for /unlabel command
|
||||||
const body = context.payload.comment.body;
|
id: check_unlabel_command
|
||||||
const issueNumber = context.issue.number;
|
run: |
|
||||||
const owner = context.repo.owner;
|
if [[ "${{ contains(github.event.comment.body, '/unlabel') }}" == "true" ]]; then
|
||||||
const repo = context.repo.repo;
|
echo "command=true" >> $GITHUB_ENV
|
||||||
|
UNLABEL_NAME=$(echo "${{ github.event.comment.body }}" | awk -F"/unlabel" '/\/unlabel/ { match($2, /'\''([^'\'']*)'\''/, arr); if (arr[1] != "") print arr[1] }')
|
||||||
|
echo "unlabel_command=true" >> $GITHUB_ENV
|
||||||
|
echo "unlabel_name=${UNLABEL_NAME}" >> $GITHUB_ENV
|
||||||
|
else
|
||||||
|
echo "unlabel_command=false" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
|
||||||
// /label 'name' or /label name
|
- name: Check for /close command
|
||||||
const labelMatch = body.match(/\/label\s+'([^']+)'|\/label\s+(\S+?)(?:\s|$)/);
|
id: check_close_command
|
||||||
if (labelMatch) {
|
run: |
|
||||||
const labelName = (labelMatch[1] || labelMatch[2]).trim();
|
if [[ "${{ contains(github.event.comment.body, '/close') }}" == "true" ]]; then
|
||||||
console.log(`Adding label: ${labelName}`);
|
echo "command=true" >> $GITHUB_ENV
|
||||||
await github.rest.issues.addLabels({
|
echo "close_command=true" >> $GITHUB_ENV
|
||||||
owner, repo, issue_number: issueNumber,
|
echo "reopen_command=false" >> $GITHUB_ENV
|
||||||
labels: [labelName],
|
else
|
||||||
});
|
echo "close_command=false" >> $GITHUB_ENV
|
||||||
}
|
fi
|
||||||
|
|
||||||
// /unlabel 'name' or /unlabel name
|
- name: Check for /open or /reopen command
|
||||||
const unlabelMatch = body.match(/\/unlabel\s+'([^']+)'|\/unlabel\s+(\S+?)(?:\s|$)/);
|
id: check_reopen_command
|
||||||
if (unlabelMatch) {
|
run: |
|
||||||
const labelName = (unlabelMatch[1] || unlabelMatch[2]).trim();
|
if [[ "${{ contains(github.event.comment.body, '/open') }}" == "true" ]] || [[ "${{ contains(github.event.comment.body, '/reopen') }}" == "true" ]]; then
|
||||||
console.log(`Removing label: ${labelName}`);
|
echo "command=true" >> $GITHUB_ENV
|
||||||
await github.rest.issues.removeLabel({
|
echo "reopen_command=true" >> $GITHUB_ENV
|
||||||
owner, repo, issue_number: issueNumber,
|
echo "close_command=false" >> $GITHUB_ENV
|
||||||
name: labelName,
|
else
|
||||||
});
|
echo "reopen_command=false" >> $GITHUB_ENV
|
||||||
}
|
fi
|
||||||
|
|
||||||
// /close (optionally with 'not planned')
|
- name: Check if the user is allowed
|
||||||
if (body.includes('/close')) {
|
id: check_user
|
||||||
const stateReason = body.includes('not planned') ? 'not_planned' : 'completed';
|
if: env.command == 'true'
|
||||||
console.log(`Closing issue (reason: ${stateReason})`);
|
run: |
|
||||||
await github.rest.issues.update({
|
ALLOWED_USERS=("ChrisTitusTech" "og-mrk" "Marterich" "MyDrift-user" "Real-MullaC" "CodingWonders" "GabiNun")
|
||||||
owner, repo, issue_number: issueNumber,
|
if [[ " ${ALLOWED_USERS[@]} " =~ " ${{ github.event.comment.user.login }} " ]]; then
|
||||||
state: 'closed',
|
echo "user=true" >> $GITHUB_ENV
|
||||||
state_reason: stateReason,
|
else
|
||||||
});
|
exit 0
|
||||||
}
|
fi
|
||||||
|
|
||||||
// /open or /reopen
|
- name: Close issue
|
||||||
if (body.includes('/open') || body.includes('/reopen')) {
|
if: env.close_command == 'true'
|
||||||
console.log('Reopening issue');
|
env:
|
||||||
await github.rest.issues.update({
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
owner, repo, issue_number: issueNumber,
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
||||||
state: 'open',
|
run: |
|
||||||
});
|
echo Closing the issue...
|
||||||
}
|
if [[ "${{ contains(github.event.comment.body, 'not planned') }}" == "true" ]]; then
|
||||||
|
gh issue close $ISSUE_NUMBER --repo ${{ github.repository }} --reason 'not planned'
|
||||||
|
else
|
||||||
|
gh issue close $ISSUE_NUMBER --repo ${{ github.repository }}
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Reopen issue
|
||||||
|
if: env.reopen_command == 'true'
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
||||||
|
run: |
|
||||||
|
echo Reopening the issue...
|
||||||
|
gh issue reopen $ISSUE_NUMBER --repo ${{ github.repository }}
|
||||||
|
|
||||||
|
- name: Label issue
|
||||||
|
if: env.label_command == 'true'
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
||||||
|
run: |
|
||||||
|
echo Labeling the issue...
|
||||||
|
gh issue edit $ISSUE_NUMBER --repo ${{ github.repository }} --add-label "${{ env.label_name }}"
|
||||||
|
|
||||||
|
- name: Remove labels
|
||||||
|
if: env.unlabel_command == 'true'
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
||||||
|
run: |
|
||||||
|
echo Unlabeling the issue...
|
||||||
|
gh issue edit $ISSUE_NUMBER --repo ${{ github.repository }} --remove-label "${{ env.unlabel_name }}"
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ jobs:
|
|||||||
config/feature.json
|
config/feature.json
|
||||||
labels: |
|
labels: |
|
||||||
automated
|
automated
|
||||||
skip-changelog
|
documentation
|
||||||
|
|
||||||
- name: Check outputs
|
- name: Check outputs
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
@@ -11,6 +11,9 @@
|
|||||||
|
|
||||||
winutil.pdb
|
winutil.pdb
|
||||||
|
|
||||||
|
### Preprocessor Hashes ###
|
||||||
|
.preprocessor_hashes.json
|
||||||
|
|
||||||
### Windows ###
|
### Windows ###
|
||||||
|
|
||||||
# Folder config file
|
# Folder config file
|
||||||
@@ -51,6 +54,8 @@ winutil.ps1
|
|||||||
|
|
||||||
binary/
|
binary/
|
||||||
|
|
||||||
|
.preprocessor_hashes.json
|
||||||
|
|
||||||
# Hugo Files
|
# Hugo Files
|
||||||
docs/public/
|
docs/public/
|
||||||
docs/.hugo_build.lock
|
docs/.hugo_build.lock
|
||||||
|
|||||||
@@ -1,50 +1,144 @@
|
|||||||
param (
|
param (
|
||||||
[switch]$Run
|
[switch]$Run,
|
||||||
|
[string]$Arguments
|
||||||
)
|
)
|
||||||
|
|
||||||
$OFS = "`r`n" # Makes it so we dont need to add -Raw to every Get-Content command
|
if ((Get-Item ".\winutil.ps1" -ErrorAction SilentlyContinue).IsReadOnly) {
|
||||||
|
Remove-Item ".\winutil.ps1" -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
$OFS = "`r`n"
|
||||||
|
$scriptname = "winutil.ps1"
|
||||||
|
$workingdir = $PSScriptRoot
|
||||||
|
|
||||||
# Variable to sync between runspaces
|
# Variable to sync between runspaces
|
||||||
$sync = [Hashtable]::Synchronized(@{})
|
$sync = [Hashtable]::Synchronized(@{})
|
||||||
$sync.configs = @{}
|
$sync.configs = @{}
|
||||||
|
|
||||||
# Create the script in memory.
|
function Update-Progress {
|
||||||
$script = [System.Collections.Generic.List[string]]::new()
|
param (
|
||||||
|
[Parameter(Mandatory, position=0)]
|
||||||
|
[string]$StatusMessage,
|
||||||
|
|
||||||
$script.Add(
|
[Parameter(Mandatory, position=1)]
|
||||||
((Get-Content -Path scripts\start.ps1) -replace '#{replaceme}', (Get-Date -Format 'yy.MM.dd'))
|
[ValidateRange(0,100)]
|
||||||
|
[int]$Percent,
|
||||||
|
|
||||||
|
[Parameter(position=2)]
|
||||||
|
[string]$Activity = "Compiling"
|
||||||
)
|
)
|
||||||
|
|
||||||
$script.Add((Get-ChildItem -Path functions -Recurse -File | Get-Content))
|
Write-Progress -Activity $Activity -Status $StatusMessage -PercentComplete $Percent
|
||||||
|
|
||||||
Get-ChildItem config | ForEach-Object {
|
|
||||||
$obj = Get-Content -Path $_.FullName | ConvertFrom-Json
|
|
||||||
|
|
||||||
if ($_.Name -eq "applications.json") {
|
|
||||||
$fixed = [ordered]@{}
|
|
||||||
foreach ($p in $obj.PSObject.Properties) {
|
|
||||||
$fixed["WPFInstall$($p.Name)"] = $p.Value
|
|
||||||
}
|
|
||||||
$obj = [pscustomobject]$fixed
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$json = $obj | ConvertTo-Json -Depth 10
|
Update-Progress "Pre-req: Running Preprocessor..." 0
|
||||||
|
|
||||||
$sync.configs[$_.BaseName] = $obj
|
# Dot source the 'Invoke-Preprocessing' Function from 'tools/Invoke-Preprocessing.ps1' Script
|
||||||
$script.Add("`$sync.configs.$($_.BaseName) = @'`r`n$json`r`n'@ | ConvertFrom-Json")
|
$preprocessingFilePath = ".\tools\Invoke-Preprocessing.ps1"
|
||||||
|
. $preprocessingFilePath
|
||||||
|
|
||||||
|
$excludedFiles = @()
|
||||||
|
|
||||||
|
# Add directories only if they exist
|
||||||
|
if (Test-Path '.\.git\') { $excludedFiles += '.\.git\' }
|
||||||
|
if (Test-Path '.\binary\') { $excludedFiles += '.\binary\' }
|
||||||
|
|
||||||
|
# Add files that should always be excluded
|
||||||
|
$excludedFiles += @(
|
||||||
|
'.\.gitignore',
|
||||||
|
'.\.gitattributes',
|
||||||
|
'.\.github\CODEOWNERS',
|
||||||
|
'.\LICENSE',
|
||||||
|
"$preprocessingFilePath",
|
||||||
|
'*.png',
|
||||||
|
'.\.preprocessor_hashes.json'
|
||||||
|
)
|
||||||
|
|
||||||
|
$msg = "Pre-req: Code Formatting"
|
||||||
|
Invoke-Preprocessing -WorkingDir "$workingdir" -ExcludedFiles $excludedFiles -ProgressStatusMessage $msg
|
||||||
|
|
||||||
|
# Create the script in memory.
|
||||||
|
Update-Progress "Pre-req: Allocating Memory" 0
|
||||||
|
$script_content = [System.Collections.Generic.List[string]]::new()
|
||||||
|
|
||||||
|
Update-Progress "Adding: Version" 10
|
||||||
|
$script_content.Add($(Get-Content "scripts\start.ps1").replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)"))
|
||||||
|
|
||||||
|
Update-Progress "Adding: Functions" 20
|
||||||
|
Get-ChildItem "functions" -Recurse -File | ForEach-Object {
|
||||||
|
$script_content.Add($(Get-Content $psitem.FullName))
|
||||||
|
}
|
||||||
|
Update-Progress "Adding: Config *.json" 40
|
||||||
|
Get-ChildItem "config" | Where-Object {$psitem.extension -eq ".json"} | ForEach-Object {
|
||||||
|
$json = (Get-Content $psitem.FullName -Raw)
|
||||||
|
$jsonAsObject = $json | ConvertFrom-Json
|
||||||
|
|
||||||
|
# Add 'WPFInstall' as a prefix to every entry-name in 'applications.json' file
|
||||||
|
if ($psitem.Name -eq "applications.json") {
|
||||||
|
foreach ($appEntryName in $jsonAsObject.PSObject.Properties.Name) {
|
||||||
|
$appEntryContent = $jsonAsObject.$appEntryName
|
||||||
|
$jsonAsObject.PSObject.Properties.Remove($appEntryName)
|
||||||
|
$jsonAsObject | Add-Member -MemberType NoteProperty -Name "WPFInstall$appEntryName" -Value $appEntryContent
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Line 90 requires no whitespace inside the here-strings, to keep formatting of the JSON in the final script.
|
||||||
|
$json = @"
|
||||||
|
$($jsonAsObject | ConvertTo-Json -Depth 3)
|
||||||
|
"@
|
||||||
|
|
||||||
|
$sync.configs.$($psitem.BaseName) = $json | ConvertFrom-Json
|
||||||
|
$script_content.Add($(Write-Output "`$sync.configs.$($psitem.BaseName) = @'`r`n$json`r`n'@ `| ConvertFrom-Json" ))
|
||||||
}
|
}
|
||||||
|
|
||||||
# Read the entire XAML file as a single string, preserving line breaks
|
# Read the entire XAML file as a single string, preserving line breaks
|
||||||
$xaml = Get-Content -Path xaml\inputXML.xaml
|
$xaml = Get-Content "$workingdir\xaml\inputXML.xaml" -Raw
|
||||||
$script.Add('$inputXML = @''' + "`n" + $xaml + "`n" + '''@')
|
|
||||||
|
|
||||||
$autounattendXml = Get-Content -Path tools\autounattend.xml
|
Update-Progress "Adding: Xaml " 90
|
||||||
$script.Add("`$WinUtilAutounattendXml = @'`r`n$autounattendXml`r`n'@")
|
|
||||||
|
|
||||||
$script.Add((Get-Content -Path scripts\main.ps1))
|
# Add the XAML content to $script_content using a here-string
|
||||||
|
$script_content.Add(@"
|
||||||
|
`$inputXML = @'
|
||||||
|
$xaml
|
||||||
|
'@
|
||||||
|
"@)
|
||||||
|
|
||||||
Set-Content -Path winutil.ps1 -Value $script
|
Update-Progress "Adding: autounattend.xml" 95
|
||||||
|
$autounattendRaw = Get-Content "$workingdir\tools\autounattend.xml" -Raw
|
||||||
|
# Strip XML comments (<!-- ... -->, including multi-line)
|
||||||
|
$autounattendRaw = [regex]::Replace($autounattendRaw, '<!--.*?-->', '', [System.Text.RegularExpressions.RegexOptions]::Singleline)
|
||||||
|
# Drop blank lines and trim trailing whitespace per line
|
||||||
|
$autounattendXml = ($autounattendRaw -split "`r?`n" |
|
||||||
|
Where-Object { $_.Trim() -ne '' } |
|
||||||
|
ForEach-Object { $_.TrimEnd() }) -join "`r`n"
|
||||||
|
$script_content.Add(@"
|
||||||
|
`$WinUtilAutounattendXml = @'
|
||||||
|
$autounattendXml
|
||||||
|
'@
|
||||||
|
"@)
|
||||||
|
|
||||||
if ($Run) {
|
$script_content.Add($(Get-Content "scripts\main.ps1"))
|
||||||
.\Winutil.ps1
|
|
||||||
|
Update-Progress "Removing temporary files" 99
|
||||||
|
Remove-Item "xaml\inputApp.xaml" -ErrorAction SilentlyContinue
|
||||||
|
Remove-Item "xaml\inputTweaks.xaml" -ErrorAction SilentlyContinue
|
||||||
|
Remove-Item "xaml\inputFeatures.xaml" -ErrorAction SilentlyContinue
|
||||||
|
|
||||||
|
Set-Content -Path "$scriptname" -Value ($script_content -join "`r`n") -Encoding ascii
|
||||||
|
Write-Progress -Activity "Compiling" -Completed
|
||||||
|
|
||||||
|
Update-Progress -Activity "Validating" -StatusMessage "Checking winutil.ps1 Syntax" -Percent 0
|
||||||
|
try {
|
||||||
|
Get-Command -Syntax .\winutil.ps1 | Out-Null
|
||||||
|
} catch {
|
||||||
|
Write-Warning "Syntax Validation for 'winutil.ps1' has failed"
|
||||||
|
Write-Host "$($Error[0])" -ForegroundColor Red
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
Write-Progress -Activity "Validating" -Completed
|
||||||
|
|
||||||
|
if ($run) {
|
||||||
|
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
|
||||||
|
.\Winutil.ps1 $Arguments
|
||||||
|
break
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ You'll see a new file named `winutil.ps1`, which was created by `Compile.ps1` sc
|
|||||||
|
|
||||||
These are the sponsors that help keep this project alive with monthly contributions.
|
These are the sponsors that help keep this project alive with monthly contributions.
|
||||||
|
|
||||||
<!-- sponsors --><a href="https://github.com/dwelfusius"><img src="https://github.com/dwelfusius.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/mews-se"><img src="https://github.com/mews-se.png" width="60px" alt="User avatar: Martin Stockzell" /></a><a href="https://github.com/jdiegmueller"><img src="https://github.com/jdiegmueller.png" width="60px" alt="User avatar: Jason A. Diegmueller" /></a><a href="https://github.com/robertsandrock"><img src="https://github.com/robertsandrock.png" width="60px" alt="User avatar: RMS" /></a><a href="https://github.com/paulsheets"><img src="https://github.com/paulsheets.png" width="60px" alt="User avatar: Paul" /></a><a href="https://github.com/djones369"><img src="https://github.com/djones369.png" width="60px" alt="User avatar: Dave J (WhamGeek)" /></a><a href="https://github.com/anthonymendez"><img src="https://github.com/anthonymendez.png" width="60px" alt="User avatar: Anthony Mendez" /></a><a href="https://github.com/FatBastard0"><img src="https://github.com/FatBastard0.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/DursleyGuy"><img src="https://github.com/DursleyGuy.png" width="60px" alt="User avatar: DursleyGuy" /></a><a href="https://github.com/DwayneTheRockLobster1"><img src="https://github.com/DwayneTheRockLobster1.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/KieraKujisawa"><img src="https://github.com/KieraKujisawa.png" width="60px" alt="User avatar: Kiera Meredith" /></a><a href="https://github.com/andrewpayne68"><img src="https://github.com/andrewpayne68.png" width="60px" alt="User avatar: Andrew P" /></a><!-- sponsors -->
|
<!-- sponsors --><a href="https://github.com/dwelfusius"><img src="https://github.com/dwelfusius.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/mews-se"><img src="https://github.com/mews-se.png" width="60px" alt="User avatar: Martin Stockzell" /></a><a href="https://github.com/jdiegmueller"><img src="https://github.com/jdiegmueller.png" width="60px" alt="User avatar: Jason A. Diegmueller" /></a><a href="https://github.com/robertsandrock"><img src="https://github.com/robertsandrock.png" width="60px" alt="User avatar: RMS" /></a><a href="https://github.com/paulsheets"><img src="https://github.com/paulsheets.png" width="60px" alt="User avatar: Paul" /></a><a href="https://github.com/djones369"><img src="https://github.com/djones369.png" width="60px" alt="User avatar: Dave J (WhamGeek)" /></a><a href="https://github.com/anthonymendez"><img src="https://github.com/anthonymendez.png" width="60px" alt="User avatar: Anthony Mendez" /></a><a href="https://github.com/FatBastard0"><img src="https://github.com/FatBastard0.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/DursleyGuy"><img src="https://github.com/DursleyGuy.png" width="60px" alt="User avatar: DursleyGuy" /></a><a href="https://github.com/DwayneTheRockLobster1"><img src="https://github.com/DwayneTheRockLobster1.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/KieraKujisawa"><img src="https://github.com/KieraKujisawa.png" width="60px" alt="User avatar: Kiera Meredith" /></a><a href="https://github.com/partybrasil"><img src="https://github.com/partybrasil.png" width="60px" alt="User avatar: Miguel Diaz" /></a><a href="https://github.com/andrewpayne68"><img src="https://github.com/andrewpayne68.png" width="60px" alt="User avatar: Andrew P" /></a><a href="https://github.com/Di3Z1E"><img src="https://github.com/Di3Z1E.png" width="60px" alt="User avatar: Di3Z1E" /></a><a href="https://github.com/AbdulVakeel"><img src="https://github.com/AbdulVakeel.png" width="60px" alt="User avatar: Abdul Vakeel Software Engineer" /></a><!-- sponsors -->
|
||||||
|
|
||||||
## 🏅 Thanks to all Contributors
|
## 🏅 Thanks to all Contributors
|
||||||
Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.
|
Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"WPFFeaturesdotnet": {
|
"WPFFeaturesdotnet": {
|
||||||
"Content": ".NET Framework (Versions 2, 3, 4) - Enable",
|
"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.",
|
"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",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/dotnet"
|
"link": "https://winutil.christitus.com/dev/features/features/dotnet"
|
||||||
},
|
},
|
||||||
"WPFFixesNTPPool": {
|
"WPFFixesNTPPool": {
|
||||||
"Content": "NTP Server - Enable",
|
"Content": "Configure NTP Server",
|
||||||
"Description": "Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability.",
|
"Description": "Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability.",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/ntppool"
|
"link": "https://winutil.christitus.com/dev/features/fixes/ntppool"
|
||||||
},
|
},
|
||||||
"WPFFeatureshyperv": {
|
"WPFFeatureshyperv": {
|
||||||
"Content": "Hyper-V - Enable",
|
"Content": "HyperV Virtualization",
|
||||||
"Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
|
"Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/hyperv"
|
"link": "https://winutil.christitus.com/dev/features/features/hyperv"
|
||||||
},
|
},
|
||||||
"WPFFeatureslegacymedia": {
|
"WPFFeatureslegacymedia": {
|
||||||
"Content": "Legacy Media Components (WMP, DirectPlay) - Enable",
|
"Content": "Legacy Media (WMP, DirectPlay)",
|
||||||
"Description": "Enables legacy programs from previous versions of Windows.",
|
"Description": "Enables legacy programs from previous versions of Windows.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/legacymedia"
|
"link": "https://winutil.christitus.com/dev/features/features/legacymedia"
|
||||||
},
|
},
|
||||||
"WPFFeaturewsl": {
|
"WPFFeaturewsl": {
|
||||||
"Content": "Windows Subsystem for Linux (WSL) - Enable",
|
"Content": "Windows Subsystem for Linux",
|
||||||
"Description": "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting.",
|
"Description": "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/wsl"
|
"link": "https://winutil.christitus.com/dev/features/features/wsl"
|
||||||
},
|
},
|
||||||
"WPFFeaturenfs": {
|
"WPFFeaturenfs": {
|
||||||
"Content": "Network File System (NFS) - Enable",
|
"Content": "NFS - Network File System",
|
||||||
"Description": "Network File System (NFS) is a mechanism for storing files on a network.",
|
"Description": "Network File System (NFS) is a mechanism for storing files on a network.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/nfs"
|
"link": "https://winutil.christitus.com/dev/features/features/nfs"
|
||||||
},
|
},
|
||||||
"WPFFeatureRegBackup": {
|
"WPFFeatureRegBackup": {
|
||||||
"Content": "Registry Backup (Daily Task 12:30am) - Enable",
|
"Content": "Enable Daily Registry Backup Task 12.30am",
|
||||||
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
|
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/regbackup"
|
"link": "https://winutil.christitus.com/dev/features/features/regbackup"
|
||||||
},
|
},
|
||||||
"WPFFeatureEnableLegacyRecovery": {
|
"WPFFeatureEnableLegacyRecovery": {
|
||||||
"Content": "Legacy F8 Boot Recovery - Enable",
|
"Content": "Enable Legacy F8 Boot Recovery",
|
||||||
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/enablelegacyrecovery"
|
"link": "https://winutil.christitus.com/dev/features/features/enablelegacyrecovery"
|
||||||
},
|
},
|
||||||
"WPFFeatureDisableLegacyRecovery": {
|
"WPFFeatureDisableLegacyRecovery": {
|
||||||
"Content": "Legacy F8 Boot Recovery - Disable",
|
"Content": "Disable Legacy F8 Boot Recovery",
|
||||||
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/disablelegacyrecovery"
|
"link": "https://winutil.christitus.com/dev/features/features/disablelegacyrecovery"
|
||||||
},
|
},
|
||||||
"WPFFeaturesSandbox": {
|
"WPFFeaturesSandbox": {
|
||||||
"Content": "Windows Sandbox - Enable",
|
"Content": "Windows Sandbox",
|
||||||
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",
|
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -138,7 +138,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/install"
|
"link": "https://winutil.christitus.com/dev/features/features/install"
|
||||||
},
|
},
|
||||||
"WPFPanelAutologin": {
|
"WPFPanelAutologin": {
|
||||||
"Content": "AutoLogon - Run",
|
"Content": "Set Up Autologin",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -147,7 +147,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/autologin"
|
"link": "https://winutil.christitus.com/dev/features/fixes/autologin"
|
||||||
},
|
},
|
||||||
"WPFFixesUpdate": {
|
"WPFFixesUpdate": {
|
||||||
"Content": "Windows Update - Reset",
|
"Content": "Reset Windows Update",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/update"
|
"link": "https://winutil.christitus.com/dev/features/fixes/update"
|
||||||
},
|
},
|
||||||
"WPFFixesNetwork": {
|
"WPFFixesNetwork": {
|
||||||
"Content": "Network - Reset",
|
"Content": "Reset Network",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -165,7 +165,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/network"
|
"link": "https://winutil.christitus.com/dev/features/fixes/network"
|
||||||
},
|
},
|
||||||
"WPFPanelDISM": {
|
"WPFPanelDISM": {
|
||||||
"Content": "System Corruption Scan - Run",
|
"Content": "System Corruption Scan",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -174,7 +174,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/dism"
|
"link": "https://winutil.christitus.com/dev/features/fixes/dism"
|
||||||
},
|
},
|
||||||
"WPFFixesWinget": {
|
"WPFFixesWinget": {
|
||||||
"Content": "WinGet - Reinstall",
|
"Content": "WinGet Reinstall",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -293,7 +293,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/timedate"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/timedate"
|
||||||
},
|
},
|
||||||
"WPFWinUtilInstallPSProfile": {
|
"WPFWinUtilInstallPSProfile": {
|
||||||
"Content": "CTT PowerShell Profile - Install",
|
"Content": "Install CTT PowerShell Profile",
|
||||||
"category": "Powershell Profile Powershell 7+ Only",
|
"category": "Powershell Profile Powershell 7+ Only",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -302,7 +302,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/installpsprofile"
|
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/installpsprofile"
|
||||||
},
|
},
|
||||||
"WPFWinUtilUninstallPSProfile": {
|
"WPFWinUtilUninstallPSProfile": {
|
||||||
"Content": "CTT PowerShell Profile - Remove",
|
"Content": "Uninstall CTT PowerShell Profile",
|
||||||
"category": "Powershell Profile Powershell 7+ Only",
|
"category": "Powershell Profile Powershell 7+ Only",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -311,7 +311,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/uninstallpsprofile"
|
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/uninstallpsprofile"
|
||||||
},
|
},
|
||||||
"WPFWinUtilSSHServer": {
|
"WPFWinUtilSSHServer": {
|
||||||
"Content": "OpenSSH Server - Enable",
|
"Content": "Enable OpenSSH Server",
|
||||||
"category": "Remote Access",
|
"category": "Remote Access",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
"WPFTweaksDisableExplorerAutoDiscovery",
|
"WPFTweaksDisableExplorerAutoDiscovery",
|
||||||
"WPFTweaksWPBT",
|
"WPFTweaksWPBT",
|
||||||
"WPFTweaksDVR",
|
"WPFTweaksDVR",
|
||||||
"WPFTweaksDeBloat",
|
|
||||||
"WPFTweaksLocation",
|
"WPFTweaksLocation",
|
||||||
"WPFTweaksServices",
|
"WPFTweaksServices",
|
||||||
"WPFTweaksTelemetry",
|
"WPFTweaksTelemetry",
|
||||||
@@ -17,7 +16,6 @@
|
|||||||
],
|
],
|
||||||
"Minimal": [
|
"Minimal": [
|
||||||
"WPFTweaksConsumerFeatures",
|
"WPFTweaksConsumerFeatures",
|
||||||
"WPFTweaksDeBloat",
|
|
||||||
"WPFTweaksWPBT",
|
"WPFTweaksWPBT",
|
||||||
"WPFTweaksServices",
|
"WPFTweaksServices",
|
||||||
"WPFTweaksTelemetry"
|
"WPFTweaksTelemetry"
|
||||||
|
|||||||
@@ -57,7 +57,8 @@
|
|||||||
"ScrollBarBackgroundColor": "#4A4D52",
|
"ScrollBarBackgroundColor": "#4A4D52",
|
||||||
"ScrollBarHoverColor": "#5A5D62",
|
"ScrollBarHoverColor": "#5A5D62",
|
||||||
"ScrollBarDraggingColor": "#6A6D72",
|
"ScrollBarDraggingColor": "#6A6D72",
|
||||||
"ProgressBarForegroundColor": "#2E77FF",
|
|
||||||
|
"ProgressBarForegroundColor": "#2e77ff",
|
||||||
"ProgressBarBackgroundColor": "Transparent",
|
"ProgressBarBackgroundColor": "Transparent",
|
||||||
"ProgressBarTextColor": "#232629",
|
"ProgressBarTextColor": "#232629",
|
||||||
"ButtonInstallBackgroundColor": "#F7F7F7",
|
"ButtonInstallBackgroundColor": "#F7F7F7",
|
||||||
@@ -75,11 +76,12 @@
|
|||||||
"ButtonBackgroundMouseoverColor": "#C2C2C2",
|
"ButtonBackgroundMouseoverColor": "#C2C2C2",
|
||||||
"ButtonBackgroundSelectedColor": "#F0F0F0",
|
"ButtonBackgroundSelectedColor": "#F0F0F0",
|
||||||
"ButtonForegroundColor": "#232629",
|
"ButtonForegroundColor": "#232629",
|
||||||
"ToggleButtonOnColor": "#2E77FF",
|
"ToggleButtonOnColor": "#2e77ff",
|
||||||
"ToggleButtonOffColor": "#707070",
|
"ToggleButtonOffColor": "#707070",
|
||||||
"ToolTipBackgroundColor": "#F7F7F7",
|
"ToolTipBackgroundColor": "#F7F7F7",
|
||||||
"BorderColor": "#232629",
|
"BorderColor": "#232629",
|
||||||
"BorderOpacity": "0.2"
|
"BorderOpacity": "0.2"
|
||||||
|
|
||||||
},
|
},
|
||||||
"Dark": {
|
"Dark": {
|
||||||
"AppInstallUnselectedColor": "#232629",
|
"AppInstallUnselectedColor": "#232629",
|
||||||
@@ -88,15 +90,16 @@
|
|||||||
"AppInstallOverlayBackgroundColor":"#2E3135",
|
"AppInstallOverlayBackgroundColor":"#2E3135",
|
||||||
"ComboBoxForegroundColor": "#F7F7F7",
|
"ComboBoxForegroundColor": "#F7F7F7",
|
||||||
"ComboBoxBackgroundColor": "#1E3747",
|
"ComboBoxBackgroundColor": "#1E3747",
|
||||||
"LabelboxForegroundColor": "#5BDCFF",
|
"LabelboxForegroundColor": "#5bdcff",
|
||||||
"MainForegroundColor": "#F7F7F7",
|
"MainForegroundColor": "#F7F7F7",
|
||||||
"MainBackgroundColor": "#232629",
|
"MainBackgroundColor": "#232629",
|
||||||
"LabelBackgroundColor": "#232629",
|
"LabelBackgroundColor": "#232629",
|
||||||
"LinkForegroundColor": "#ADD8E6",
|
"LinkForegroundColor": "#add8e6",
|
||||||
"LinkHoverForegroundColor": "#F7F7F7",
|
"LinkHoverForegroundColor": "#F7F7F7",
|
||||||
"ScrollBarBackgroundColor": "#2E3135",
|
"ScrollBarBackgroundColor": "#2E3135",
|
||||||
"ScrollBarHoverColor": "#3B4252",
|
"ScrollBarHoverColor": "#3B4252",
|
||||||
"ScrollBarDraggingColor": "#5E81AC",
|
"ScrollBarDraggingColor": "#5E81AC",
|
||||||
|
|
||||||
"ProgressBarForegroundColor": "#222222",
|
"ProgressBarForegroundColor": "#222222",
|
||||||
"ProgressBarBackgroundColor": "Transparent",
|
"ProgressBarBackgroundColor": "Transparent",
|
||||||
"ProgressBarTextColor": "#232629",
|
"ProgressBarTextColor": "#232629",
|
||||||
@@ -115,7 +118,7 @@
|
|||||||
"ButtonBackgroundMouseoverColor": "#3B4252",
|
"ButtonBackgroundMouseoverColor": "#3B4252",
|
||||||
"ButtonBackgroundSelectedColor": "#5E81AC",
|
"ButtonBackgroundSelectedColor": "#5E81AC",
|
||||||
"ButtonForegroundColor": "#F7F7F7",
|
"ButtonForegroundColor": "#F7F7F7",
|
||||||
"ToggleButtonOnColor": "#2E77FF",
|
"ToggleButtonOnColor": "#2e77ff",
|
||||||
"ToggleButtonOffColor": "#707070",
|
"ToggleButtonOffColor": "#707070",
|
||||||
"ToolTipBackgroundColor": "#2F373D",
|
"ToolTipBackgroundColor": "#2F373D",
|
||||||
"BorderColor": "#2F373D",
|
"BorderColor": "#2F373D",
|
||||||
|
|||||||
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 164 KiB |
|
After Width: | Height: | Size: 179 KiB |
|
After Width: | Height: | Size: 164 KiB |
|
Before Width: | Height: | Size: 228 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 123 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 196 KiB |
|
Before Width: | Height: | Size: 198 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 170 KiB |
|
Before Width: | Height: | Size: 170 KiB |
@@ -22,8 +22,46 @@ If you are still having issues, try using a **VPN**, or changing your **DNS prov
|
|||||||
|
|
||||||
### Script Won't Run
|
### Script Won't Run
|
||||||
|
|
||||||
If you run WinUtil and get the error:
|
If your PowerShell session is running in **Constrained Language Mode**, some scripts and commands may fail to execute. To check the current language mode, run:
|
||||||
|
```powershell
|
||||||
|
$ExecutionContext.SessionState.LanguageMode
|
||||||
|
```
|
||||||
|
If it returns `ConstrainedLanguage`, you may need to switch to `FullLanguage` mode or run the script in a session with administrative privileges. Be aware that some security policies may enforce Constrained Language Mode, especially in corporate or managed environments.
|
||||||
|
|
||||||
`"WinUtil is unable to run on your system, powershell execution is restricted by security policies,"`
|
**If the download fails**:
|
||||||
|
|
||||||
this means that your PowerShell session is in **Constrained Language Mode**, which prevents WinUtil from running.
|
1. Try the direct GitHub link:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
irm https://github.com/ChrisTitusTech/Winutil/releases/latest/download/Winutil.ps1 | iex
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Force TLS 1.2:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
||||||
|
irm "https://christitus.com/win" | iex
|
||||||
|
```
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> On Windows 11, you usually do not need the TLS 1.2 command. Use it only if you encounter download or security protocol errors.
|
||||||
|
|
||||||
|
### Execution Policy Error
|
||||||
|
|
||||||
|
If you see an execution policy error when running the downloaded script, you can allow the current session to run unsigned scripts with this command:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
Set-ExecutionPolicy Unrestricted -Scope Process -Force
|
||||||
|
irm "https://christitus.com/win" | iex
|
||||||
|
```
|
||||||
|
|
||||||
|
This only changes the policy for the current PowerShell process and is safe for one-off runs.
|
||||||
|
|
||||||
|
### Interface Doesn't Appear
|
||||||
|
|
||||||
|
If Winutil downloads, but the GUI does not open or appear, try these steps:
|
||||||
|
|
||||||
|
1. Check if your antivirus or Windows Defender is blocking the script — add an exclusion if necessary.
|
||||||
|
2. Ensure you launched PowerShell / Terminal as **Administrator**.
|
||||||
|
3. Close and reopen PowerShell, then run the launch command again.
|
||||||
|
4. If the script still doesn't show, try running the script in a visible PowerShell window (avoid background/silent shells) to observe output and errors.
|
||||||
|
|||||||
@@ -380,6 +380,13 @@ Update UI
|
|||||||
"Value": "0",
|
"Value": "0",
|
||||||
"OriginalValue": "1"
|
"OriginalValue": "1"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"ScheduledTask": [
|
||||||
|
{
|
||||||
|
"Name": "Microsoft\\Windows\\Autochk\\Proxy",
|
||||||
|
"State": "Disabled",
|
||||||
|
"OriginalState": "Enabled"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -390,6 +397,7 @@ Update UI
|
|||||||
- `Description`: What it does
|
- `Description`: What it does
|
||||||
- `category`: Essential/Advanced/Customize
|
- `category`: Essential/Advanced/Customize
|
||||||
- `registry`: Registry changes to make
|
- `registry`: Registry changes to make
|
||||||
|
- `ScheduledTask`: Scheduled tasks to modify
|
||||||
- `service`: Services to change
|
- `service`: Services to change
|
||||||
- `OriginalValue/State`: For undo functionality
|
- `OriginalValue/State`: For undo functionality
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy F8 Boot Recovery - Disable"
|
title: "Disable Legacy F8 Boot Recovery"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=110}
|
```json {filename="config/feature.json",linenos=inline,linenostart=110}
|
||||||
"WPFFeatureDisableLegacyRecovery": {
|
"WPFFeatureDisableLegacyRecovery": {
|
||||||
"Content": "Legacy F8 Boot Recovery - Disable",
|
"Content": "Disable Legacy F8 Boot Recovery",
|
||||||
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy F8 Boot Recovery - Enable"
|
title: "Enable Legacy F8 Boot Recovery"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=99}
|
```json {filename="config/feature.json",linenos=inline,linenostart=99}
|
||||||
"WPFFeatureEnableLegacyRecovery": {
|
"WPFFeatureEnableLegacyRecovery": {
|
||||||
"Content": "Legacy F8 Boot Recovery - Enable",
|
"Content": "Enable Legacy F8 Boot Recovery",
|
||||||
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Registry Backup (Daily Task 12:30am) - Enable"
|
title: "Enable Daily Registry Backup Task 12.30am"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=82}
|
```json {filename="config/feature.json",linenos=inline,linenostart=82}
|
||||||
"WPFFeatureRegBackup": {
|
"WPFFeatureRegBackup": {
|
||||||
"Content": "Registry Backup (Daily Task 12:30am) - Enable",
|
"Content": "Enable Daily Registry Backup Task 12.30am",
|
||||||
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
|
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Sandbox - Enable"
|
title: "Windows Sandbox"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=121}
|
```json {filename="config/feature.json",linenos=inline,linenostart=121}
|
||||||
"WPFFeaturesSandbox": {
|
"WPFFeaturesSandbox": {
|
||||||
"Content": "Windows Sandbox - Enable",
|
"Content": "Windows Sandbox",
|
||||||
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",
|
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: ".NET Framework (Versions 2, 3, 4) - Enable"
|
title: "All .Net Framework (2,3,4)"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=2}
|
```json {filename="config/feature.json",linenos=inline,linenostart=2}
|
||||||
"WPFFeaturesdotnet": {
|
"WPFFeaturesdotnet": {
|
||||||
"Content": ".NET Framework (Versions 2, 3, 4) - Enable",
|
"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.",
|
"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",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Hyper-V - Enable"
|
title: "HyperV Virtualization"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=24}
|
```json {filename="config/feature.json",linenos=inline,linenostart=24}
|
||||||
"WPFFeatureshyperv": {
|
"WPFFeatureshyperv": {
|
||||||
"Content": "Hyper-V - Enable",
|
"Content": "HyperV Virtualization",
|
||||||
"Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
|
"Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy Media Components (WMP, DirectPlay) - Enable"
|
title: "Legacy Media (WMP, DirectPlay)"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=37}
|
```json {filename="config/feature.json",linenos=inline,linenostart=37}
|
||||||
"WPFFeatureslegacymedia": {
|
"WPFFeatureslegacymedia": {
|
||||||
"Content": "Legacy Media Components (WMP, DirectPlay) - Enable",
|
"Content": "Legacy Media (WMP, DirectPlay)",
|
||||||
"Description": "Enables legacy programs from previous versions of Windows.",
|
"Description": "Enables legacy programs from previous versions of Windows.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Network File System (NFS) - Enable"
|
title: "NFS - Network File System"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=63}
|
```json {filename="config/feature.json",linenos=inline,linenostart=63}
|
||||||
"WPFFeaturenfs": {
|
"WPFFeaturenfs": {
|
||||||
"Content": "Network File System (NFS) - Enable",
|
"Content": "NFS - Network File System",
|
||||||
"Description": "Network File System (NFS) is a mechanism for storing files on a network.",
|
"Description": "Network File System (NFS) is a mechanism for storing files on a network.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Subsystem for Linux (WSL) - Enable"
|
title: "Windows Subsystem for Linux"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=51}
|
```json {filename="config/feature.json",linenos=inline,linenostart=51}
|
||||||
"WPFFeaturewsl": {
|
"WPFFeaturewsl": {
|
||||||
"Content": "Windows Subsystem for Linux (WSL) - Enable",
|
"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.",
|
"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",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "AutoLogon - Run"
|
title: "Set Up Autologin"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "System Corruption Scan - Run"
|
title: "System Corruption Scan"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "NTP Server - Enable"
|
title: "Configure NTP Server"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Network - Reset"
|
title: "Reset Network"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Update - Reset"
|
title: "Reset Windows Update"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "WinGet - Reinstall"
|
title: "WinGet Reinstall"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +1,15 @@
|
|||||||
---
|
---
|
||||||
title: "CTT PowerShell Profile - Install"
|
title: "Install CTT PowerShell Profile"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```powershell {filename="functions/private/Invoke-WinUtilInstallPSProfile.ps1",linenos=inline,linenostart=1}
|
```powershell {filename="functions/private/Invoke-WinUtilInstallPSProfile.ps1",linenos=inline,linenostart=1}
|
||||||
function Invoke-WinUtilInstallPSProfile {
|
function Invoke-WinUtilInstallPSProfile {
|
||||||
if (-not (Get-Command wt)) {
|
|
||||||
Write-Host "Windows Terminal not found installing..."
|
if (Test-Path $Profile) {
|
||||||
Install-WinUtilWinget
|
Rename-Item $Profile -NewName ($Profile + '.bak')
|
||||||
winget install Microsoft.WindowsTerminal --source winget --silent
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (-not (Get-Command pwsh)) {
|
Start-Process pwsh -ArgumentList '-Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"'
|
||||||
Write-Host "Powershell 7 not found installing..."
|
|
||||||
Install-WinUtilWinget
|
|
||||||
winget install Microsoft.PowerShell --source winget --silent
|
|
||||||
}
|
|
||||||
|
|
||||||
wt new-tab pwsh -NoExit -Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: "CTT PowerShell Profile - Remove"
|
title: "Uninstall CTT PowerShell Profile"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```powershell {filename="functions/private/Invoke-WinUtilUninstallPSProfile.ps1",linenos=inline,linenostart=1}
|
```powershell {filename="functions/private/Invoke-WinUtilUninstallPSProfile.ps1",linenos=inline,linenostart=1}
|
||||||
function Invoke-WinUtilUninstallPSProfile {
|
function Invoke-WinUtilUninstallPSProfile {
|
||||||
|
if (Test-Path ($Profile + '.bak')) {
|
||||||
if (Test-Path ($Profile + ".bak")) {
|
Remove-Item $Profile
|
||||||
Move-Item -Path ($Profile + ".bak") -Destination $Profile
|
Rename-Item ($Profile + '.bak') -NewName $Profile
|
||||||
} else {
|
}
|
||||||
Remove-Item -Path $Profile
|
else {
|
||||||
|
Remove-Item $Profile
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Host "Successfully uninstalled CTT PowerShell Profile." -ForegroundColor Green
|
Write-Host "Successfully uninstalled CTT PowerShell Profile." -ForegroundColor Green
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "OpenSSH Server - Enable"
|
title: "Enable OpenSSH Server"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
---
|
|
||||||
title: "System Tray Battery Percentage"
|
|
||||||
description: ""
|
|
||||||
---
|
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1268}
|
|
||||||
"WPFToggleBatteryPercentage": {
|
|
||||||
"Content": "System Tray Battery Percentage",
|
|
||||||
"Description": "If enabled, Shows numeric battery percentage next to the battery icon in the system tray.",
|
|
||||||
"category": "Customize Preferences",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Toggle",
|
|
||||||
"registry": [
|
|
||||||
{
|
|
||||||
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
|
|
||||||
"Name": "IsBatteryPercentageEnabled",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>",
|
|
||||||
"DefaultState": "false"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
```
|
|
||||||
|
|
||||||
## Registry Changes
|
|
||||||
|
|
||||||
Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place.
|
|
||||||
|
|
||||||
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Start Menu Bing Search"
|
title: "Bing Search in Start Menu"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1603}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2108}
|
||||||
"WPFToggleBingSearch": {
|
"WPFToggleBingSearch": {
|
||||||
"Content": "Start Menu Bing Search",
|
"Content": "Bing Search in Start Menu",
|
||||||
"Description": "If enabled, Bing web search results will be included in your Start Menu search.",
|
"Description": "If enabled, Bing web search results will be included in your Start Menu search.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Dark Theme for Windows"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1286}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2066}
|
||||||
"WPFToggleDarkMode": {
|
"WPFToggleDarkMode": {
|
||||||
"Content": "Dark Theme for Windows",
|
"Content": "Dark Theme for Windows",
|
||||||
"Description": "Enable/Disable Dark Mode.",
|
"Description": "Enable/Disable Dark Mode.",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "BSoD Verbose Mode"
|
title: "Detailed BSoD"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1242}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2482}
|
||||||
"WPFToggleDetailedBSoD": {
|
"WPFToggleDetailedBSoD": {
|
||||||
"Content": "BSoD Verbose Mode",
|
"Content": "Detailed BSoD",
|
||||||
"Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.",
|
"Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Cross-Device Resume"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1224}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2612}
|
||||||
"WPFToggleDisableCrossDeviceResume": {
|
"WPFToggleDisableCrossDeviceResume": {
|
||||||
"Content": "Cross-Device Resume",
|
"Content": "Cross-Device Resume",
|
||||||
"Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.",
|
"Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.",
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Game Mode"
|
|
||||||
description: ""
|
|
||||||
---
|
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1765}
|
|
||||||
"WPFToggleGameMode": {
|
|
||||||
"Content": "Game Mode",
|
|
||||||
"Description": "If enabled, Windows prioritizes gaming performance by allocating system resources. Disable for audio/video production to prevent interference.",
|
|
||||||
"category": "Customize Preferences",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Toggle",
|
|
||||||
"registry": [
|
|
||||||
{
|
|
||||||
"Path": "HKCU:\\Software\\Microsoft\\GameBar",
|
|
||||||
"Name": "AllowAutoGameMode",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "0",
|
|
||||||
"DefaultState": "true"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKCU:\\Software\\Microsoft\\GameBar",
|
|
||||||
"Name": "AutoGameModeEnabled",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "0",
|
|
||||||
"DefaultState": "true"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
```
|
|
||||||
|
|
||||||
## Registry Changes
|
|
||||||
|
|
||||||
Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place.
|
|
||||||
|
|
||||||
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "File Explorer Hidden Files"
|
title: "Show Hidden Files"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1356}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2362}
|
||||||
"WPFToggleHiddenFiles": {
|
"WPFToggleHiddenFiles": {
|
||||||
"Content": "File Explorer Hidden Files",
|
"Content": "Show Hidden Files",
|
||||||
"Description": "If enabled, Hidden Files will be shown.",
|
"Description": "If enabled, Hidden Files will be shown.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "Settings Home Page"
|
title: "Remove Settings Home Page"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1585}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2232}
|
||||||
"WPFToggleHideSettingsHome": {
|
"WPFToggleHideSettingsHome": {
|
||||||
"Content": "Settings Home Page",
|
"Content": "Remove Settings Home Page",
|
||||||
"Description": "Enable or disable the Home Page in the Windows Settings app.",
|
"Description": "Removes the Home Page in the Windows Settings app.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -14,10 +14,10 @@ description: ""
|
|||||||
{
|
{
|
||||||
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
|
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
|
||||||
"Name": "SettingsPageVisibility",
|
"Name": "SettingsPageVisibility",
|
||||||
"Value": "show:home",
|
"Value": "hide:home",
|
||||||
"Type": "String",
|
"Type": "String",
|
||||||
"OriginalValue": "hide:home",
|
"OriginalValue": "show:home",
|
||||||
"DefaultState": "true"
|
"DefaultState": "false"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Logon Screen Acrylic Blur"
|
|
||||||
description: ""
|
|
||||||
---
|
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1621}
|
|
||||||
"WPFToggleLoginBlur": {
|
|
||||||
"Content": "Logon Screen Acrylic Blur",
|
|
||||||
"Description": "If disabled, the acrylic blur effect will be removed on the Windows 10/11 login screen background.",
|
|
||||||
"category": "Customize Preferences",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Toggle",
|
|
||||||
"registry": [
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System",
|
|
||||||
"Name": "DisableAcrylicBackgroundOnLogon",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "1",
|
|
||||||
"DefaultState": "true"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
```
|
|
||||||
|
|
||||||
## Registry Changes
|
|
||||||
|
|
||||||
Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place.
|
|
||||||
|
|
||||||
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Enable Long Paths"
|
|
||||||
description: ""
|
|
||||||
---
|
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1791}
|
|
||||||
"WPFToggleLongPaths": {
|
|
||||||
"Content": "Enable Long Paths",
|
|
||||||
"Description": "Enables support for file paths longer than 260 characters.",
|
|
||||||
"category": "Customize Preferences",
|
|
||||||
"panel": "2",
|
|
||||||
"Type": "Toggle",
|
|
||||||
"registry": [
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\FileSystem",
|
|
||||||
"Name": "LongPathsEnabled",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "0",
|
|
||||||
"DefaultState": "false"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
```
|
|
||||||
|
|
||||||
## Registry Changes
|
|
||||||
|
|
||||||
Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place.
|
|
||||||
|
|
||||||
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|
|
||||||
@@ -3,7 +3,7 @@ title: "Mouse Acceleration"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1489}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2250}
|
||||||
"WPFToggleMouseAcceleration": {
|
"WPFToggleMouseAcceleration": {
|
||||||
"Content": "Mouse Acceleration",
|
"Content": "Mouse Acceleration",
|
||||||
"Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.",
|
"Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "Multiplane Overlay"
|
title: "Disable Multiplane Overlay"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1463}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2344}
|
||||||
"WPFToggleMultiplaneOverlay": {
|
"WPFToggleMultiplaneOverlay": {
|
||||||
"Content": "Multiplane Overlay",
|
"Content": "Disable Multiplane Overlay",
|
||||||
"Description": "Enable or disable the Multiplane Overlay, which can sometimes cause issues with graphics cards.",
|
"Description": "Disable the Multiplane Overlay which can sometimes cause issues with Graphics Cards.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -14,17 +14,9 @@ description: ""
|
|||||||
{
|
{
|
||||||
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm",
|
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm",
|
||||||
"Name": "OverlayTestMode",
|
"Name": "OverlayTestMode",
|
||||||
"Value": "0",
|
"Value": "5",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "5",
|
"OriginalValue": "<RemoveEntry>",
|
||||||
"DefaultState": "true"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers",
|
|
||||||
"Name": "DisableOverlays",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "0",
|
|
||||||
"DefaultState": "false"
|
"DefaultState": "false"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Microsoft Outlook New Version"
|
title: "New Outlook"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1402}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2302}
|
||||||
"WPFToggleNewOutlook": {
|
"WPFToggleNewOutlook": {
|
||||||
"Content": "Microsoft Outlook New Version",
|
"Content": "New Outlook",
|
||||||
"Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.",
|
"Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Num Lock on Startup"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1523}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2144}
|
||||||
"WPFToggleNumLock": {
|
"WPFToggleNumLock": {
|
||||||
"Content": "Num Lock on Startup",
|
"Content": "Num Lock on Startup",
|
||||||
"Description": "Toggle the Num Lock key state when your computer starts.",
|
"Description": "Toggle the Num Lock key state when your computer starts.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "S3 Sleep"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1567}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2508}
|
||||||
"WPFToggleS3Sleep": {
|
"WPFToggleS3Sleep": {
|
||||||
"Content": "S3 Sleep",
|
"Content": "S3 Sleep",
|
||||||
"Description": "Toggles between Modern Standby and S3 Sleep.",
|
"Description": "Toggles between Modern Standby and S3 Sleep.",
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Scrollbars Always Visible"
|
|
||||||
description: ""
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
## Registry Changes
|
|
||||||
|
|
||||||
Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place.
|
|
||||||
|
|
||||||
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "File Explorer File Extensions"
|
title: "Show File Extensions"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1328}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2390}
|
||||||
"WPFToggleShowExt": {
|
"WPFToggleShowExt": {
|
||||||
"Content": "File Explorer File Extensions",
|
"Content": "Show File Extensions",
|
||||||
"Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.",
|
"Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "S0 Sleep Network Connectivity"
|
title: "Modern Standby fix"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1549}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2126}
|
||||||
"WPFToggleStandbyFix": {
|
"WPFToggleStandbyFix": {
|
||||||
"Content": "S0 Sleep Network Connectivity",
|
"Content": "Modern Standby fix",
|
||||||
"Description": "Enable or disable network connectivity during S0 Sleep.",
|
"Description": "Disable network connection during S0 Sleep. If network connectivity is turned on during S0 Sleep it could cause overheating on modern laptops.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -14,9 +14,9 @@ description: ""
|
|||||||
{
|
{
|
||||||
"Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Power\\PowerSettings\\f15576e8-98b7-4186-b944-eafa664402d9",
|
"Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Power\\PowerSettings\\f15576e8-98b7-4186-b944-eafa664402d9",
|
||||||
"Name": "ACSettingIndex",
|
"Name": "ACSettingIndex",
|
||||||
"Value": "1",
|
"Value": "0",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "0",
|
"OriginalValue": "<RemoveEntry>",
|
||||||
"DefaultState": "true"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Start Menu Recommendations"
|
title: "Recommendations in Start Menu"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1639}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2188}
|
||||||
"WPFToggleStartMenuRecommendations": {
|
"WPFToggleStartMenuRecommendations": {
|
||||||
"Content": "Start Menu Recommendations",
|
"Content": "Recommendations in Start Menu",
|
||||||
"Description": "If disabled, then you will not see recommendations in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.",
|
"Description": "If disabled, then you will not see recommendations in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Sticky Keys"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1683}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2284}
|
||||||
"WPFToggleStickyKeys": {
|
"WPFToggleStickyKeys": {
|
||||||
"Content": "Sticky Keys",
|
"Content": "Sticky Keys",
|
||||||
"Description": "If enabled, 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.",
|
"Description": "If enabled, 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.",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Taskbar Task View Icon"
|
title: "Task View Button in Taskbar"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1747}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2436}
|
||||||
"WPFToggleTaskView": {
|
"WPFToggleTaskView": {
|
||||||
"Content": "Taskbar Task View Icon",
|
"Content": "Task View Button in Taskbar",
|
||||||
"Description": "If enabled, Task View Button in Taskbar will be shown.",
|
"Description": "If enabled, Task View Button in Taskbar will be shown.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Taskbar Centered Icons"
|
title: "Center Taskbar Items"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1701}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2454}
|
||||||
"WPFToggleTaskbarAlignment": {
|
"WPFToggleTaskbarAlignment": {
|
||||||
"Content": "Taskbar Centered Icons",
|
"Content": "Center Taskbar Items",
|
||||||
"Description": "[Windows 11] If enabled, the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.",
|
"Description": "[Windows 11] If enabled, the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Taskbar Search Icon"
|
title: "Search Button in Taskbar"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1729}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2418}
|
||||||
"WPFToggleTaskbarSearch": {
|
"WPFToggleTaskbarSearch": {
|
||||||
"Content": "Taskbar Search Icon",
|
"Content": "Search Button in Taskbar",
|
||||||
"Description": "If enabled, Search Button will be on the Taskbar.",
|
"Description": "If enabled, Search Button will be on the Taskbar.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Logon Verbose Mode"
|
title: "Verbose Messages During Logon"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1384}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2170}
|
||||||
"WPFToggleVerboseLogon": {
|
"WPFToggleVerboseLogon": {
|
||||||
"Content": "Logon Verbose Mode",
|
"Content": "Verbose Messages During Logon",
|
||||||
"Description": "Show detailed messages during the login process for troubleshooting and diagnostics.",
|
"Description": "Show detailed messages during the login process for troubleshooting and diagnostics.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Activity History - Disable"
|
title: "Disable Activity History"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2}
|
||||||
"WPFTweaksActivity": {
|
"WPFTweaksActivity": {
|
||||||
"Content": "Activity History - Disable",
|
"Content": "Disable Activity History",
|
||||||
"Description": "Erases recent docs, clipboard, and run history.",
|
"Description": "Erases recent docs, clipboard, and run history.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "ConsumerFeatures - Disable"
|
title: "Disable ConsumerFeatures"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=459}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1311}
|
||||||
"WPFTweaksConsumerFeatures": {
|
"WPFTweaksConsumerFeatures": {
|
||||||
"Content": "ConsumerFeatures - Disable",
|
"Content": "Disable ConsumerFeatures",
|
||||||
"Description": "Windows 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).",
|
"Description": "Windows 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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Temporary Files - Remove"
|
title: "Delete Temporary Files"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1119}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1961}
|
||||||
"WPFTweaksDeleteTempFiles": {
|
"WPFTweaksDeleteTempFiles": {
|
||||||
"Content": "Temporary Files - Remove",
|
"Content": "Delete Temporary Files",
|
||||||
"Description": "Erases TEMP Folders.",
|
"Description": "Erases TEMP Folders.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
title: "BitLocker - Disable"
|
|
||||||
description: ""
|
|
||||||
---
|
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=610}
|
|
||||||
"WPFTweaksDisableBitLocker": {
|
|
||||||
"Content": "BitLocker - Disable",
|
|
||||||
"Description": "Disables BitLocker.",
|
|
||||||
"category": "Essential Tweaks",
|
|
||||||
"panel": "1",
|
|
||||||
"InvokeScript": [
|
|
||||||
"Disable-BitLocker -MountPoint $Env:SystemDrive"
|
|
||||||
],
|
|
||||||
"UndoScript": [
|
|
||||||
"Enable-BitLocker -MountPoint $Env:SystemDrive"
|
|
||||||
],
|
|
||||||
```
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "File Explorer Automatic Folder Discovery - Disable"
|
title: "Disable Explorer Automatic Folder Discovery"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1840}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2557}
|
||||||
"WPFTweaksDisableExplorerAutoDiscovery": {
|
"WPFTweaksDisableExplorerAutoDiscovery": {
|
||||||
"Content": "File Explorer Automatic Folder Discovery - Disable",
|
"Content": "Disable Explorer Automatic Folder Discovery",
|
||||||
"Description": "Windows Explorer automatically tries to guess the type of the folder based on its contents, slowing down the browsing experience. WARNING! Will disable File Explorer grouping.",
|
"Description": "Windows Explorer automatically tries to guess the type of the folder based on its contents, slowing down the browsing experience. WARNING! Will disable File Explorer grouping.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Microsoft Store Recommended Search Results - Disable"
|
title: "Disable Microsoft Store search results"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=125}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=125}
|
||||||
"WPFTweaksDisableStoreSearch": {
|
"WPFTweaksDisableStoreSearch": {
|
||||||
"Content": "Microsoft Store Recommended Search Results - Disable",
|
"Content": "Disable Microsoft Store search results",
|
||||||
"Description": "Will not display recommended Microsoft Store apps when searching for apps in the Start menu.",
|
"Description": "Will not display recommended Microsoft Store apps when searching for apps in the Start menu.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disk Cleanup - Run"
|
title: "Run Disk Cleanup"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1106}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1948}
|
||||||
"WPFTweaksDiskCleanup": {
|
"WPFTweaksDiskCleanup": {
|
||||||
"Content": "Disk Cleanup - Run",
|
"Content": "Run Disk Cleanup",
|
||||||
"Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
|
"Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "End Task With Right Click - Enable"
|
title: "Enable End Task With Right Click"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=889}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1744}
|
||||||
"WPFTweaksEndTaskOnTaskbar": {
|
"WPFTweaksEndTaskOnTaskbar": {
|
||||||
"Content": "End Task With Right Click - Enable",
|
"Content": "Enable End Task With Right Click",
|
||||||
"Description": "Enables option to end task when right clicking a program in the taskbar.",
|
"Description": "Enables option to end task when right clicking a program in the taskbar.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Hibernation - Disable"
|
title: "Disable Hibernation"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=32}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=32}
|
||||||
"WPFTweaksHiber": {
|
"WPFTweaksHiber": {
|
||||||
"Content": "Hibernation - Disable",
|
"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.",
|
"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.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Location Tracking - Disable"
|
title: "Disable Location Tracking"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=138}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=138}
|
||||||
"WPFTweaksLocation": {
|
"WPFTweaksLocation": {
|
||||||
"Content": "Location Tracking - Disable",
|
"Content": "Disable Location Tracking",
|
||||||
"Description": "Disables Location Tracking.",
|
"Description": "Disables Location Tracking.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "PowerShell 7 Telemetry - Disable"
|
title: "Disable PowerShell 7 Telemetry"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=905}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1760}
|
||||||
"WPFTweaksPowershell7Tele": {
|
"WPFTweaksPowershell7Tele": {
|
||||||
"Content": "PowerShell 7 Telemetry - Disable",
|
"Content": "Disable PowerShell 7 Telemetry",
|
||||||
"Description": "Creates an Environment Variable called 'POWERSHELL_TELEMETRY_OPTOUT' with a value of '1' which will tell PowerShell 7 to not send Telemetry Data.",
|
"Description": "Creates 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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Restore Point - Create"
|
title: "Create Restore Point"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=862}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1717}
|
||||||
"WPFTweaksRestorePoint": {
|
"WPFTweaksRestorePoint": {
|
||||||
"Content": "Restore Point - Create",
|
"Content": "Create Restore Point",
|
||||||
"Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.",
|
"Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Start Menu Previous Layout - Enable"
|
title: "Revert Start Menu layout"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=90}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=90}
|
||||||
"WPFTweaksRevertStartMenu": {
|
"WPFTweaksRevertStartMenu": {
|
||||||
"Content": "Start Menu Previous Layout - Enable",
|
"Content": "Revert Start Menu layout",
|
||||||
"Description": "Bring back the old Start Menu layout from before the gradual rollout of the new one in 25H2.",
|
"Description": "Bring back the old Start Menu layout from before the gradual rollout of the new one in 25H2.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,45 +1,969 @@
|
|||||||
---
|
---
|
||||||
title: "Services - Set to Manual"
|
title: "Set Services to Manual"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=175}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=175}
|
||||||
"WPFTweaksServices": {
|
"WPFTweaksServices": {
|
||||||
"Content": "Services - Set to Manual",
|
"Content": "Set Services to Manual",
|
||||||
"Description": "Sets some services to Manual startup and adjusts the SvcHostSplitThresholdInKB registry value to better match system memory, which can significantly reduce the number of svchost.exe processes.",
|
"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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"service": [
|
"service": [
|
||||||
{
|
{
|
||||||
"Name": "CscService",
|
"Name": "ALG",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "AppMgmt",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "AppReadiness",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "AppVClient",
|
||||||
|
"StartupType": "Disabled",
|
||||||
|
"OriginalType": "Disabled"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "Appinfo",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "AssignedAccessManagerSvc",
|
||||||
"StartupType": "Disabled",
|
"StartupType": "Disabled",
|
||||||
"OriginalType": "Manual"
|
"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": "BITS",
|
||||||
|
"StartupType": "AutomaticDelayedStart",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "BTAGService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "BthAvctpSvc",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "CDPSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "COMSysApp",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "CertPropSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "CryptSvc",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "CscService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "DPS",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "DevQueryBroker",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "DeviceAssociationService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "DeviceInstall",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "Dhcp",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"Name": "DiagTrack",
|
"Name": "DiagTrack",
|
||||||
"StartupType": "Disabled",
|
"StartupType": "Disabled",
|
||||||
"OriginalType": "Automatic"
|
"OriginalType": "Automatic"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "MapsBroker",
|
"Name": "DialogBlockingService",
|
||||||
|
"StartupType": "Disabled",
|
||||||
|
"OriginalType": "Disabled"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "DispBrokerDesktopSvc",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "DisplayEnhancementService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "EFS",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "EapHost",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "EventLog",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "EventSystem",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "FDResPub",
|
||||||
|
"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": "HvHost",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "IKEEXT",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "InstallService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "InventorySvc",
|
||||||
"StartupType": "Manual",
|
"StartupType": "Manual",
|
||||||
"OriginalType": "Automatic"
|
"OriginalType": "Automatic"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"Name": "IpxlatCfgSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "KeyIso",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "KtmRm",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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": "MicrosoftEdgeElevationService",
|
||||||
|
"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": "Netman",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "NlaSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "PcaSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "PeerDistSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "PerfHost",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "PhoneSvc",
|
||||||
|
"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": "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": "RpcLocator",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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": "SensorDataService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "SensorService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "SensrSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "SessionEnv",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "SharedAccess",
|
||||||
|
"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": "StiSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"Name": "StorSvc",
|
"Name": "StorSvc",
|
||||||
"StartupType": "Manual",
|
"StartupType": "Manual",
|
||||||
"OriginalType": "Automatic"
|
"OriginalType": "Automatic"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "SharedAccess",
|
"Name": "SysMain",
|
||||||
"StartupType": "Disabled",
|
"StartupType": "Automatic",
|
||||||
"OriginalType": "Automatic"
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "TapiSrv",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "TermService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "Themes",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "TieringEngineService",
|
||||||
|
"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": "UevAgentService",
|
||||||
|
"StartupType": "Disabled",
|
||||||
|
"OriginalType": "Disabled"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "UmRdpService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "UserManager",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "UsoSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "VSS",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "VaultSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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": "WSAIFabricSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "WSearch",
|
||||||
|
"StartupType": "AutomaticDelayedStart",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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": "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": "WinRM",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "Winmgmt",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "WpcMonSvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "WpnService",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"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": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "cloudidsvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "dcsvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "defragsvc",
|
||||||
|
"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": "fdPHost",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "fhsvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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": "netprofm",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "nsi",
|
||||||
|
"StartupType": "Automatic",
|
||||||
|
"OriginalType": "Automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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": "ssh-agent",
|
||||||
|
"StartupType": "Disabled",
|
||||||
|
"OriginalType": "Disabled"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "svsvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "swprv",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "tzautoupdate",
|
||||||
|
"StartupType": "Disabled",
|
||||||
|
"OriginalType": "Disabled"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "upnphost",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "vds",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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": "wbengine",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "wcncsvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "webthreatdefsvc",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"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": "wuauserv",
|
||||||
|
"StartupType": "Manual",
|
||||||
|
"OriginalType": "Manual"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"InvokeScript": [
|
|
||||||
"
|
|
||||||
$Memory = (Get-CimInstance Win32_PhysicalMemory | Measure-Object Capacity -Sum).Sum / 1KB
|
|
||||||
Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name SvcHostSplitThresholdInKB -Value $Memory
|
|
||||||
"
|
|
||||||
],
|
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Telemetry - Disable"
|
title: "Disable Telemetry"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=475}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1327}
|
||||||
"WPFTweaksTelemetry": {
|
"WPFTweaksTelemetry": {
|
||||||
"Content": "Telemetry - Disable",
|
"Content": "Disable Telemetry",
|
||||||
"Description": "Disables Microsoft Telemetry.",
|
"Description": "Disables Microsoft Telemetry.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -106,6 +106,9 @@ description: ""
|
|||||||
# Disable (Windows Error Reporting Manager) Service
|
# Disable (Windows Error Reporting Manager) Service
|
||||||
Set-Service -Name wermgr -StartupType Disabled
|
Set-Service -Name wermgr -StartupType Disabled
|
||||||
|
|
||||||
|
$Memory = (Get-CimInstance Win32_PhysicalMemory | Measure-Object Capacity -Sum).Sum / 1KB
|
||||||
|
Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name SvcHostSplitThresholdInKB -Value $Memory
|
||||||
|
|
||||||
Remove-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Siuf\\Rules\" -Name PeriodInNanoSeconds
|
Remove-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Siuf\\Rules\" -Name PeriodInNanoSeconds
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Platform Binary Table (WPBT) - Disable"
|
title: "Disable Windows Platform Binary Table (WPBT)"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=974}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1816}
|
||||||
"WPFTweaksWPBT": {
|
"WPFTweaksWPBT": {
|
||||||
"Content": "Windows Platform Binary Table (WPBT) - Disable",
|
"Content": "Disable Windows Platform Binary Table (WPBT)",
|
||||||
"Description": "If enabled, WPBT allows your computer vendor to execute programs at boot time, such as anti-theft software, software drivers, as well as force install software without user consent. Poses potential security risk.",
|
"Description": "If enabled, WPBT allows your computer vendor to execute programs at boot time, such as anti-theft software, software drivers, as well as force install software without user consent. Poses potential security risk.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Widgets - Remove"
|
title: "Remove Widgets"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=61}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=61}
|
||||||
"WPFTweaksWidget": {
|
"WPFTweaksWidget": {
|
||||||
"Content": "Widgets - Remove",
|
"Content": "Remove Widgets",
|
||||||
"Description": "Removes the annoying widgets in the bottom left of the Taskbar.",
|
"Description": "Removes the annoying widgets in the bottom left of the Taskbar.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Ultimate Performance Profile - Enable"
|
title: "Add and Activate Ultimate Performance Profile"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Ultimate Performance Profile - Disable"
|
title: "Remove Ultimate Performance Profile"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Adobe URL Block List - Enable"
|
title: "Adobe Network Block"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1054}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1896}
|
||||||
"WPFTweaksBlockAdobeNet": {
|
"WPFTweaksBlockAdobeNet": {
|
||||||
"Content": "Adobe URL Block List - Enable",
|
"Content": "Adobe Network Block",
|
||||||
"Description": "Reduces user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs",
|
"Description": "Reduces user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Brave Browser - Debloat"
|
title: "Brave Debloat"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=215}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1139}
|
||||||
"WPFTweaksBraveDebloat": {
|
"WPFTweaksBraveDebloat": {
|
||||||
"Content": "Brave Browser - Debloat",
|
"Content": "Brave Debloat",
|
||||||
"Description": "Disables various annoyances like Brave Rewards, Leo AI, Crypto Wallet and VPN.",
|
"Description": "Disables various annoyances like Brave Rewards, Leo AI, Crypto Wallet and VPN.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -44,55 +44,6 @@ description: ""
|
|||||||
"Value": "0",
|
"Value": "0",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "<RemoveEntry>"
|
"OriginalValue": "<RemoveEntry>"
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
||||||
"Name": "BraveNewsDisabled",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
||||||
"Name": "BraveTalkDisabled",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
||||||
"Name": "TorDisabled",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
||||||
"Name": "BraveP3AEnabled",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
||||||
"Name": "UrlKeyedAnonymizedDataCollectionEnabled",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
||||||
"Name": "SafeBrowsingExtendedReportingEnabled",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\BraveSoftware\\Brave",
|
|
||||||
"Name": "MetricsReportingEnabled",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
---
|
---
|
||||||
title: "Unwanted Pre-Installed Apps - Remove"
|
title: "Remove Unwanted Pre-Installed Apps"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=821}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1676}
|
||||||
"WPFTweaksDeBloat": {
|
"WPFTweaksDeBloat": {
|
||||||
"Content": "Unwanted Pre-Installed Apps - Remove",
|
"Content": "Remove Unwanted Pre-Installed Apps",
|
||||||
"Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on their system.",
|
"Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on there system.",
|
||||||
"category": "Essential Tweaks",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"appx": [
|
"appx": [
|
||||||
"Microsoft.WindowsFeedbackHub",
|
"Microsoft.WindowsFeedbackHub",
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Background Apps - Disable"
|
title: "Disable Background Apps"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1192}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2034}
|
||||||
"WPFTweaksDisableBGapps": {
|
"WPFTweaksDisableBGapps": {
|
||||||
"Content": "Background Apps - Disable",
|
"Content": "Disable Background Apps",
|
||||||
"Description": "Disables all Microsoft Store apps from running in the background, which has to be done individually since Windows 11.",
|
"Description": "Disables all Microsoft Store apps from running in the background, which has to be done individually since Windows 11.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Fullscreen Optimizations - Disable"
|
title: "Disable Fullscreen Optimizations"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1208}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2050}
|
||||||
"WPFTweaksDisableFSO": {
|
"WPFTweaksDisableFSO": {
|
||||||
"Content": "Fullscreen Optimizations - Disable",
|
"Content": "Disable Fullscreen Optimizations",
|
||||||
"Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen.",
|
"Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "IPv6 - Disable"
|
title: "Disable IPv6"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1170}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2012}
|
||||||
"WPFTweaksDisableIPv6": {
|
"WPFTweaksDisableIPv6": {
|
||||||
"Content": "IPv6 - Disable",
|
"Content": "Disable IPv6",
|
||||||
"Description": "Disables IPv6.",
|
"Description": "Disables IPv6.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||