mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-08-10 01:51:18 +10:00
Compare commits
23
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9fed8d1c4c | ||
|
|
4ae3549b8a | ||
|
|
e72ac75d13 | ||
|
|
9846dd7b49 | ||
|
|
466d32e690 | ||
|
|
dce1536be0 | ||
|
|
894d62ca68 | ||
|
|
27e590577b | ||
|
|
8147903ff2 | ||
|
|
7a72c73906 | ||
|
|
32891ada55 | ||
|
|
e2d6f8534e | ||
|
|
299b68e82d | ||
|
|
de6652adc0 | ||
|
|
727ba52a4d | ||
|
|
d45c62e470 | ||
|
|
492d5b57d7 | ||
|
|
58d37bb461 | ||
|
|
b72bfb03ba | ||
|
|
cc2be2d5e8 | ||
|
|
93dc23dd66 | ||
|
|
916dc761ba | ||
|
|
2cb20893fc |
@@ -18,6 +18,14 @@ body:
|
|||||||
- label: Yes, I did
|
- label: Yes, I did
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
|
- type: input
|
||||||
|
id: winutil_version
|
||||||
|
attributes:
|
||||||
|
label: "Version of WinUtil"
|
||||||
|
description: "Provide a version that you are using when issue submitted (it can be found in right corner of app)"
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
id: affected_part
|
id: affected_part
|
||||||
attributes:
|
attributes:
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
token: ${{ secrets.AUTO_MERGE }}
|
token: ${{ secrets.AUTO_MERGE }}
|
||||||
commit-message: 'chore: Update documentation links in JSON configs'
|
commit-message: 'chore: Update documentation links in JSON configs'
|
||||||
title: 'chore: Update Generated Dev Docs'
|
title: 'chore: Update documentation links in JSON configs'
|
||||||
body: 'Automated update of documentation links in JSON configs from pre-release build'
|
body: 'Automated update of documentation links in JSON configs from pre-release build'
|
||||||
branch: docs-update
|
branch: docs-update
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
|
|||||||
@@ -9,14 +9,22 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v7
|
||||||
- name: lint
|
- name: Install PSScriptAnalyzer
|
||||||
uses: devblackops/github-action-psscriptanalyzer@master
|
run: |
|
||||||
with:
|
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
|
||||||
sendComment: false
|
Install-Module -Name PSScriptAnalyzer -RequiredVersion 1.20.0 -Scope CurrentUser -Force
|
||||||
settingsPath: lint/PSScriptAnalyser.ps1
|
Import-Module PSScriptAnalyzer -RequiredVersion 1.20.0 -Force
|
||||||
failOnErrors: false
|
Get-Module PSScriptAnalyzer | Select-Object Name, Version, Path
|
||||||
failOnWarnings: false
|
shell: pwsh
|
||||||
failOnInfos: false
|
- name: Run PSScriptAnalyzer
|
||||||
|
run: |
|
||||||
|
$results = Invoke-ScriptAnalyzer -Path . -Settings ./lint/PSScriptAnalyser.ps1 -Recurse
|
||||||
|
if ($results) {
|
||||||
|
$results | Format-Table -AutoSize | Out-String -Width 4096 | Write-Host
|
||||||
|
} else {
|
||||||
|
Write-Host "PSScriptAnalyzer found no diagnostics."
|
||||||
|
}
|
||||||
|
shell: pwsh
|
||||||
test:
|
test:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
@@ -27,13 +35,16 @@ jobs:
|
|||||||
- name: Install Pester
|
- name: Install Pester
|
||||||
run: |
|
run: |
|
||||||
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
||||||
Install-Module -Name Pester -Force -SkipPublisherCheck -AllowClobber
|
Install-Module -Name Pester -RequiredVersion 5.8.0 -Force -SkipPublisherCheck -AllowClobber
|
||||||
|
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
||||||
|
Get-Module Pester | Select-Object Name, Version, Path
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
- name: Run Pester tests
|
- name: Run Pester tests
|
||||||
run: |
|
run: |
|
||||||
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
||||||
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed
|
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
||||||
|
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed -CI
|
||||||
|
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ Microsoft.PowerShell.ConsoleHost.dll
|
|||||||
winutil.exe.config
|
winutil.exe.config
|
||||||
winutil.ps1
|
winutil.ps1
|
||||||
binary/
|
binary/
|
||||||
|
testResults.xml
|
||||||
|
|
||||||
# general software/os specific
|
# general software/os specific
|
||||||
desktop.ini
|
desktop.ini
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ WinUtil is a Windows PowerShell utility with a WPF interface. The repository is
|
|||||||
```
|
```
|
||||||
- Run tests:
|
- Run tests:
|
||||||
```powershell
|
```powershell
|
||||||
|
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
||||||
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed
|
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed
|
||||||
```
|
```
|
||||||
- Run Script Analyzer with project settings when available:
|
- Run Script Analyzer with project settings when available:
|
||||||
@@ -182,4 +183,11 @@ Proceed without asking when:
|
|||||||
When the user corrects an agent approach, add or tighten one concrete rule here before ending the session. Keep this section short and prune rules that no longer matter.
|
When the user corrects an agent approach, add or tighten one concrete rule here before ending the session. Keep this section short and prune rules that no longer matter.
|
||||||
|
|
||||||
- Keep `winutil.ps1` generated-only: change source files, compile to verify, and never stage the generated script.
|
- Keep `winutil.ps1` generated-only: change source files, compile to verify, and never stage the generated script.
|
||||||
|
- Keep WinUtil runtime logging in the existing timestamped `%LocalAppData%\winutil\logs\winutil_*.log` session file; do not create a separate root `winutil.log`.
|
||||||
|
- Import Pester 5.8.0 before running tests so `Invoke-Pester -Output Detailed -CI` does not resolve to Windows' inbox Pester 3.4.0.
|
||||||
|
- Keep package install/uninstall process launches simple unless explicitly requested; do not add a separate stdout/stderr process logging helper for winget or Chocolatey.
|
||||||
|
- When the active log file is owned by `Start-Transcript`, do not call `Add-Content` against that file; write to host output so the transcript captures the line in the same log file without recording a terminating-error diagnostic.
|
||||||
|
- Log install/uninstall package names and package-manager IDs before queuing background runspace work; do not rely on runspace host output for the package identity.
|
||||||
|
- For Win11 Creator, start each new ISO modification in a fresh `WinUtil_Win11ISO_*` temp directory; existing-work detection is only for resuming/exporting already modified media.
|
||||||
|
- For Script Analyzer cleanup, fix actionable source warnings first and do not globally suppress accepted convention warnings such as plural names, `ShouldProcess` on UI helpers, `$global:sync`, or compile-time cross-file false positives.
|
||||||
|
- For DNS DHCP reset, keep the cmdlet reset and explicitly set IPv4 and IPv6 DNS source to DHCP.
|
||||||
|
|||||||
+3
-1
@@ -10,7 +10,9 @@ $sync.configs = @{}
|
|||||||
|
|
||||||
$script = (Get-Content -Path scripts\start.ps1) -replace '#{replaceme}', (Get-Date -Format 'yy.MM.dd')
|
$script = (Get-Content -Path scripts\start.ps1) -replace '#{replaceme}', (Get-Date -Format 'yy.MM.dd')
|
||||||
|
|
||||||
$script += Get-ChildItem -Path functions -Recurse -File | Get-Content -Raw
|
$script += Get-ChildItem -Path functions -Recurse -File | ForEach-Object {
|
||||||
|
Get-Content -Path $_.FullName -Raw
|
||||||
|
}
|
||||||
|
|
||||||
Get-ChildItem config | ForEach-Object {
|
Get-ChildItem config | ForEach-Object {
|
||||||
$obj = Get-Content -Path $_.FullName -Raw | ConvertFrom-Json
|
$obj = Get-Content -Path $_.FullName -Raw | ConvertFrom-Json
|
||||||
|
|||||||
@@ -94,7 +94,8 @@ Expected validation for source changes:
|
|||||||
|
|
||||||
- `.\Compile.ps1` verifies the compiler can generate `winutil.ps1`.
|
- `.\Compile.ps1` verifies the compiler can generate `winutil.ps1`.
|
||||||
- `.\Compile.ps1 -Run` compiles and launches the generated utility for manual GUI verification.
|
- `.\Compile.ps1 -Run` compiles and launches the generated utility for manual GUI verification.
|
||||||
- `Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed` runs the Pester suite.
|
- `Install-Module -Name Pester -RequiredVersion 5.8.0 -Scope CurrentUser -Force -SkipPublisherCheck` installs the supported Pester version.
|
||||||
|
- `Import-Module Pester -RequiredVersion 5.8.0 -Force; Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed -CI` runs the Pester suite.
|
||||||
- GitHub Actions also runs a compile check and PowerShell Script Analyzer with `lint/PSScriptAnalyser.ps1`.
|
- GitHub Actions also runs a compile check and PowerShell Script Analyzer with `lint/PSScriptAnalyser.ps1`.
|
||||||
|
|
||||||
The generated `winutil.ps1` may appear locally after compile. It remains ignored build output and must not be committed.
|
The generated `winutil.ps1` may appear locally after compile. It remains ignored build output and must not be committed.
|
||||||
@@ -102,4 +103,3 @@ The generated `winutil.ps1` may appear locally after compile. It remains ignored
|
|||||||
## Release Artifact
|
## Release Artifact
|
||||||
|
|
||||||
GitHub Actions is responsible for producing the release `winutil.ps1` from repository sources. A release should be considered valid only if the generated script came from the compile process, not from direct manual edits to `winutil.ps1`.
|
GitHub Actions is responsible for producing the release `winutil.ps1` from repository sources. A release should be considered valid only if the generated script came from the compile process, not from direct manual edits to `winutil.ps1`.
|
||||||
|
|
||||||
|
|||||||
@@ -782,6 +782,15 @@
|
|||||||
"winget": "Element.Element",
|
"winget": "Element.Element",
|
||||||
"foss": true
|
"foss": true
|
||||||
},
|
},
|
||||||
|
"minitoolpartitionwizard": {
|
||||||
|
"category": "Utilities",
|
||||||
|
"choco": "minitoolpartitionwizard",
|
||||||
|
"content": "MiniTool Partition Wizard",
|
||||||
|
"description": "Comprehensive free partition manager that performs advanced operations Windows natively cannot, such as merging partitions, converting file systems, and organizing disk capacity.",
|
||||||
|
"link": "https://www.partitionwizard.com/",
|
||||||
|
"winget": "MiniTool.PartitionWizard.Free",
|
||||||
|
"foss": false
|
||||||
|
},
|
||||||
"modrinth": {
|
"modrinth": {
|
||||||
"category": "Games",
|
"category": "Games",
|
||||||
"choco": "modrinth-app",
|
"choco": "modrinth-app",
|
||||||
@@ -1522,7 +1531,7 @@
|
|||||||
"everything": {
|
"everything": {
|
||||||
"category": "Utilities",
|
"category": "Utilities",
|
||||||
"choco": "everything",
|
"choco": "everything",
|
||||||
"content": "VoidTools Everything",
|
"content": "Everything",
|
||||||
"description": "Everything is a search engine that locates files and folders by filename instantly for Windows. Unlike Windows search Everything initially displays every file and folder on your computer (hence the name Everything). You type in a search filter to limit what files and folders are displayed.",
|
"description": "Everything is a search engine that locates files and folders by filename instantly for Windows. Unlike Windows search Everything initially displays every file and folder on your computer (hence the name Everything). You type in a search filter to limit what files and folders are displayed.",
|
||||||
"link": "https://www.voidtools.com/",
|
"link": "https://www.voidtools.com/",
|
||||||
"winget": "voidtools.Everything",
|
"winget": "voidtools.Everything",
|
||||||
|
|||||||
+22
-3
@@ -913,6 +913,7 @@
|
|||||||
New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife\\$Sid\\$Appx\" -Force
|
New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife\\$Sid\\$Appx\" -Force
|
||||||
|
|
||||||
Get-AppxPackage -AllUsers \"*Copilot*\" | Remove-AppxPackage -AllUsers
|
Get-AppxPackage -AllUsers \"*Copilot*\" | Remove-AppxPackage -AllUsers
|
||||||
|
winget uninstall -e --name \"Copilot\" --silent --force --accept-source-agreements 2>$null
|
||||||
Get-AppxPackage -AllUsers Microsoft.MicrosoftOfficeHub | Remove-AppxPackage -AllUsers
|
Get-AppxPackage -AllUsers Microsoft.MicrosoftOfficeHub | Remove-AppxPackage -AllUsers
|
||||||
|
|
||||||
if ($Appx) {
|
if ($Appx) {
|
||||||
@@ -1461,10 +1462,10 @@
|
|||||||
{
|
{
|
||||||
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers",
|
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers",
|
||||||
"Name": "DisableOverlays",
|
"Name": "DisableOverlays",
|
||||||
"Value": "1",
|
"Value": "0",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "0",
|
"OriginalValue": "1",
|
||||||
"DefaultState": "false"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/multiplaneoverlay"
|
"link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/multiplaneoverlay"
|
||||||
@@ -1529,6 +1530,24 @@
|
|||||||
],
|
],
|
||||||
"link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/numlock"
|
"link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/numlock"
|
||||||
},
|
},
|
||||||
|
"WPFToggleWindowSnapping": {
|
||||||
|
"Content": "Window Snapping",
|
||||||
|
"Description": "Toggles the window snapping feature when dragging windows.",
|
||||||
|
"category": "Customize Preferences",
|
||||||
|
"panel": "2",
|
||||||
|
"Type": "Toggle",
|
||||||
|
"registry": [
|
||||||
|
{
|
||||||
|
"Path": "HKCU:\\Control Panel\\Desktop",
|
||||||
|
"Name": "WindowArrangementActive",
|
||||||
|
"Value": "1",
|
||||||
|
"Type": "String",
|
||||||
|
"OriginalValue": "0",
|
||||||
|
"DefaultState": "true"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/windowsnapping"
|
||||||
|
},
|
||||||
"WPFToggleStandbyFix": {
|
"WPFToggleStandbyFix": {
|
||||||
"Content": "S0 Sleep Network Connectivity",
|
"Content": "S0 Sleep Network Connectivity",
|
||||||
"Description": "Toggles network connectivity during S0 Sleep which is low power idle in modern laptops.",
|
"Description": "Toggles network connectivity during S0 Sleep which is low power idle in modern laptops.",
|
||||||
|
|||||||
@@ -30,3 +30,18 @@ In these cases, the power plan may fail to apply, This is expected behavior on u
|
|||||||
Revert start menu tweak stops working starting with **Windows 11 update KB5089573** (released in May 2026).
|
Revert start menu tweak stops working starting with **Windows 11 update KB5089573** (released in May 2026).
|
||||||
|
|
||||||
In this update, Microsoft completely removed the old Start Menu code from Windows, so we aren't able to bring it back.
|
In this update, Microsoft completely removed the old Start Menu code from Windows, so we aren't able to bring it back.
|
||||||
|
|
||||||
|
### Issues with PowerShell 7 or Class not registered Error
|
||||||
|
Installing PowerShell 7 from the Microsoft Store (MSIX package) is known to cause issues with DISM cmdlets such as `Get-WindowsOptionalFeature` and `Enable-WindowsOptionalFeature`, resulting in a `Class not registered` COM error.
|
||||||
|
|
||||||
|
This might also make it so running the "pre-installed app removal" will take a indefinite amount of time
|
||||||
|
|
||||||
|
Instead, install PowerShell 7 using one of the following methods:
|
||||||
|
|
||||||
|
**winget (recommended):**
|
||||||
|
```powershell
|
||||||
|
winget install --id Microsoft.PowerShell --source winget --installer-type wix
|
||||||
|
```
|
||||||
|
**Direct MSI from GitHub Releases:** Download the `.msi` installer from the [PowerShell GitHub Releases](https://github.com/PowerShell/PowerShell/releases) page.
|
||||||
|
|
||||||
|
For more details see https://github.com/PowerShell/PowerShell/issues/13866
|
||||||
|
|||||||
@@ -578,7 +578,9 @@ Tests are in `/pester/`:
|
|||||||
|
|
||||||
Run tests:
|
Run tests:
|
||||||
```powershell
|
```powershell
|
||||||
Invoke-Pester
|
Install-Module -Name Pester -RequiredVersion 5.8.0 -Scope CurrentUser -Force -SkipPublisherCheck
|
||||||
|
Import-Module Pester -RequiredVersion 5.8.0 -Force
|
||||||
|
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed -CI
|
||||||
```
|
```
|
||||||
|
|
||||||
## Build Process
|
## Build Process
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ function Invoke-WinUtilInstallPSProfile {
|
|||||||
if (-not (Get-Command pwsh)) {
|
if (-not (Get-Command pwsh)) {
|
||||||
Write-Host "PowerShell 7 not found. Installing..."
|
Write-Host "PowerShell 7 not found. Installing..."
|
||||||
Install-WinUtilWinget
|
Install-WinUtilWinget
|
||||||
winget install Microsoft.PowerShell --source winget --silent
|
winget install Microsoft.PowerShell --source winget --installer-type wix --silent
|
||||||
}
|
}
|
||||||
|
|
||||||
wt new-tab pwsh -NoExit -Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"
|
wt new-tab pwsh -NoExit -Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "System Tray Battery Percentage"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1251}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1252}
|
||||||
"WPFToggleBatteryPercentage": {
|
"WPFToggleBatteryPercentage": {
|
||||||
"Content": "System Tray Battery Percentage",
|
"Content": "System Tray Battery Percentage",
|
||||||
"Description": "Shows numeric battery percentage next to the battery icon in the system tray.",
|
"Description": "Shows numeric battery percentage next to the battery icon in the system tray.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Start Menu Bing Search"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1586}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1605}
|
||||||
"WPFToggleBingSearch": {
|
"WPFToggleBingSearch": {
|
||||||
"Content": "Start Menu Bing Search",
|
"Content": "Start Menu Bing Search",
|
||||||
"Description": "Toggles Bing web search results in Windows Search.",
|
"Description": "Toggles Bing web search results in Windows Search.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Dark Theme for Windows"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1269}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1270}
|
||||||
"WPFToggleDarkMode": {
|
"WPFToggleDarkMode": {
|
||||||
"Content": "Dark Theme for Windows",
|
"Content": "Dark Theme for Windows",
|
||||||
"Description": "Dark Mode for the system and applications.",
|
"Description": "Dark Mode for the system and applications.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "BSoD Verbose Mode"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1225}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1226}
|
||||||
"WPFToggleDetailedBSoD": {
|
"WPFToggleDetailedBSoD": {
|
||||||
"Content": "BSoD Verbose Mode",
|
"Content": "BSoD Verbose Mode",
|
||||||
"Description": "Gives more information when you blue screen.",
|
"Description": "Gives more information when you blue screen.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Lock Screen - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1622}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1641}
|
||||||
"WPFTweaksDisableLockscreen": {
|
"WPFTweaksDisableLockscreen": {
|
||||||
"Content": "Lock Screen - Disable",
|
"Content": "Lock Screen - Disable",
|
||||||
"Description": "Skips the lock screen entirely and goes directly to the sign-in screen on boot and wake.",
|
"Description": "Skips the lock screen entirely and goes directly to the sign-in screen on boot and wake.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Game Mode"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1765}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1784}
|
||||||
"WPFToggleGameMode": {
|
"WPFToggleGameMode": {
|
||||||
"Content": "Game Mode",
|
"Content": "Game Mode",
|
||||||
"Description": "Toggles Windows prioritizes gaming performance by allocating system resources to games.",
|
"Description": "Toggles Windows prioritizes gaming performance by allocating system resources to games.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "File Explorer Hidden Files"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1339}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1340}
|
||||||
"WPFToggleHiddenFiles": {
|
"WPFToggleHiddenFiles": {
|
||||||
"Content": "File Explorer Hidden Files",
|
"Content": "File Explorer Hidden Files",
|
||||||
"Description": "Reveals hidden files in Explorer.",
|
"Description": "Reveals hidden files in Explorer.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Settings Home Page"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1568}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1587}
|
||||||
"WPFToggleHideSettingsHome": {
|
"WPFToggleHideSettingsHome": {
|
||||||
"Content": "Settings Home Page",
|
"Content": "Settings Home Page",
|
||||||
"Description": "Toggles the Home Page in the Windows Settings app.",
|
"Description": "Toggles the Home Page in the Windows Settings app.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Logon Screen Acrylic Blur"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1604}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1623}
|
||||||
"WPFToggleLoginBlur": {
|
"WPFToggleLoginBlur": {
|
||||||
"Content": "Logon Screen Acrylic Blur",
|
"Content": "Logon Screen Acrylic Blur",
|
||||||
"Description": "Toggles the acrylic blur effect on login screen background.",
|
"Description": "Toggles the acrylic blur effect on login screen background.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Enable Long Paths"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1791}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1810}
|
||||||
"WPFToggleLongPaths": {
|
"WPFToggleLongPaths": {
|
||||||
"Content": "Enable Long Paths",
|
"Content": "Enable Long Paths",
|
||||||
"Description": "Toggles support for file paths longer than 260 characters in Explorer.",
|
"Description": "Toggles support for file paths longer than 260 characters in Explorer.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Mouse Acceleration"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1472}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1473}
|
||||||
"WPFToggleMouseAcceleration": {
|
"WPFToggleMouseAcceleration": {
|
||||||
"Content": "Mouse Acceleration",
|
"Content": "Mouse Acceleration",
|
||||||
"Description": "Makes it so Cursor movement is affected by the speed of your physical mouse movements.",
|
"Description": "Makes it so Cursor movement is affected by the speed of your physical mouse movements.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Multiplane Overlay"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1446}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1447}
|
||||||
"WPFToggleMultiplaneOverlay": {
|
"WPFToggleMultiplaneOverlay": {
|
||||||
"Content": "Multiplane Overlay",
|
"Content": "Multiplane Overlay",
|
||||||
"Description": "Multiplane Overlay compose multiple image layers, which can sometimes cause issues with graphics cards.",
|
"Description": "Multiplane Overlay compose multiple image layers, which can sometimes cause issues with graphics cards.",
|
||||||
@@ -22,10 +22,10 @@ description: ""
|
|||||||
{
|
{
|
||||||
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers",
|
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers",
|
||||||
"Name": "DisableOverlays",
|
"Name": "DisableOverlays",
|
||||||
"Value": "1",
|
"Value": "0",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "0",
|
"OriginalValue": "1",
|
||||||
"DefaultState": "false"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Microsoft Outlook New Version"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1385}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1386}
|
||||||
"WPFToggleNewOutlook": {
|
"WPFToggleNewOutlook": {
|
||||||
"Content": "Microsoft Outlook New Version",
|
"Content": "Microsoft Outlook New Version",
|
||||||
"Description": "This will ensures the classic Outlook application is used.",
|
"Description": "This will ensures the classic Outlook application is used.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Num Lock on Startup"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1506}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1507}
|
||||||
"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=1550}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1569}
|
||||||
"WPFToggleS3Sleep": {
|
"WPFToggleS3Sleep": {
|
||||||
"Content": "S3 Sleep",
|
"Content": "S3 Sleep",
|
||||||
"Description": "Toggles between Modern Standby and S3 Sleep, which cuts off power to the CPU while continuing to refresh the memory.",
|
"Description": "Toggles between Modern Standby and S3 Sleep, which cuts off power to the CPU while continuing to refresh the memory.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Scrollbars Always Visible"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1427}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1428}
|
||||||
"WPFToggleScrollbars": {
|
"WPFToggleScrollbars": {
|
||||||
"Content": "Scrollbars Always Visible",
|
"Content": "Scrollbars Always Visible",
|
||||||
"Description": "If enabled, scrollbars will always be visible. If disabled, Windows will automatically hide scrollbars when not in use.",
|
"Description": "If enabled, scrollbars will always be visible. If disabled, Windows will automatically hide scrollbars when not in use.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "File Explorer File Extensions"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1311}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1312}
|
||||||
"WPFToggleShowExt": {
|
"WPFToggleShowExt": {
|
||||||
"Content": "File Explorer File Extensions",
|
"Content": "File Explorer File Extensions",
|
||||||
"Description": "Shows .file extensions in Explorer (.exe, .png, etc.)",
|
"Description": "Shows .file extensions in Explorer (.exe, .png, etc.)",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "S0 Sleep Network Connectivity"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1532}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1551}
|
||||||
"WPFToggleStandbyFix": {
|
"WPFToggleStandbyFix": {
|
||||||
"Content": "S0 Sleep Network Connectivity",
|
"Content": "S0 Sleep Network Connectivity",
|
||||||
"Description": "Toggles network connectivity during S0 Sleep which is low power idle in modern laptops.",
|
"Description": "Toggles network connectivity during S0 Sleep which is low power idle in modern laptops.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Start Menu Recommendations"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1639}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1658}
|
||||||
"WPFToggleStartMenuRecommendations": {
|
"WPFToggleStartMenuRecommendations": {
|
||||||
"Content": "Start Menu Recommendations",
|
"Content": "Start Menu Recommendations",
|
||||||
"Description": "Toggles the recommendations section in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.",
|
"Description": "Toggles the recommendations section in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.",
|
||||||
|
|||||||
@@ -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=1702}
|
||||||
"WPFToggleStickyKeys": {
|
"WPFToggleStickyKeys": {
|
||||||
"Content": "Sticky Keys",
|
"Content": "Sticky Keys",
|
||||||
"Description": "Toggles the Sticky Keys, which activate when clicking shift rapidly.",
|
"Description": "Toggles the Sticky Keys, which activate when clicking shift rapidly.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Taskbar Task View Icon"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1747}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1766}
|
||||||
"WPFToggleTaskView": {
|
"WPFToggleTaskView": {
|
||||||
"Content": "Taskbar Task View Icon",
|
"Content": "Taskbar Task View Icon",
|
||||||
"Description": "Toggles the Task View Button in the Taskbar.",
|
"Description": "Toggles the Task View Button in the Taskbar.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Taskbar Centered Icons"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1701}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1720}
|
||||||
"WPFToggleTaskbarAlignment": {
|
"WPFToggleTaskbarAlignment": {
|
||||||
"Content": "Taskbar Centered Icons",
|
"Content": "Taskbar Centered Icons",
|
||||||
"Description": "Toggles the Taskbar alignment either to the left or center.",
|
"Description": "Toggles the Taskbar alignment either to the left or center.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Taskbar Search Icon"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1729}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1748}
|
||||||
"WPFToggleTaskbarSearch": {
|
"WPFToggleTaskbarSearch": {
|
||||||
"Content": "Taskbar Search Icon",
|
"Content": "Taskbar Search Icon",
|
||||||
"Description": "Toggles the Search Button on the Taskbar.",
|
"Description": "Toggles the Search Button on the Taskbar.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Logon Verbose Mode"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1367}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1368}
|
||||||
"WPFToggleVerboseLogon": {
|
"WPFToggleVerboseLogon": {
|
||||||
"Content": "Logon Verbose Mode",
|
"Content": "Logon Verbose Mode",
|
||||||
"Description": "Show detailed messages during startup/shutdown.",
|
"Description": "Show detailed messages during startup/shutdown.",
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
title: "Window Snapping"
|
||||||
|
description: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1533}
|
||||||
|
"WPFToggleWindowSnapping": {
|
||||||
|
"Content": "Window Snapping",
|
||||||
|
"Description": "Toggles the window snapping feature when dragging windows.",
|
||||||
|
"category": "Customize Preferences",
|
||||||
|
"panel": "2",
|
||||||
|
"Type": "Toggle",
|
||||||
|
"registry": [
|
||||||
|
{
|
||||||
|
"Path": "HKCU:\\Control Panel\\Desktop",
|
||||||
|
"Name": "WindowArrangementActive",
|
||||||
|
"Value": "1",
|
||||||
|
"Type": "String",
|
||||||
|
"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://en.wikipedia.org/wiki/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|
||||||
@@ -3,7 +3,7 @@ title: "Temporary Files - Remove"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1065}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1066}
|
||||||
"WPFTweaksDeleteTempFiles": {
|
"WPFTweaksDeleteTempFiles": {
|
||||||
"Content": "Temporary Files - Remove",
|
"Content": "Temporary Files - Remove",
|
||||||
"Description": "Erases TEMP Folders.",
|
"Description": "Erases TEMP Folders.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "File Explorer Automatic Folder Discovery - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1170}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1171}
|
||||||
"WPFTweaksDisableExplorerAutoDiscovery": {
|
"WPFTweaksDisableExplorerAutoDiscovery": {
|
||||||
"Content": "File Explorer Automatic Folder Discovery - Disable",
|
"Content": "File Explorer Automatic Folder Discovery - Disable",
|
||||||
"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.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Disk Cleanup - Run"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1052}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1053}
|
||||||
"WPFTweaksDiskCleanup": {
|
"WPFTweaksDiskCleanup": {
|
||||||
"Content": "Disk Cleanup - Run",
|
"Content": "Disk Cleanup - Run",
|
||||||
"Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
|
"Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Windows Platform Binary Table (WPBT) - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=930}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=931}
|
||||||
"WPFTweaksWPBT": {
|
"WPFTweaksWPBT": {
|
||||||
"Content": "Windows Platform Binary Table (WPBT) - Disable",
|
"Content": "Windows Platform Binary Table (WPBT) - Disable",
|
||||||
"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.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Adobe URL Block List - Enable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1010}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1011}
|
||||||
"WPFTweaksBlockAdobeNet": {
|
"WPFTweaksBlockAdobeNet": {
|
||||||
"Content": "Adobe URL Block List - Enable",
|
"Content": "Adobe URL Block List - Enable",
|
||||||
"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",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Background Apps - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1138}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1139}
|
||||||
"WPFTweaksDisableBGapps": {
|
"WPFTweaksDisableBGapps": {
|
||||||
"Content": "Background Apps - Disable",
|
"Content": "Background Apps - Disable",
|
||||||
"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.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Fullscreen Optimizations - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1154}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1155}
|
||||||
"WPFTweaksDisableFSO": {
|
"WPFTweaksDisableFSO": {
|
||||||
"Content": "Fullscreen Optimizations - Disable",
|
"Content": "Fullscreen Optimizations - Disable",
|
||||||
"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.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "IPv6 - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1116}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1117}
|
||||||
"WPFTweaksDisableIPv6": {
|
"WPFTweaksDisableIPv6": {
|
||||||
"Content": "IPv6 - Disable",
|
"Content": "IPv6 - Disable",
|
||||||
"Description": "Disables IPv6.",
|
"Description": "Disables IPv6.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "System Tray Notifications & Calendar - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=987}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=988}
|
||||||
"WPFTweaksDisableNotifications": {
|
"WPFTweaksDisableNotifications": {
|
||||||
"Content": "System Tray Notifications & Calendar - Disable",
|
"Content": "System Tray Notifications & Calendar - Disable",
|
||||||
"Description": "Disables all Notifications INCLUDING Calendar.",
|
"Description": "Disables all Notifications INCLUDING Calendar.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "IPv6 - Set IPv4 as Preferred"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1078}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1079}
|
||||||
"WPFTweaksIPv46": {
|
"WPFTweaksIPv46": {
|
||||||
"Content": "IPv6 - Set IPv4 as Preferred",
|
"Content": "IPv6 - Set IPv4 as Preferred",
|
||||||
"Description": "Setting the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.",
|
"Description": "Setting the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Razer Software Auto-Install - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=946}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=947}
|
||||||
"WPFTweaksRazerBlock": {
|
"WPFTweaksRazerBlock": {
|
||||||
"Content": "Razer Software Auto-Install - Disable",
|
"Content": "Razer Software Auto-Install - Disable",
|
||||||
"Description": "Blocks ALL Razer Software installations. The hardware works fine without any software.",
|
"Description": "Blocks ALL Razer Software installations. The hardware works fine without any software.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Right-Click Menu Previous Layout - Enable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1036}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1037}
|
||||||
"WPFTweaksRightClickMenu": {
|
"WPFTweaksRightClickMenu": {
|
||||||
"Content": "Right-Click Menu Previous Layout - Enable",
|
"Content": "Right-Click Menu Previous Layout - Enable",
|
||||||
"Description": "Restores the classic context menu when right-clicking in File Explorer, replacing the simplified Windows 11 version.",
|
"Description": "Restores the classic context menu when right-clicking in File Explorer, replacing the simplified Windows 11 version.",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Teredo - Disable"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1094}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1095}
|
||||||
"WPFTweaksTeredo": {
|
"WPFTweaksTeredo": {
|
||||||
"Content": "Teredo - Disable",
|
"Content": "Teredo - Disable",
|
||||||
"Description": "Teredo network tunneling is an IPv6 feature that can cause additional latency, but may cause problems with some games.",
|
"Description": "Teredo network tunneling is an IPv6 feature that can cause additional latency, but may cause problems with some games.",
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ description: ""
|
|||||||
New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife\\$Sid\\$Appx\" -Force
|
New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife\\$Sid\\$Appx\" -Force
|
||||||
|
|
||||||
Get-AppxPackage -AllUsers \"*Copilot*\" | Remove-AppxPackage -AllUsers
|
Get-AppxPackage -AllUsers \"*Copilot*\" | Remove-AppxPackage -AllUsers
|
||||||
|
winget uninstall -e --name \"Copilot\" --silent --force --accept-source-agreements 2>$null
|
||||||
Get-AppxPackage -AllUsers Microsoft.MicrosoftOfficeHub | Remove-AppxPackage -AllUsers
|
Get-AppxPackage -AllUsers Microsoft.MicrosoftOfficeHub | Remove-AppxPackage -AllUsers
|
||||||
|
|
||||||
if ($Appx) {
|
if ($Appx) {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "DNS - Set to:"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1816}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1835}
|
||||||
"WPFchangedns": {
|
"WPFchangedns": {
|
||||||
"Content": "DNS - Set to:",
|
"Content": "DNS - Set to:",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
function Close-WinUtilRunspacePool {
|
||||||
|
if ($null -eq $sync -or -not $sync.ContainsKey("runspace") -or $null -eq $sync.runspace) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
if ($sync.runspace.RunspacePoolStateInfo.State -notin @(
|
||||||
|
[System.Management.Automation.Runspaces.RunspacePoolState]::Closed,
|
||||||
|
[System.Management.Automation.Runspaces.RunspacePoolState]::Closing,
|
||||||
|
[System.Management.Automation.Runspaces.RunspacePoolState]::Broken
|
||||||
|
)) {
|
||||||
|
$sync.runspace.Close()
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
$sync.runspace.Dispose()
|
||||||
|
$sync.Remove("runspace")
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -83,9 +83,9 @@ function Find-AppsByNameOrDescription {
|
|||||||
$categoryLabel.Visibility = [Windows.Visibility]::Visible
|
$categoryLabel.Visibility = [Windows.Visibility]::Visible
|
||||||
|
|
||||||
# Search through apps in this category
|
# Search through apps in this category
|
||||||
$wrapPanel.Children | ForEach-Object {
|
foreach ($appControl in $wrapPanel.Children) {
|
||||||
# Safely retrieve app entry from hashtable
|
# Safely retrieve app entry from hashtable
|
||||||
$appTag = $_.Tag
|
$appTag = $appControl.Tag
|
||||||
$appEntry = $null
|
$appEntry = $null
|
||||||
|
|
||||||
if (-not [string]::IsNullOrWhiteSpace($appTag) -and $sync.configs.applicationsHashtable.ContainsKey($appTag)) {
|
if (-not [string]::IsNullOrWhiteSpace($appTag) -and $sync.configs.applicationsHashtable.ContainsKey($appTag)) {
|
||||||
@@ -99,16 +99,16 @@ function Find-AppsByNameOrDescription {
|
|||||||
|
|
||||||
if ($contentMatch -or $descriptionMatch) {
|
if ($contentMatch -or $descriptionMatch) {
|
||||||
# Show the App and mark that this category has a match
|
# Show the App and mark that this category has a match
|
||||||
$_.Visibility = [Windows.Visibility]::Visible
|
$appControl.Visibility = [Windows.Visibility]::Visible
|
||||||
$categoryHasMatch = $true
|
$categoryHasMatch = $true
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$_.Visibility = [Windows.Visibility]::Collapsed
|
$appControl.Visibility = [Windows.Visibility]::Collapsed
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
# Hide app if no entry found (data integrity issue)
|
# Hide app if no entry found (data integrity issue)
|
||||||
$_.Visibility = [Windows.Visibility]::Collapsed
|
$appControl.Visibility = [Windows.Visibility]::Collapsed
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -114,6 +114,7 @@ function Find-TweaksByNameOrDescription {
|
|||||||
}
|
}
|
||||||
catch {
|
catch {
|
||||||
# Silent catch - UI element may be disposed
|
# Silent catch - UI element may be disposed
|
||||||
|
$null = $_
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
@@ -303,5 +304,6 @@ function Find-TweaksByNameOrDescription {
|
|||||||
catch {
|
catch {
|
||||||
# Silent catch - UI elements may be disposed or in unexpected state
|
# Silent catch - UI elements may be disposed or in unexpected state
|
||||||
# Do not log to terminal as this function is called on every keystroke
|
# Do not log to terminal as this function is called on every keystroke
|
||||||
|
$null = $_
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,28 @@
|
|||||||
|
function Get-WinUtilPackageLogSummary {
|
||||||
|
param(
|
||||||
|
[Parameter(Mandatory = $true)]
|
||||||
|
[object[]]$Packages,
|
||||||
|
|
||||||
|
[Parameter(Mandatory = $true)]
|
||||||
|
[string]$Preference
|
||||||
|
)
|
||||||
|
|
||||||
|
@($Packages | ForEach-Object {
|
||||||
|
$package = $_
|
||||||
|
$packageName = @($package.Name, $package.Description, $package.winget, $package.choco) |
|
||||||
|
Where-Object { -not [string]::IsNullOrWhiteSpace([string]$_) -and $_ -ne "na" } |
|
||||||
|
Select-Object -First 1
|
||||||
|
|
||||||
|
if ([string]::IsNullOrWhiteSpace([string]$packageName)) {
|
||||||
|
$packageName = "Unknown package"
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($Preference -eq "Choco" -and -not [string]::IsNullOrWhiteSpace([string]$package.choco) -and $package.choco -ne "na") {
|
||||||
|
"$packageName (choco: $($package.choco))"
|
||||||
|
} elseif (-not [string]::IsNullOrWhiteSpace([string]$package.winget) -and $package.winget -ne "na") {
|
||||||
|
"$packageName (winget: $($package.winget))"
|
||||||
|
} else {
|
||||||
|
"$packageName (no package id)"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -3,9 +3,9 @@ function Get-WinUtilSelectedPackages {
|
|||||||
param(
|
param(
|
||||||
[Parameter(Mandatory = $true)]
|
[Parameter(Mandatory = $true)]
|
||||||
[object] $PackageList,
|
[object] $PackageList,
|
||||||
|
|
||||||
[Parameter(Mandatory = $true)]
|
[Parameter(Mandatory = $true)]
|
||||||
[PackageManagers] $Preference
|
[string] $Preference
|
||||||
)
|
)
|
||||||
|
|
||||||
if ($PackageList.count -eq 1) {
|
if ($PackageList.count -eq 1) {
|
||||||
@@ -14,24 +14,39 @@ function Get-WinUtilSelectedPackages {
|
|||||||
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -state "Normal" -value 0.01 -overlay "logo" }
|
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -state "Normal" -value 0.01 -overlay "logo" }
|
||||||
}
|
}
|
||||||
|
|
||||||
$packages = [System.Collections.Hashtable]::new()
|
|
||||||
$packagesWinget = [System.Collections.ArrayList]::new()
|
$packagesWinget = [System.Collections.ArrayList]::new()
|
||||||
$packagesChoco = [System.Collections.ArrayList]::new()
|
$packagesChoco = [System.Collections.ArrayList]::new()
|
||||||
|
$packages = @{
|
||||||
|
Winget = $packagesWinget
|
||||||
|
Choco = $packagesChoco
|
||||||
|
}
|
||||||
|
|
||||||
$packages[[PackageManagers]::Winget] = $packagesWinget
|
function Add-PackageId {
|
||||||
$packages[[PackageManagers]::Choco] = $packagesChoco
|
param(
|
||||||
|
[System.Collections.ArrayList]$Target,
|
||||||
|
$PackageId
|
||||||
|
)
|
||||||
|
|
||||||
|
if ([string]::IsNullOrWhiteSpace([string]$PackageId) -or $PackageId -eq "na") {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (-not $Target.Contains($PackageId)) {
|
||||||
|
$null = $Target.Add($PackageId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($package in $PackageList) {
|
foreach ($package in $PackageList) {
|
||||||
switch ($Preference) {
|
switch ($Preference) {
|
||||||
"Choco" {
|
"Choco" {
|
||||||
if ($package.choco -eq "na") {
|
if ([string]::IsNullOrWhiteSpace([string]$package.choco) -or $package.choco -eq "na") {
|
||||||
$null = $packagesWinget.add($package.winget)
|
Add-PackageId -Target $packagesWinget -PackageId $package.winget
|
||||||
} else {
|
} else {
|
||||||
$null = $packagesChoco.add($package.choco)
|
Add-PackageId -Target $packagesChoco -PackageId $package.choco
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"Winget" {
|
"Winget" {
|
||||||
$null = $packagesWinget.add($package.winget)
|
Add-PackageId -Target $packagesWinget -PackageId $package.winget
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,29 +2,39 @@ Function Get-WinUtilToggleStatus ($ToggleSwitch) {
|
|||||||
|
|
||||||
$ToggleSwitchReg = $sync.configs.tweaks.$ToggleSwitch.registry
|
$ToggleSwitchReg = $sync.configs.tweaks.$ToggleSwitch.registry
|
||||||
|
|
||||||
|
if ($null -eq $sync.ToggleStatusCache) {
|
||||||
|
$sync.ToggleStatusCache = @{}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($sync.ToggleStatusCache.ContainsKey($ToggleSwitch)) {
|
||||||
|
return [bool]$sync.ToggleStatusCache[$ToggleSwitch]
|
||||||
|
}
|
||||||
|
|
||||||
if (-not (Get-PSDrive -Name HKU -ErrorAction SilentlyContinue)) {
|
if (-not (Get-PSDrive -Name HKU -ErrorAction SilentlyContinue)) {
|
||||||
New-PSDrive -PSProvider Registry -Name HKU -Root HKEY_USERS | Out-Null
|
New-PSDrive -PSProvider Registry -Name HKU -Root HKEY_USERS | Out-Null
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($regentry in $ToggleSwitchReg) {
|
foreach ($regentry in $ToggleSwitchReg) {
|
||||||
|
|
||||||
if (-not (Test-Path $regentry.Path)) {
|
if (Test-Path $regentry.Path) {
|
||||||
New-Item -Path $regentry.Path -Force | Out-Null
|
$regstate = (Get-ItemProperty -Path $regentry.Path).$($regentry.Name)
|
||||||
|
} else {
|
||||||
|
$regstate = $null
|
||||||
}
|
}
|
||||||
|
|
||||||
$regstate = (Get-ItemProperty -Path $regentry.Path).$($regentry.Name)
|
|
||||||
|
|
||||||
if ($null -eq $regstate) {
|
if ($null -eq $regstate) {
|
||||||
switch ($regentry.DefaultState) {
|
switch ([string]$regentry.DefaultState) {
|
||||||
"true" { $regstate = $regentry.Value }
|
"true" { $regstate = $regentry.Value }
|
||||||
"false" { $regstate = $regentry.OriginalValue }
|
"false" { $regstate = $regentry.OriginalValue }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($regstate -ne $regentry.Value) {
|
if ($regstate -ne $regentry.Value) {
|
||||||
|
$sync.ToggleStatusCache[$ToggleSwitch] = $false
|
||||||
return $false
|
return $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$sync.ToggleStatusCache[$ToggleSwitch] = $true
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,8 +19,9 @@ function Get-WinUtilVariables {
|
|||||||
if ($Type -contains $objType) {
|
if ($Type -contains $objType) {
|
||||||
Write-Output $psitem
|
Write-Output $psitem
|
||||||
}
|
}
|
||||||
} catch {
|
}
|
||||||
<#I am here so errors don't get outputted for a couple variables that don't have the .GetType() attribute#>
|
catch {
|
||||||
|
$null = $_
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $output
|
return $output
|
||||||
|
|||||||
@@ -13,11 +13,13 @@ function Initialize-InstallAppEntry {
|
|||||||
$appKey
|
$appKey
|
||||||
)
|
)
|
||||||
|
|
||||||
|
$app = $sync.configs.applicationsHashtable.$appKey
|
||||||
|
|
||||||
# Create the outer Border for the application type
|
# Create the outer Border for the application type
|
||||||
$border = New-Object Windows.Controls.Border
|
$border = New-Object Windows.Controls.Border
|
||||||
$border.Style = $sync.Form.Resources.AppEntryBorderStyle
|
$border.Style = $sync.Form.Resources.AppEntryBorderStyle
|
||||||
$border.Tag = $appKey
|
$border.Tag = $appKey
|
||||||
$border.ToolTip = $Apps.$appKey.description
|
$border.ToolTip = $app.description
|
||||||
$border.Add_MouseLeftButtonUp({
|
$border.Add_MouseLeftButtonUp({
|
||||||
$childCheckbox = ($this.Child | Where-Object {$_.Template.TargetType -eq [System.Windows.Controls.Checkbox]})[0]
|
$childCheckbox = ($this.Child | Where-Object {$_.Template.TargetType -eq [System.Windows.Controls.Checkbox]})[0]
|
||||||
$childCheckBox.isChecked = -not $childCheckbox.IsChecked
|
$childCheckBox.isChecked = -not $childCheckbox.IsChecked
|
||||||
@@ -61,10 +63,10 @@ function Initialize-InstallAppEntry {
|
|||||||
# Create the TextBlock for the application name
|
# Create the TextBlock for the application name
|
||||||
$appName = New-Object Windows.Controls.TextBlock
|
$appName = New-Object Windows.Controls.TextBlock
|
||||||
$appName.Style = $sync.Form.Resources.AppEntryNameStyle
|
$appName.Style = $sync.Form.Resources.AppEntryNameStyle
|
||||||
$appName.Text = $Apps.$appKey.content
|
$appName.Text = $app.content
|
||||||
|
|
||||||
# Add FOSS label after the name if FOSS
|
# Add FOSS label after the name if FOSS
|
||||||
if ($Apps.$appKey.foss -eq $true) {
|
if ($app.foss -eq $true) {
|
||||||
$fossRun = [System.Windows.Documents.Run]::new(" $([char]0x25CF)")
|
$fossRun = [System.Windows.Documents.Run]::new(" $([char]0x25CF)")
|
||||||
$fossRun.Foreground = [Windows.Media.SolidColorBrush]::new([Windows.Media.Color]::FromRgb(110, 255, 114))
|
$fossRun.Foreground = [Windows.Media.SolidColorBrush]::new([Windows.Media.Color]::FromRgb(110, 255, 114))
|
||||||
$fossRun.FontSize = 11.5
|
$fossRun.FontSize = 11.5
|
||||||
@@ -74,10 +76,13 @@ function Initialize-InstallAppEntry {
|
|||||||
$checkBox.Content = $appName
|
$checkBox.Content = $appName
|
||||||
|
|
||||||
# Add accessibility properties to make the elements screen reader friendly
|
# Add accessibility properties to make the elements screen reader friendly
|
||||||
$checkBox.SetValue([Windows.Automation.AutomationProperties]::NameProperty, $Apps.$appKey.content)
|
$checkBox.SetValue([Windows.Automation.AutomationProperties]::NameProperty, $app.content)
|
||||||
$border.SetValue([Windows.Automation.AutomationProperties]::NameProperty, $Apps.$appKey.content)
|
$border.SetValue([Windows.Automation.AutomationProperties]::NameProperty, $app.content)
|
||||||
|
|
||||||
$border.Child = $checkBox
|
$border.Child = $checkBox
|
||||||
|
if ($sync.selectedApps -contains $appKey) {
|
||||||
|
$checkBox.IsChecked = $true
|
||||||
|
}
|
||||||
# Add the border to the corresponding Category
|
# Add the border to the corresponding Category
|
||||||
$TargetElement.Children.Add($border) | Out-Null
|
$TargetElement.Children.Add($border) | Out-Null
|
||||||
return $checkbox
|
return $checkbox
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ function Initialize-InstallCategoryAppList {
|
|||||||
$Apps
|
$Apps
|
||||||
)
|
)
|
||||||
|
|
||||||
# Pre-group apps by category
|
# Pre-group apps by category before creating WPF controls.
|
||||||
$appsByCategory = @{}
|
$appsByCategory = @{}
|
||||||
foreach ($appKey in $Apps.Keys) {
|
foreach ($appKey in $Apps.Keys) {
|
||||||
$category = $Apps.$appKey.Category
|
$category = $Apps.$appKey.Category
|
||||||
@@ -25,6 +25,8 @@ function Initialize-InstallCategoryAppList {
|
|||||||
}
|
}
|
||||||
$appsByCategory[$category] += $appKey
|
$appsByCategory[$category] += $appKey
|
||||||
}
|
}
|
||||||
|
$sync.InstallAppRenderQueue = [System.Collections.Queue]::new()
|
||||||
|
|
||||||
foreach ($category in $($appsByCategory.Keys | Sort-Object)) {
|
foreach ($category in $($appsByCategory.Keys | Sort-Object)) {
|
||||||
# Create a container for category label + apps
|
# Create a container for category label + apps
|
||||||
$categoryContainer = New-Object Windows.Controls.StackPanel
|
$categoryContainer = New-Object Windows.Controls.StackPanel
|
||||||
@@ -52,10 +54,10 @@ function Initialize-InstallCategoryAppList {
|
|||||||
|
|
||||||
# Add click handler to toggle category visibility
|
# Add click handler to toggle category visibility
|
||||||
$toggleButton.Add_MouseLeftButtonUp({
|
$toggleButton.Add_MouseLeftButtonUp({
|
||||||
param($sender, $e)
|
param($categoryToggle)
|
||||||
|
|
||||||
# Find the parent StackPanel (categoryContainer)
|
# Find the parent StackPanel (categoryContainer)
|
||||||
$categoryContainer = $sender.Parent
|
$categoryContainer = $categoryToggle.Parent
|
||||||
if ($categoryContainer -and $categoryContainer.Children.Count -ge 2) {
|
if ($categoryContainer -and $categoryContainer.Children.Count -ge 2) {
|
||||||
# The WrapPanel is the second child
|
# The WrapPanel is the second child
|
||||||
$wrapPanel = $categoryContainer.Children[1]
|
$wrapPanel = $categoryContainer.Children[1]
|
||||||
@@ -64,11 +66,11 @@ function Initialize-InstallCategoryAppList {
|
|||||||
if ($wrapPanel.Visibility -eq [Windows.Visibility]::Visible) {
|
if ($wrapPanel.Visibility -eq [Windows.Visibility]::Visible) {
|
||||||
$wrapPanel.Visibility = [Windows.Visibility]::Collapsed
|
$wrapPanel.Visibility = [Windows.Visibility]::Collapsed
|
||||||
# Change - to +
|
# Change - to +
|
||||||
$sender.Content = $sender.Content -replace "^- ", "+ "
|
$categoryToggle.Content = $categoryToggle.Content -replace "^- ", "+ "
|
||||||
} else {
|
} else {
|
||||||
$wrapPanel.Visibility = [Windows.Visibility]::Visible
|
$wrapPanel.Visibility = [Windows.Visibility]::Visible
|
||||||
# Change + to -
|
# Change + to -
|
||||||
$sender.Content = $sender.Content -replace "^\+ ", "- "
|
$categoryToggle.Content = $categoryToggle.Content -replace "^\+ ", "- "
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -89,9 +91,12 @@ function Initialize-InstallCategoryAppList {
|
|||||||
# Add the entire category container to the target element
|
# Add the entire category container to the target element
|
||||||
$null = $TargetElement.Items.Add($categoryContainer)
|
$null = $TargetElement.Items.Add($categoryContainer)
|
||||||
|
|
||||||
# Add apps to the wrap panel
|
$sync.InstallAppRenderQueue.Enqueue([pscustomobject]@{
|
||||||
$appsByCategory[$category] | Sort-Object | ForEach-Object {
|
Category = $category
|
||||||
$sync.$_ = $(Initialize-InstallAppEntry -TargetElement $wrapPanel -AppKey $_)
|
TargetElement = $wrapPanel
|
||||||
}
|
AppKeys = @($appsByCategory[$category] | Sort-Object)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Start-WinUtilInstallAppRendering
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
function Initialize-WinUtilRunspacePool {
|
||||||
|
if ($sync.runspace -and $sync.runspace.RunspacePoolStateInfo.State -eq [System.Management.Automation.Runspaces.RunspacePoolState]::Opened) {
|
||||||
|
return $sync.runspace
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($sync.runspace) {
|
||||||
|
Close-WinUtilRunspacePool
|
||||||
|
}
|
||||||
|
|
||||||
|
# Set the maximum number of threads for the RunspacePool to the number of threads on the machine.
|
||||||
|
$maxthreads = [Math]::Max([int]$env:NUMBER_OF_PROCESSORS, 1)
|
||||||
|
|
||||||
|
# Create a new session state for parsing variables into our runspace.
|
||||||
|
$hashVars = New-Object System.Management.Automation.Runspaces.SessionStateVariableEntry -ArgumentList 'sync', $sync, $null
|
||||||
|
$offlineVar = New-Object System.Management.Automation.Runspaces.SessionStateVariableEntry -ArgumentList 'PARAM_OFFLINE', $PARAM_OFFLINE, $null
|
||||||
|
$initialSessionState = [System.Management.Automation.Runspaces.InitialSessionState]::CreateDefault()
|
||||||
|
|
||||||
|
$initialSessionState.Variables.Add($hashVars)
|
||||||
|
$initialSessionState.Variables.Add($offlineVar)
|
||||||
|
|
||||||
|
# Get every WinUtil/WPF function and add it to the session state.
|
||||||
|
$functions = Get-ChildItem function:\ | Where-Object { $_.Name -imatch 'winutil|WPF' }
|
||||||
|
foreach ($function in $functions) {
|
||||||
|
$functionDefinition = Get-Content function:\$($function.Name)
|
||||||
|
$functionEntry = New-Object System.Management.Automation.Runspaces.SessionStateFunctionEntry -ArgumentList $function.Name, $functionDefinition
|
||||||
|
$initialSessionState.Commands.Add($functionEntry)
|
||||||
|
}
|
||||||
|
|
||||||
|
$sync.runspace = [runspacefactory]::CreateRunspacePool(
|
||||||
|
1, # Minimum thread count
|
||||||
|
$maxthreads, # Maximum thread count
|
||||||
|
$initialSessionState, # Initial session state
|
||||||
|
$Host # Machine to create runspaces on
|
||||||
|
)
|
||||||
|
|
||||||
|
$sync.runspace.Open()
|
||||||
|
return $sync.runspace
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
function Initialize-WinUtilTabContent {
|
||||||
|
param(
|
||||||
|
[Parameter(Mandatory = $true)]
|
||||||
|
[string]$TabName
|
||||||
|
)
|
||||||
|
|
||||||
|
if ($null -eq $sync.InitializedTabs) {
|
||||||
|
$sync.InitializedTabs = @{}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($sync.InitializedTabs[$TabName]) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ($TabName) {
|
||||||
|
"Install" {
|
||||||
|
Invoke-WPFUIElements -configVariable $sync.configs.appnavigation -targetGridName "appscategory" -columncount 1
|
||||||
|
Initialize-WPFUI -targetGridName "appscategory"
|
||||||
|
|
||||||
|
Initialize-WPFUI -targetGridName "appspanel"
|
||||||
|
}
|
||||||
|
"Tweaks" {
|
||||||
|
Invoke-WPFUIElements -configVariable $sync.configs.tweaks -targetGridName "tweakspanel" -columncount 2
|
||||||
|
}
|
||||||
|
"Config" {
|
||||||
|
Invoke-WPFUIElements -configVariable $sync.configs.feature -targetGridName "featurespanel" -columncount 2
|
||||||
|
}
|
||||||
|
"AppX" {
|
||||||
|
Invoke-WPFUIElements -configVariable $sync.configs.appx -targetGridName "appxpanel" -columncount 2
|
||||||
|
}
|
||||||
|
"Win11 Creator" {
|
||||||
|
if ($sync.Form -and $sync.Form.Dispatcher) {
|
||||||
|
$sync.Form.Dispatcher.BeginInvoke([System.Windows.Threading.DispatcherPriority]::Background, [action]{ Invoke-WinUtilISOCheckExistingWork }) | Out-Null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$sync.InitializedTabs[$TabName] = $true
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
function Initialize-WinUtilTaskbarOverlayAssets {
|
||||||
|
param(
|
||||||
|
[bool]$IncludeLogo = $true,
|
||||||
|
[bool]$IncludeStatusAssets = $true
|
||||||
|
)
|
||||||
|
|
||||||
|
if ($IncludeLogo -and -not $sync["logorender"]) {
|
||||||
|
$sync["logorender"] = (Invoke-WinUtilAssets -Type "Logo" -Size 90 -Render)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($IncludeStatusAssets -and -not $sync["checkmarkrender"]) {
|
||||||
|
$sync["checkmarkrender"] = (Invoke-WinUtilAssets -Type "checkmark" -Size 512 -Render)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($IncludeStatusAssets -and -not $sync["warningrender"]) {
|
||||||
|
$sync["warningrender"] = (Invoke-WinUtilAssets -Type "warning" -Size 512 -Render)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,15 +1,7 @@
|
|||||||
function Install-WinUtilChoco {
|
function Install-WinUtilChoco {
|
||||||
|
if (-not (Get-Command -Name choco)) {
|
||||||
<#
|
Write-Host "Chocolatey is not installed. Installing now..."
|
||||||
|
$installScript = Invoke-WebRequest -Uri https://community.chocolatey.org/install.ps1 -UseBasicParsing
|
||||||
.SYNOPSIS
|
Invoke-Command -ScriptBlock ([scriptblock]::Create($installScript.Content))
|
||||||
Installs Chocolatey if it is not already installed
|
|
||||||
|
|
||||||
#>
|
|
||||||
if ((Test-WinUtilPackageManager -choco) -eq "installed") {
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Host "Chocolatey is not installed. Installing now..."
|
|
||||||
Invoke-WebRequest -Uri https://community.chocolatey.org/install.ps1 -UseBasicParsing | Invoke-Expression
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,8 +9,12 @@ function Install-WinUtilProgramChoco {
|
|||||||
)
|
)
|
||||||
|
|
||||||
if ($Action -eq 'Install') {
|
if ($Action -eq 'Install') {
|
||||||
Start-Process -FilePath choco -ArgumentList "install $Programs -y" -NoNewWindow -Wait
|
$arguments = "install $Programs -y"
|
||||||
} else {
|
} else {
|
||||||
Start-Process -FilePath choco -ArgumentList "uninstall $Programs -y" -NoNewWindow -Wait
|
$arguments = "uninstall $Programs -y"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Write-WinUtilLog -Component "Package" -Message "$Action choco package(s): $($Programs -join ', ')"
|
||||||
|
$process = Start-Process -FilePath choco -ArgumentList $arguments -NoNewWindow -Wait -PassThru
|
||||||
|
Write-WinUtilLog -Component "Package" -Message "$Action choco package(s) completed: $($Programs -join ', ') (exit code: $($process.ExitCode))"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,9 +20,13 @@ Function Install-WinUtilProgramWinget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($Action -eq 'Install') {
|
if ($Action -eq 'Install') {
|
||||||
Start-Process -FilePath winget -ArgumentList @("install", "--id", $program, "--accept-package-agreements", "--accept-source-agreements", "--source", $source, "--silent") -NoNewWindow -Wait
|
$arguments = @("install", "--id", $program, "--accept-package-agreements", "--accept-source-agreements", "--source", $source, "--silent")
|
||||||
} else {
|
} else {
|
||||||
Start-Process -FilePath winget -ArgumentList @("uninstall", "--id", $program, "--source", $source, "--silent") -NoNewWindow -Wait
|
$arguments = @("uninstall", "--id", $program, "--source", $source, "--silent")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Write-WinUtilLog -Component "Package" -Message "$Action winget package: $program (source: $source)"
|
||||||
|
$process = Start-Process -FilePath winget -ArgumentList $arguments -NoNewWindow -Wait -PassThru
|
||||||
|
Write-WinUtilLog -Component "Package" -Message "$Action winget package completed: $program (exit code: $($process.ExitCode))"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,17 @@ function Invoke-WinUtilAssets {
|
|||||||
[switch]$render
|
[switch]$render
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if ($render -and $null -ne $sync) {
|
||||||
|
if ($null -eq $sync.RenderedAssetCache) {
|
||||||
|
$sync.RenderedAssetCache = @{}
|
||||||
|
}
|
||||||
|
|
||||||
|
$cacheKey = "$(([string]$type).ToLowerInvariant())|$Size"
|
||||||
|
if ($sync.RenderedAssetCache.ContainsKey($cacheKey)) {
|
||||||
|
return $sync.RenderedAssetCache[$cacheKey]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# Create the Viewbox and set its size
|
# Create the Viewbox and set its size
|
||||||
$LogoViewbox = New-Object Windows.Controls.Viewbox
|
$LogoViewbox = New-Object Windows.Controls.Viewbox
|
||||||
$LogoViewbox.Width = $Size
|
$LogoViewbox.Width = $Size
|
||||||
@@ -191,6 +202,13 @@ C 21.36,47.14 28.67,50.71 30.01,52.63
|
|||||||
$bitmapImage.StreamSource = $imageStream
|
$bitmapImage.StreamSource = $imageStream
|
||||||
$bitmapImage.CacheOption = [Windows.Media.Imaging.BitmapCacheOption]::OnLoad
|
$bitmapImage.CacheOption = [Windows.Media.Imaging.BitmapCacheOption]::OnLoad
|
||||||
$bitmapImage.EndInit()
|
$bitmapImage.EndInit()
|
||||||
|
if ($bitmapImage.CanFreeze) {
|
||||||
|
$bitmapImage.Freeze()
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($null -ne $sync -and $sync.ContainsKey("RenderedAssetCache")) {
|
||||||
|
$sync.RenderedAssetCache[$cacheKey] = $bitmapImage
|
||||||
|
}
|
||||||
|
|
||||||
return $bitmapImage
|
return $bitmapImage
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -55,8 +55,6 @@ Function Invoke-WinUtilCurrentSystem {
|
|||||||
$entry = $sync.configs.tweaks.$Config
|
$entry = $sync.configs.tweaks.$Config
|
||||||
$registryKeys = $entry.registry
|
$registryKeys = $entry.registry
|
||||||
$serviceKeys = $entry.service
|
$serviceKeys = $entry.service
|
||||||
$appxKeys = $entry.appx
|
|
||||||
$invokeScript = $entry.InvokeScript
|
|
||||||
$entryType = $entry.Type
|
$entryType = $entry.Type
|
||||||
|
|
||||||
if ($registryKeys -or $serviceKeys) {
|
if ($registryKeys -or $serviceKeys) {
|
||||||
|
|||||||
@@ -1,16 +1,22 @@
|
|||||||
function Invoke-WinUtilFeatureInstall ($CheckBox) {
|
function Invoke-WinUtilFeatureInstall ($CheckBox) {
|
||||||
|
Write-WinUtilLog -Component "Feature" -Message "Applying feature action: $CheckBox"
|
||||||
|
|
||||||
if ($sync.configs.feature.$CheckBox.feature) {
|
if ($sync.configs.feature.$CheckBox.feature) {
|
||||||
foreach ($feature in $sync.configs.feature.$CheckBox.feature) {
|
foreach ($feature in $sync.configs.feature.$CheckBox.feature) {
|
||||||
Write-Host "Installing $feature"
|
Write-Host "Installing $feature"
|
||||||
|
Write-WinUtilLog -Component "Feature" -Message "Enabling Windows optional feature: $feature"
|
||||||
Enable-WindowsOptionalFeature -Online -FeatureName $feature -All -NoRestart -ErrorAction Stop
|
Enable-WindowsOptionalFeature -Online -FeatureName $feature -All -NoRestart -ErrorAction Stop
|
||||||
|
Write-WinUtilLog -Component "Feature" -Message "Enabled Windows optional feature: $feature"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($sync.configs.feature.$CheckBox.InvokeScript) {
|
if ($sync.configs.feature.$CheckBox.InvokeScript) {
|
||||||
foreach ($script in $sync.configs.feature.$CheckBox.InvokeScript) {
|
foreach ($script in $sync.configs.feature.$CheckBox.InvokeScript) {
|
||||||
Write-Host "Running Script for $CheckBox"
|
Write-Host "Running Script for $CheckBox"
|
||||||
|
Write-WinUtilLog -Component "Feature" -Message "Running feature script for: $CheckBox"
|
||||||
Invoke-Command -ScriptBlock ([scriptblock]::Create($script)) -ErrorAction Stop
|
Invoke-Command -ScriptBlock ([scriptblock]::Create($script)) -ErrorAction Stop
|
||||||
|
Write-WinUtilLog -Component "Feature" -Message "Completed feature script for: $CheckBox"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Write-WinUtilLog -Component "Feature" -Message "Feature action completed: $CheckBox"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,6 +74,9 @@ function Invoke-WinUtilFontScaling {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Store the scale factor so it can be reapplied after theme changes
|
||||||
|
$sync.FontScaleFactor = $ScaleFactor
|
||||||
|
|
||||||
# Update the font scaling percentage displayed on the UI
|
# Update the font scaling percentage displayed on the UI
|
||||||
if ($sync.FontScalingValue) {
|
if ($sync.FontScalingValue) {
|
||||||
$percentage = [math]::Round($ScaleFactor * 100)
|
$percentage = [math]::Round($ScaleFactor * 100)
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
function Write-Win11ISOLog {
|
function Write-Win11ISOLog {
|
||||||
param([string]$Message)
|
param([string]$Message)
|
||||||
$ts = (Get-Date).ToString("HH:mm:ss")
|
$ts = (Get-Date).ToString("HH:mm:ss")
|
||||||
|
$logLine = "[$ts] $Message"
|
||||||
$sync["WPFWin11ISOStatusLog"].Dispatcher.Invoke([action]{
|
$sync["WPFWin11ISOStatusLog"].Dispatcher.Invoke([action]{
|
||||||
$current = $sync["WPFWin11ISOStatusLog"].Text
|
$current = $sync["WPFWin11ISOStatusLog"].Text
|
||||||
if ($current -eq "Ready. Please select a Windows 11 ISO to begin.") {
|
if ($current -eq "Ready. Please select a Windows 11 ISO to begin.") {
|
||||||
$sync["WPFWin11ISOStatusLog"].Text = "[$ts] $Message"
|
$sync["WPFWin11ISOStatusLog"].Text = $logLine
|
||||||
} else {
|
} else {
|
||||||
$sync["WPFWin11ISOStatusLog"].Text += "`n[$ts] $Message"
|
$sync["WPFWin11ISOStatusLog"].Text += "`n$logLine"
|
||||||
}
|
}
|
||||||
$sync["WPFWin11ISOStatusLog"].CaretIndex = $sync["WPFWin11ISOStatusLog"].Text.Length
|
$sync["WPFWin11ISOStatusLog"].CaretIndex = $sync["WPFWin11ISOStatusLog"].Text.Length
|
||||||
$sync["WPFWin11ISOStatusLog"].ScrollToEnd()
|
$sync["WPFWin11ISOStatusLog"].ScrollToEnd()
|
||||||
@@ -151,14 +152,9 @@ function Invoke-WinUtilISOModify {
|
|||||||
$sync["WPFWin11ISOModifyButton"].IsEnabled = $false
|
$sync["WPFWin11ISOModifyButton"].IsEnabled = $false
|
||||||
$sync["Win11ISOModifying"] = $true
|
$sync["Win11ISOModifying"] = $true
|
||||||
|
|
||||||
$existingWorkDir = Get-Item -Path (Join-Path $env:TEMP "WinUtil_Win11ISO*") |
|
$workDir = Join-Path $env:TEMP "WinUtil_Win11ISO_$(Get-Date -Format 'yyyyMMdd_HHmmss')"
|
||||||
Where-Object { $_.PSIsContainer } | Sort-Object LastWriteTime -Descending | Select-Object -First 1
|
if (Test-Path $workDir) {
|
||||||
|
$workDir = Join-Path $env:TEMP "WinUtil_Win11ISO_$(Get-Date -Format 'yyyyMMdd_HHmmss')_$(([guid]::NewGuid()).ToString('N').Substring(0, 8))"
|
||||||
$workDir = if ($existingWorkDir) {
|
|
||||||
Write-Win11ISOLog "Reusing existing temp directory: $($existingWorkDir.FullName)"
|
|
||||||
$existingWorkDir.FullName
|
|
||||||
} else {
|
|
||||||
Join-Path $env:TEMP "WinUtil_Win11ISO_$(Get-Date -Format 'yyyyMMdd_HHmmss')"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$autounattendContent = if ($WinUtilAutounattendXml) {
|
$autounattendContent = if ($WinUtilAutounattendXml) {
|
||||||
@@ -293,9 +289,11 @@ function Invoke-WinUtilISOModify {
|
|||||||
[scriptblock]$Logger
|
[scriptblock]$Logger
|
||||||
)
|
)
|
||||||
|
|
||||||
|
$metadataLogger = $Logger
|
||||||
|
|
||||||
function LogMeta([string]$Message) {
|
function LogMeta([string]$Message) {
|
||||||
if ($Logger) {
|
if ($metadataLogger) {
|
||||||
$null = $Logger.Invoke($Message)
|
$null = $metadataLogger.Invoke($Message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -368,8 +366,11 @@ function Invoke-WinUtilISOModify {
|
|||||||
Log "ISO contents copied."
|
Log "ISO contents copied."
|
||||||
SetProgress "Mounting install.wim..." 25
|
SetProgress "Mounting install.wim..." 25
|
||||||
|
|
||||||
$localWim = Join-Path $isoContents "sources\install.wim"
|
$sourceImageFileName = Split-Path $wimPath -Leaf
|
||||||
if (-not (Test-Path $localWim)) { $localWim = Join-Path $isoContents "sources\install.esd" }
|
$localWim = Join-Path $isoContents "sources\$sourceImageFileName"
|
||||||
|
if (-not (Test-Path $localWim)) {
|
||||||
|
throw "Copied ISO image file not found: sources\$sourceImageFileName"
|
||||||
|
}
|
||||||
Set-ItemProperty -Path $localWim -Name IsReadOnly -Value $false
|
Set-ItemProperty -Path $localWim -Name IsReadOnly -Value $false
|
||||||
|
|
||||||
Log "Mounting install.wim (Index ${selectedWimIndex}: $selectedEditionName) at $mountDir..."
|
Log "Mounting install.wim (Index ${selectedWimIndex}: $selectedEditionName) at $mountDir..."
|
||||||
@@ -590,10 +591,10 @@ function Invoke-WinUtilISOCleanAndReset {
|
|||||||
}
|
}
|
||||||
|
|
||||||
foreach ($d in $allDirs) {
|
foreach ($d in $allDirs) {
|
||||||
try { Remove-Item -Path $d.FullName -Force } catch {}
|
try { Remove-Item -Path $d.FullName -Force } catch { Log "WARNING: could not delete $($d.FullName): $_" }
|
||||||
}
|
}
|
||||||
|
|
||||||
try { Remove-Item -Path $workDir -Recurse -Force } catch {}
|
try { Remove-Item -Path $workDir -Recurse -Force } catch { Log "WARNING: could not delete temp directory ${workDir}: $_" }
|
||||||
|
|
||||||
if (Test-Path $workDir) {
|
if (Test-Path $workDir) {
|
||||||
Log "WARNING: some items could not be deleted in $workDir"
|
Log "WARNING: some items could not be deleted in $workDir"
|
||||||
|
|||||||
@@ -70,15 +70,11 @@ function Invoke-WinUtilISOScript {
|
|||||||
[int]$InstallImageIndex = 1,
|
[int]$InstallImageIndex = 1,
|
||||||
[scriptblock]$Log = { param($m) Write-Output $m }
|
[scriptblock]$Log = { param($m) Write-Output $m }
|
||||||
)
|
)
|
||||||
|
|
||||||
$adminSID = New-Object System.Security.Principal.SecurityIdentifier('S-1-5-32-544')
|
|
||||||
$adminGroup = $adminSID.Translate([System.Security.Principal.NTAccount])
|
|
||||||
|
|
||||||
function Set-ISOScriptReg {
|
function Set-ISOScriptReg {
|
||||||
param ([string]$path, [string]$name, [string]$type, [string]$value)
|
param ([string]$Path, [string]$Name, [string]$Type, [string]$Value)
|
||||||
try {
|
try {
|
||||||
& reg add $path /v $name /t $type /d $value /f
|
& reg add $Path /v $Name /t $Type /d $Value /f
|
||||||
& $Log "Set registry value: $path\$name"
|
& $Log "Set registry value: $Path\$Name"
|
||||||
} catch {
|
} catch {
|
||||||
& $Log "Error setting registry value: $_"
|
& $Log "Error setting registry value: $_"
|
||||||
}
|
}
|
||||||
@@ -114,7 +110,7 @@ function Invoke-WinUtilISOScript {
|
|||||||
& $Logger "boot.wim driver injection complete."
|
& $Logger "boot.wim driver injection complete."
|
||||||
} catch {
|
} catch {
|
||||||
& $Logger "Warning: boot.wim driver injection failed: $_"
|
& $Logger "Warning: boot.wim driver injection failed: $_"
|
||||||
try { Dismount-WindowsImage -Path $mountDir -Discard } catch {}
|
try { Dismount-WindowsImage -Path $mountDir -Discard } catch { & $Logger "Warning: could not discard boot.wim mount: $_" }
|
||||||
} finally {
|
} finally {
|
||||||
Remove-Item -Path $mountDir -Recurse -Force
|
Remove-Item -Path $mountDir -Recurse -Force
|
||||||
}
|
}
|
||||||
@@ -330,44 +326,44 @@ Retail
|
|||||||
reg load HKLM\zSYSTEM "$ScratchDir\Windows\System32\config\SYSTEM"
|
reg load HKLM\zSYSTEM "$ScratchDir\Windows\System32\config\SYSTEM"
|
||||||
|
|
||||||
& $Log "Bypassing system requirements..."
|
& $Log "Bypassing system requirements..."
|
||||||
Set-ISOScriptReg 'HKLM\zDEFAULT\Control Panel\UnsupportedHardwareNotificationCache' 'SV1' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zDEFAULT\Control Panel\UnsupportedHardwareNotificationCache' -Name 'SV1' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zDEFAULT\Control Panel\UnsupportedHardwareNotificationCache' 'SV2' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zDEFAULT\Control Panel\UnsupportedHardwareNotificationCache' -Name 'SV2' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Control Panel\UnsupportedHardwareNotificationCache' 'SV1' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Control Panel\UnsupportedHardwareNotificationCache' -Name 'SV1' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Control Panel\UnsupportedHardwareNotificationCache' 'SV2' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Control Panel\UnsupportedHardwareNotificationCache' -Name 'SV2' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\Setup\LabConfig' 'BypassCPUCheck' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\Setup\LabConfig' -Name 'BypassCPUCheck' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\Setup\LabConfig' 'BypassRAMCheck' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\Setup\LabConfig' -Name 'BypassRAMCheck' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\Setup\LabConfig' 'BypassSecureBootCheck' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\Setup\LabConfig' -Name 'BypassSecureBootCheck' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\Setup\LabConfig' 'BypassStorageCheck' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\Setup\LabConfig' -Name 'BypassStorageCheck' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\Setup\LabConfig' 'BypassTPMCheck' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\Setup\LabConfig' -Name 'BypassTPMCheck' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\Setup\MoSetup' 'AllowUpgradesWithUnsupportedTPMOrCPU' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\Setup\MoSetup' -Name 'AllowUpgradesWithUnsupportedTPMOrCPU' -Type 'REG_DWORD' -Value '1'
|
||||||
|
|
||||||
& $Log "Disabling sponsored apps..."
|
& $Log "Disabling sponsored apps..."
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'OemPreInstalledAppsEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'OemPreInstalledAppsEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'PreInstalledAppsEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'PreInstalledAppsEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SilentInstalledAppsEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SilentInstalledAppsEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\CloudContent' 'DisableWindowsConsumerFeatures' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\CloudContent' -Name 'DisableWindowsConsumerFeatures' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'ContentDeliveryAllowed' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'ContentDeliveryAllowed' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\PolicyManager\current\device\Start' 'ConfigureStartPins' 'REG_SZ' '{"pinnedList": [{}]}'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Microsoft\PolicyManager\current\device\Start' -Name 'ConfigureStartPins' -Type 'REG_SZ' -Value '{"pinnedList": [{}]}'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'FeatureManagementEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'FeatureManagementEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'PreInstalledAppsEverEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'PreInstalledAppsEverEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SoftLandingEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SoftLandingEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SubscribedContentEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SubscribedContentEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SubscribedContent-310093Enabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SubscribedContent-310093Enabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SubscribedContent-338388Enabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SubscribedContent-338388Enabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SubscribedContent-338389Enabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SubscribedContent-338389Enabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SubscribedContent-338393Enabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SubscribedContent-338393Enabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SubscribedContent-353694Enabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SubscribedContent-353694Enabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SubscribedContent-353696Enabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SubscribedContent-353696Enabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' 'SystemPaneSuggestionsEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager' -Name 'SystemPaneSuggestionsEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\PushToInstall' 'DisablePushToInstall' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\PushToInstall' -Name 'DisablePushToInstall' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\MRT' 'DontOfferThroughWUAU' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\MRT' -Name 'DontOfferThroughWUAU' -Type 'REG_DWORD' -Value '1'
|
||||||
Remove-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\Subscriptions'
|
Remove-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\Subscriptions'
|
||||||
Remove-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SuggestedApps'
|
Remove-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\SuggestedApps'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\CloudContent' 'DisableConsumerAccountStateContent' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\CloudContent' -Name 'DisableConsumerAccountStateContent' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\CloudContent' 'DisableCloudOptimizedContent' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\CloudContent' -Name 'DisableCloudOptimizedContent' -Type 'REG_DWORD' -Value '1'
|
||||||
|
|
||||||
& $Log "Enabling local accounts on OOBE..."
|
& $Log "Enabling local accounts on OOBE..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\OOBE' 'BypassNRO' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\OOBE' -Name 'BypassNRO' -Type 'REG_DWORD' -Value '1'
|
||||||
|
|
||||||
if ($AutoUnattendXml) {
|
if ($AutoUnattendXml) {
|
||||||
$preparedAutoUnattendXml = $AutoUnattendXml
|
$preparedAutoUnattendXml = $AutoUnattendXml
|
||||||
@@ -423,62 +419,62 @@ Retail
|
|||||||
}
|
}
|
||||||
|
|
||||||
& $Log "Disabling reserved storage..."
|
& $Log "Disabling reserved storage..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager' 'ShippedWithReserves' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager' -Name 'ShippedWithReserves' -Type 'REG_DWORD' -Value '0'
|
||||||
|
|
||||||
& $Log "Disabling BitLocker device encryption..."
|
& $Log "Disabling BitLocker device encryption..."
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\ControlSet001\Control\BitLocker' 'PreventDeviceEncryption' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\ControlSet001\Control\BitLocker' -Name 'PreventDeviceEncryption' -Type 'REG_DWORD' -Value '1'
|
||||||
|
|
||||||
& $Log "Disabling Chat icon..."
|
& $Log "Disabling Chat icon..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\Windows Chat' 'ChatIcon' 'REG_DWORD' '3'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\Windows Chat' -Name 'ChatIcon' -Type 'REG_DWORD' -Value '3'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced' 'TaskbarMn' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced' -Name 'TaskbarMn' -Type 'REG_DWORD' -Value '0'
|
||||||
|
|
||||||
& $Log "Disabling OneDrive folder backup..."
|
& $Log "Disabling OneDrive folder backup..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\OneDrive' 'DisableFileSyncNGSC' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\OneDrive' -Name 'DisableFileSyncNGSC' -Type 'REG_DWORD' -Value '1'
|
||||||
|
|
||||||
& $Log "Disabling telemetry..."
|
& $Log "Disabling telemetry..."
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo' 'Enabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo' -Name 'Enabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\Privacy' 'TailoredExperiencesWithDiagnosticDataEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\Privacy' -Name 'TailoredExperiencesWithDiagnosticDataEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Speech_OneCore\Settings\OnlineSpeechPrivacy' 'HasAccepted' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Speech_OneCore\Settings\OnlineSpeechPrivacy' -Name 'HasAccepted' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Input\TIPC' 'Enabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Input\TIPC' -Name 'Enabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\InputPersonalization' 'RestrictImplicitInkCollection' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\InputPersonalization' -Name 'RestrictImplicitInkCollection' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\InputPersonalization' 'RestrictImplicitTextCollection' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\InputPersonalization' -Name 'RestrictImplicitTextCollection' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\InputPersonalization\TrainedDataStore' 'HarvestContacts' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\InputPersonalization\TrainedDataStore' -Name 'HarvestContacts' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Personalization\Settings' 'AcceptedPrivacyPolicy' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zNTUSER\Software\Microsoft\Personalization\Settings' -Name 'AcceptedPrivacyPolicy' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\DataCollection' 'AllowTelemetry' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\DataCollection' -Name 'AllowTelemetry' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\ControlSet001\Services\dmwappushservice' 'Start' 'REG_DWORD' '4'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\ControlSet001\Services\dmwappushservice' -Name 'Start' -Type 'REG_DWORD' -Value '4'
|
||||||
|
|
||||||
& $Log "Preventing installation of DevHome and Outlook..."
|
& $Log "Preventing installation of DevHome and Outlook..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler_Oobe\OutlookUpdate' 'workCompleted' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler_Oobe\OutlookUpdate' -Name 'workCompleted' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler\OutlookUpdate' 'workCompleted' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler\OutlookUpdate' -Name 'workCompleted' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler\DevHomeUpdate' 'workCompleted' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler\DevHomeUpdate' -Name 'workCompleted' -Type 'REG_DWORD' -Value '1'
|
||||||
Remove-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\OutlookUpdate'
|
Remove-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\OutlookUpdate'
|
||||||
Remove-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\DevHomeUpdate'
|
Remove-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\DevHomeUpdate'
|
||||||
|
|
||||||
& $Log "Disabling Copilot..."
|
& $Log "Disabling Copilot..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsCopilot' 'TurnOffWindowsCopilot' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsCopilot' -Name 'TurnOffWindowsCopilot' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Edge' 'HubsSidebarEnabled' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Edge' -Name 'HubsSidebarEnabled' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\Explorer' 'DisableSearchBoxSuggestions' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\Explorer' -Name 'DisableSearchBoxSuggestions' -Type 'REG_DWORD' -Value '1'
|
||||||
|
|
||||||
& $Log "Disabling Windows Update during OOBE (re-enabled on first logon via FirstLogon.ps1)..."
|
& $Log "Disabling Windows Update during OOBE (re-enabled on first logon via FirstLogon.ps1)..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' 'NoAutoUpdate' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' -Name 'NoAutoUpdate' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' 'AUOptions' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' -Name 'AUOptions' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' 'UseWUServer' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' -Name 'UseWUServer' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate' 'DisableWindowsUpdateAccess' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate' -Name 'DisableWindowsUpdateAccess' -Type 'REG_DWORD' -Value '1'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate' 'WUServer' 'REG_SZ' 'http://localhost:8080'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate' -Name 'WUServer' -Type 'REG_SZ' -Value 'http://localhost:8080'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate' 'WUStatusServer' 'REG_SZ' 'http://localhost:8080'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\WindowsUpdate' -Name 'WUStatusServer' -Type 'REG_SZ' -Value 'http://localhost:8080'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler_Oobe\WindowsUpdate' 'workCompleted' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Orchestrator\UScheduler_Oobe\WindowsUpdate' -Name 'workCompleted' -Type 'REG_DWORD' -Value '1'
|
||||||
Remove-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\WindowsUpdate'
|
Remove-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\WindowsUpdate\Orchestrator\UScheduler_Oobe\WindowsUpdate'
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config' 'DODownloadMode' 'REG_DWORD' '0'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config' -Name 'DODownloadMode' -Type 'REG_DWORD' -Value '0'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\ControlSet001\Services\BITS' 'Start' 'REG_DWORD' '4'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\ControlSet001\Services\BITS' -Name 'Start' -Type 'REG_DWORD' -Value '4'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\ControlSet001\Services\wuauserv' 'Start' 'REG_DWORD' '4'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\ControlSet001\Services\wuauserv' -Name 'Start' -Type 'REG_DWORD' -Value '4'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\ControlSet001\Services\UsoSvc' 'Start' 'REG_DWORD' '4'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\ControlSet001\Services\UsoSvc' -Name 'Start' -Type 'REG_DWORD' -Value '4'
|
||||||
Set-ISOScriptReg 'HKLM\zSYSTEM\ControlSet001\Services\WaaSMedicSvc' 'Start' 'REG_DWORD' '4'
|
Set-ISOScriptReg -Path 'HKLM\zSYSTEM\ControlSet001\Services\WaaSMedicSvc' -Name 'Start' -Type 'REG_DWORD' -Value '4'
|
||||||
|
|
||||||
& $Log "Preventing installation of Teams..."
|
& $Log "Preventing installation of Teams..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Teams' 'DisableInstallation' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Teams' -Name 'DisableInstallation' -Type 'REG_DWORD' -Value '1'
|
||||||
|
|
||||||
& $Log "Preventing installation of new Outlook..."
|
& $Log "Preventing installation of new Outlook..."
|
||||||
Set-ISOScriptReg 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\Windows Mail' 'PreventRun' 'REG_DWORD' '1'
|
Set-ISOScriptReg -Path 'HKLM\zSOFTWARE\Policies\Microsoft\Windows\Windows Mail' -Name 'PreventRun' -Type 'REG_DWORD' -Value '1'
|
||||||
|
|
||||||
& $Log "Unloading offline registry hives..."
|
& $Log "Unloading offline registry hives..."
|
||||||
reg unload HKLM\zCOMPONENTS
|
reg unload HKLM\zCOMPONENTS
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ function Invoke-WinUtilISOWriteUSB {
|
|||||||
Start-Sleep -Seconds 2
|
Start-Sleep -Seconds 2
|
||||||
Update-Disk -Number $diskNum
|
Update-Disk -Number $diskNum
|
||||||
|
|
||||||
try { Remove-PartitionAccessPath -DiskNumber $diskNum -PartitionNumber $winpePart.PartitionNumber -AccessPath "$($winpePart.DriveLetter):" } catch {}
|
try { Remove-PartitionAccessPath -DiskNumber $diskNum -PartitionNumber $winpePart.PartitionNumber -AccessPath "$($winpePart.DriveLetter):" } catch { Log "Warning: could not remove existing partition access path: $_" }
|
||||||
$usbLetter = Get-FreeDriveLetter
|
$usbLetter = Get-FreeDriveLetter
|
||||||
if (-not $usbLetter) { throw "No free drive letters (D-Z) available to assign to the USB data partition." }
|
if (-not $usbLetter) { throw "No free drive letters (D-Z) available to assign to the USB data partition." }
|
||||||
Set-Partition -DiskNumber $diskNum -PartitionNumber $winpePart.PartitionNumber -NewDriveLetter $usbLetter
|
Set-Partition -DiskNumber $diskNum -PartitionNumber $winpePart.PartitionNumber -NewDriveLetter $usbLetter
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ function Invoke-WinUtilInstallPSProfile {
|
|||||||
if (-not (Get-Command pwsh)) {
|
if (-not (Get-Command pwsh)) {
|
||||||
Write-Host "PowerShell 7 not found. Installing..."
|
Write-Host "PowerShell 7 not found. Installing..."
|
||||||
Install-WinUtilWinget
|
Install-WinUtilWinget
|
||||||
winget install Microsoft.PowerShell --source winget --silent
|
winget install Microsoft.PowerShell --source winget --installer-type wix --silent
|
||||||
}
|
}
|
||||||
|
|
||||||
wt new-tab pwsh -NoExit -Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"
|
wt new-tab pwsh -NoExit -Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"
|
||||||
|
|||||||
@@ -22,23 +22,30 @@ function Invoke-WinUtilScript {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
Write-Host "Running Script for $Name"
|
Write-Host "Running Script for $Name"
|
||||||
|
Write-WinUtilLog -Component "Script" -Message "Running script for $Name"
|
||||||
Invoke-Command $scriptblock -ErrorAction Stop
|
Invoke-Command $scriptblock -ErrorAction Stop
|
||||||
|
Write-WinUtilLog -Component "Script" -Message "Completed script for $Name"
|
||||||
} catch [System.Management.Automation.CommandNotFoundException] {
|
} catch [System.Management.Automation.CommandNotFoundException] {
|
||||||
Write-Warning "The specified command was not found."
|
Write-Warning "The specified command was not found."
|
||||||
Write-Warning $PSItem.Exception.message
|
Write-Warning $PSItem.Exception.message
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Script" -Message "Command not found while running script for $Name`: $($PSItem.Exception.Message)"
|
||||||
} catch [System.Management.Automation.RuntimeException] {
|
} catch [System.Management.Automation.RuntimeException] {
|
||||||
Write-Warning "A runtime exception occurred."
|
Write-Warning "A runtime exception occurred."
|
||||||
Write-Warning $PSItem.Exception.message
|
Write-Warning $PSItem.Exception.message
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Script" -Message "Runtime exception while running script for $Name`: $($PSItem.Exception.Message)"
|
||||||
} catch [System.Security.SecurityException] {
|
} catch [System.Security.SecurityException] {
|
||||||
Write-Warning "A security exception occurred."
|
Write-Warning "A security exception occurred."
|
||||||
Write-Warning $PSItem.Exception.message
|
Write-Warning $PSItem.Exception.message
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Script" -Message "Security exception while running script for $Name`: $($PSItem.Exception.Message)"
|
||||||
} catch [System.UnauthorizedAccessException] {
|
} catch [System.UnauthorizedAccessException] {
|
||||||
Write-Warning "Access denied. You do not have permission to perform this operation."
|
Write-Warning "Access denied. You do not have permission to perform this operation."
|
||||||
Write-Warning $PSItem.Exception.message
|
Write-Warning $PSItem.Exception.message
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Script" -Message "Access denied while running script for $Name`: $($PSItem.Exception.Message)"
|
||||||
} catch {
|
} catch {
|
||||||
# Generic catch block to handle any other type of exception
|
# Generic catch block to handle any other type of exception
|
||||||
Write-Warning "Unable to run script for $Name due to unhandled exception."
|
Write-Warning "Unable to run script for $Name due to unhandled exception."
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Script" -Message "Unhandled exception while running script for $Name`: $($psitem.Exception.Message)"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Function Invoke-WinUtilSponsors {
|
Function Invoke-WinUtilSponsors {
|
||||||
$sponsors = ([regex]::Matches(([regex]::Match((irm https://github.com/sponsors/ChrisTitusTech),'(?s)(?<=Current sponsors).*?(?=Past sponsors)')).Value,'(?<=alt="@)[^"]+')).Value | Where-Object {$_ -ne "ChrisTitusTech"}
|
$sponsors = ([regex]::Matches(([regex]::Match((Invoke-RestMethod https://github.com/sponsors/ChrisTitusTech),'(?s)(?<=Current sponsors).*?(?=Past sponsors)')).Value,'(?<=alt="@)[^"]+')).Value | Where-Object {$_ -ne "ChrisTitusTech"}
|
||||||
return $sponsors
|
return $sponsors
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,6 +21,9 @@ function Invoke-WinUtilTweaks {
|
|||||||
$KeepServiceStartup = $true
|
$KeepServiceStartup = $true
|
||||||
)
|
)
|
||||||
|
|
||||||
|
$action = if ($undo) { "Undo" } else { "Apply" }
|
||||||
|
Write-WinUtilLog -Component "Tweaks" -Message "$action tweak: $CheckBox"
|
||||||
|
|
||||||
if ($undo) {
|
if ($undo) {
|
||||||
$Values = @{
|
$Values = @{
|
||||||
Registry = "OriginalValue"
|
Registry = "OriginalValue"
|
||||||
@@ -77,4 +80,5 @@ function Invoke-WinUtilTweaks {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Write-WinUtilLog -Component "Tweaks" -Message "$action tweak completed: $CheckBox"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,40 +91,39 @@ function Invoke-WinutilThemeChange {
|
|||||||
|
|
||||||
# Retrieve all theme properties from the theme configuration
|
# Retrieve all theme properties from the theme configuration
|
||||||
$themeProperties = $sync.configs.themes.$currentTheme.PSObject.Properties
|
$themeProperties = $sync.configs.themes.$currentTheme.PSObject.Properties
|
||||||
foreach ($_ in $themeProperties) {
|
foreach ($themeProperty in $themeProperties) {
|
||||||
# Apply properties that deal with colors
|
# Apply properties that deal with colors
|
||||||
if ($_.Name -like "*color*") {
|
if ($themeProperty.Name -like "*color*") {
|
||||||
Set-ThemeResourceProperty -Name $_.Name -Value $_.Value -Type "ColorBrush"
|
Set-ThemeResourceProperty -Name $themeProperty.Name -Value $themeProperty.Value -Type "ColorBrush"
|
||||||
# For certain color properties, also set complementary values (e.g., BorderColor -> CBorderColor) This is required because e.g DropShadowEffect requires a <Color> and not a <SolidColorBrush> object
|
# For certain color properties, also set complementary values (e.g., BorderColor -> CBorderColor) This is required because e.g DropShadowEffect requires a <Color> and not a <SolidColorBrush> object
|
||||||
if ($_.Name -in @("BorderColor", "ButtonBackgroundMouseoverColor")) {
|
if ($themeProperty.Name -in @("BorderColor", "ButtonBackgroundMouseoverColor")) {
|
||||||
Set-ThemeResourceProperty -Name "C$($_.Name)" -Value $_.Value -Type "Color"
|
Set-ThemeResourceProperty -Name "C$($themeProperty.Name)" -Value $themeProperty.Value -Type "Color"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
# Apply corner radius properties
|
# Apply corner radius properties
|
||||||
elseif ($_.Name -like "*Radius*") {
|
elseif ($themeProperty.Name -like "*Radius*") {
|
||||||
Set-ThemeResourceProperty -Name $_.Name -Value $_.Value -Type "CornerRadius"
|
Set-ThemeResourceProperty -Name $themeProperty.Name -Value $themeProperty.Value -Type "CornerRadius"
|
||||||
}
|
}
|
||||||
# Apply row height properties
|
# Apply row height properties
|
||||||
elseif ($_.Name -like "*RowHeight*") {
|
elseif ($themeProperty.Name -like "*RowHeight*") {
|
||||||
Set-ThemeResourceProperty -Name $_.Name -Value $_.Value -Type "GridLength"
|
Set-ThemeResourceProperty -Name $themeProperty.Name -Value $themeProperty.Value -Type "GridLength"
|
||||||
}
|
}
|
||||||
# Apply thickness or margin properties
|
# Apply thickness or margin properties
|
||||||
elseif (($_.Name -like "*Thickness*") -or ($_.Name -like "*margin")) {
|
elseif (($themeProperty.Name -like "*Thickness*") -or ($themeProperty.Name -like "*margin")) {
|
||||||
Set-ThemeResourceProperty -Name $_.Name -Value $_.Value -Type "Thickness"
|
Set-ThemeResourceProperty -Name $themeProperty.Name -Value $themeProperty.Value -Type "Thickness"
|
||||||
}
|
}
|
||||||
# Apply font family properties
|
# Apply font family properties
|
||||||
elseif ($_.Name -like "*FontFamily*") {
|
elseif ($themeProperty.Name -like "*FontFamily*") {
|
||||||
Set-ThemeResourceProperty -Name $_.Name -Value $_.Value -Type "FontFamily"
|
Set-ThemeResourceProperty -Name $themeProperty.Name -Value $themeProperty.Value -Type "FontFamily"
|
||||||
}
|
}
|
||||||
# Apply any other properties as doubles (numerical values)
|
# Apply any other properties as doubles (numerical values)
|
||||||
else {
|
else {
|
||||||
Set-ThemeResourceProperty -Name $_.Name -Value $_.Value -Type "Double"
|
Set-ThemeResourceProperty -Name $themeProperty.Name -Value $themeProperty.Value -Type "Double"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$sync.preferences.theme = $theme
|
$sync.preferences.theme = $theme
|
||||||
Set-Preferences -save
|
|
||||||
Set-WinutilTheme -currentTheme "shared"
|
Set-WinutilTheme -currentTheme "shared"
|
||||||
|
|
||||||
switch ($sync.preferences.theme) {
|
switch ($sync.preferences.theme) {
|
||||||
@@ -150,6 +149,11 @@ function Invoke-WinutilThemeChange {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Reapply font scaling if it was previously set (theme change resets shared resources)
|
||||||
|
if ($sync.ContainsKey("FontScaleFactor") -and $sync.FontScaleFactor -ne 1.0) {
|
||||||
|
Invoke-WinUtilFontScaling -ScaleFactor $sync.FontScaleFactor
|
||||||
|
}
|
||||||
|
|
||||||
# Update the theme selector button with the appropriate icon
|
# Update the theme selector button with the appropriate icon
|
||||||
$ThemeButton = $sync.Form.FindName("ThemeButton")
|
$ThemeButton = $sync.Form.FindName("ThemeButton")
|
||||||
$ThemeButton.Content = [string]$themeButtonIcon
|
$ThemeButton.Content = [string]$themeButtonIcon
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ function Remove-WinUtilAPPX {
|
|||||||
)
|
)
|
||||||
|
|
||||||
Write-Host "Removing $Name"
|
Write-Host "Removing $Name"
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "Removing AppX package pattern: $Name"
|
||||||
Get-AppxPackage $Name -AllUsers | Remove-AppxPackage -AllUsers
|
Get-AppxPackage $Name -AllUsers | Remove-AppxPackage -AllUsers
|
||||||
Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like $Name | Remove-AppxProvisionedPackage -Online
|
Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like $Name | Remove-AppxProvisionedPackage -Online
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "AppX removal completed for package pattern: $Name"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,11 @@ function Reset-WPFCheckBoxes {
|
|||||||
)
|
)
|
||||||
|
|
||||||
$CheckBoxesToCheck = $sync.selectedApps + $sync.selectedTweaks + $sync.selectedFeatures + $sync.selectedAppx
|
$CheckBoxesToCheck = $sync.selectedApps + $sync.selectedTweaks + $sync.selectedFeatures + $sync.selectedAppx
|
||||||
$CheckBoxes = ($sync.GetEnumerator()).where{ $_.Value -is [System.Windows.Controls.CheckBox] -and $_.Name -notlike "WPFToggle*" -and $_.Name -like "$checkboxfilterpattern"}
|
$CheckBoxes = foreach ($syncEntry in $sync.GetEnumerator()) {
|
||||||
|
if ($syncEntry.Value -is [System.Windows.Controls.CheckBox] -and $syncEntry.Name -notlike "WPFToggle*" -and $syncEntry.Name -like $checkboxfilterpattern) {
|
||||||
|
$syncEntry
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($CheckBox in $CheckBoxes) {
|
foreach ($CheckBox in $CheckBoxes) {
|
||||||
$checkboxName = $CheckBox.Key
|
$checkboxName = $CheckBox.Key
|
||||||
|
|||||||
@@ -1,81 +0,0 @@
|
|||||||
function Set-Preferences{
|
|
||||||
|
|
||||||
param(
|
|
||||||
[switch]$save=$false
|
|
||||||
)
|
|
||||||
|
|
||||||
# TODO delete this function sometime later
|
|
||||||
function Clean-OldPrefs{
|
|
||||||
if (Test-Path -Path "$winutildir\LightTheme.ini") {
|
|
||||||
$sync.preferences.theme = "Light"
|
|
||||||
Remove-Item -Path "$winutildir\LightTheme.ini"
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Test-Path -Path "$winutildir\DarkTheme.ini") {
|
|
||||||
$sync.preferences.theme = "Dark"
|
|
||||||
Remove-Item -Path "$winutildir\DarkTheme.ini"
|
|
||||||
}
|
|
||||||
|
|
||||||
# check old prefs, if its first line has no =, then absorb it as pm
|
|
||||||
if (Test-Path -Path $iniPath) {
|
|
||||||
$oldPM = Get-Content $iniPath
|
|
||||||
if ($oldPM -notlike "*=*") {
|
|
||||||
$sync.preferences.packagemanager = $oldPM
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Test-Path -Path "$winutildir\preferChocolatey.ini") {
|
|
||||||
$sync.preferences.packagemanager = "Choco"
|
|
||||||
Remove-Item -Path "$winutildir\preferChocolatey.ini"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Save-Preferences{
|
|
||||||
$ini = ""
|
|
||||||
foreach($key in $sync.preferences.Keys) {
|
|
||||||
$pref = "$($key)=$($sync.preferences.$key)"
|
|
||||||
$ini = $ini + $pref + "`r`n"
|
|
||||||
}
|
|
||||||
$ini | Out-File $iniPath
|
|
||||||
}
|
|
||||||
|
|
||||||
function Load-Preferences{
|
|
||||||
Clean-OldPrefs
|
|
||||||
if (Test-Path -Path $iniPath) {
|
|
||||||
$iniData = Get-Content "$winutildir\preferences.ini"
|
|
||||||
foreach ($line in $iniData) {
|
|
||||||
if ($line -like "*=*") {
|
|
||||||
$arr = $line -split "=",-2
|
|
||||||
$key = $arr[0] -replace "\s",""
|
|
||||||
$value = $arr[1] -replace "\s",""
|
|
||||||
$sync.preferences.$key = $value
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# write defaults in case preferences dont exist
|
|
||||||
if ($null -eq $sync.preferences.theme) {
|
|
||||||
$sync.preferences.theme = "Auto"
|
|
||||||
}
|
|
||||||
if ($null -eq $sync.preferences.packagemanager) {
|
|
||||||
$sync.preferences.packagemanager = "Winget"
|
|
||||||
}
|
|
||||||
|
|
||||||
# convert packagemanager to enum
|
|
||||||
if ($sync.preferences.packagemanager -eq "Choco") {
|
|
||||||
$sync.preferences.packagemanager = [PackageManagers]::Choco
|
|
||||||
}
|
|
||||||
elseif ($sync.preferences.packagemanager -eq "Winget") {
|
|
||||||
$sync.preferences.packagemanager = [PackageManagers]::Winget
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$iniPath = "$winutildir\preferences.ini"
|
|
||||||
|
|
||||||
if ($save) {
|
|
||||||
Save-Preferences
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Load-Preferences
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -12,22 +12,44 @@ function Set-WinUtilDNS {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
param($DNSProvider)
|
param($DNSProvider)
|
||||||
if($DNSProvider -eq "Default") {return}
|
|
||||||
|
if($DNSProvider -eq "Default") {
|
||||||
|
Write-WinUtilLog -Component "DNS" -Message "DNS provider is Default; no DNS changes applied."
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$Adapters = Get-NetAdapter | Where-Object {$_.Status -eq "Up"}
|
$Adapters = Get-NetAdapter | Where-Object {$_.Status -eq "Up"}
|
||||||
Write-Host "Ensuring DNS is set to $DNSProvider on the following interfaces:"
|
Write-Host "Ensuring DNS is set to $DNSProvider on the following interfaces:"
|
||||||
Write-Host $($Adapters | Out-String)
|
Write-Host $($Adapters | Out-String)
|
||||||
|
Write-WinUtilLog -Component "DNS" -Message "Setting DNS provider to $DNSProvider for $(@($Adapters).Count) active adapter(s)."
|
||||||
|
|
||||||
|
if($DNSProvider -ne "DHCP") {
|
||||||
|
$dns = $sync.configs.dns.$DNSProvider
|
||||||
|
if($null -eq $dns) {
|
||||||
|
Write-Warning "DNS provider $DNSProvider was not found in configuration."
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "DNS" -Message "DNS provider $DNSProvider was not found in configuration."
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Foreach ($Adapter in $Adapters) {
|
Foreach ($Adapter in $Adapters) {
|
||||||
if($DNSProvider -eq "DHCP") {
|
if($DNSProvider -eq "DHCP") {
|
||||||
|
Write-WinUtilLog -Component "DNS" -Message "Resetting DNS to DHCP on adapter $($Adapter.Name) (ifIndex: $($Adapter.ifIndex))."
|
||||||
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ResetServerAddresses
|
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ResetServerAddresses
|
||||||
|
netsh interface ip set dnsservers name="$($Adapter.Name)" source=dhcp
|
||||||
|
netsh interface ipv6 set dnsservers name="$($Adapter.Name)" source=dhcp
|
||||||
} else {
|
} else {
|
||||||
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary)", "$($sync.configs.dns.$DNSProvider.Secondary)")
|
Write-WinUtilLog -Component "DNS" -Message "Setting IPv4 DNS on adapter $($Adapter.Name) (ifIndex: $($Adapter.ifIndex)) to $($dns.Primary), $($dns.Secondary)."
|
||||||
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary6)", "$($sync.configs.dns.$DNSProvider.Secondary6)")
|
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ($dns.Primary, $dns.Secondary)
|
||||||
|
Write-WinUtilLog -Component "DNS" -Message "Setting IPv6 DNS on adapter $($Adapter.Name) (ifIndex: $($Adapter.ifIndex)) to $($dns.Primary6), $($dns.Secondary6)."
|
||||||
|
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ($dns.Primary6, $dns.Secondary6)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Write-WinUtilLog -Component "DNS" -Message "DNS provider change completed: $DNSProvider"
|
||||||
} catch {
|
} catch {
|
||||||
Write-Warning "Unable to set DNS Provider due to an unhandled exception."
|
Write-Warning "Unable to set DNS Provider due to an unhandled exception."
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "DNS" -Message "Unable to set DNS provider $DNSProvider`: $($psitem.Exception.Message)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,11 +14,13 @@ function Set-WinUtilProgressbar{
|
|||||||
[int]$Percent
|
[int]$Percent
|
||||||
)
|
)
|
||||||
|
|
||||||
Invoke-WPFUIThread -ScriptBlock {$sync.progressBarTextBlock.Text = $label}
|
$progressLabel = $Label
|
||||||
Invoke-WPFUIThread -ScriptBlock {$sync.progressBarTextBlock.ToolTip = $label}
|
|
||||||
if ($percent -lt 5 ) {
|
Invoke-WPFUIThread -ScriptBlock {$sync.progressBarTextBlock.Text = $progressLabel}
|
||||||
$percent = 5 # Ensure the progress bar is not empty, as it looks weird
|
Invoke-WPFUIThread -ScriptBlock {$sync.progressBarTextBlock.ToolTip = $progressLabel}
|
||||||
|
if ($Percent -lt 5 ) {
|
||||||
|
$Percent = 5 # Ensure the progress bar is not empty, as it looks weird
|
||||||
}
|
}
|
||||||
Invoke-WPFUIThread -ScriptBlock { $sync.ProgressBar.Value = $percent}
|
Invoke-WPFUIThread -ScriptBlock { $sync.ProgressBar.Value = $Percent}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,25 +32,32 @@ function Set-WinUtilRegistry {
|
|||||||
|
|
||||||
If (!(Test-Path $Path)) {
|
If (!(Test-Path $Path)) {
|
||||||
Write-Host "$Path was not found. Creating..."
|
Write-Host "$Path was not found. Creating..."
|
||||||
|
Write-WinUtilLog -Component "Registry" -Message "Creating registry path: $Path"
|
||||||
New-Item -Path $Path -Force -ErrorAction Stop | Out-Null
|
New-Item -Path $Path -Force -ErrorAction Stop | Out-Null
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($Value -ne "<RemoveEntry>") {
|
if ($Value -ne "<RemoveEntry>") {
|
||||||
Write-Host "Set $Path\$Name to $Value"
|
Write-Host "Set $Path\$Name to $Value"
|
||||||
|
Write-WinUtilLog -Component "Registry" -Message "Setting $Path\$Name ($Type) to $Value"
|
||||||
Set-ItemProperty -Path $Path -Name $Name -Type $Type -Value $Value -Force -ErrorAction Stop | Out-Null
|
Set-ItemProperty -Path $Path -Name $Name -Type $Type -Value $Value -Force -ErrorAction Stop | Out-Null
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
Write-Host "Remove $Path\$Name"
|
Write-Host "Remove $Path\$Name"
|
||||||
|
Write-WinUtilLog -Component "Registry" -Message "Removing $Path\$Name"
|
||||||
Remove-ItemProperty -Path $Path -Name $Name -Force -ErrorAction Stop | Out-Null
|
Remove-ItemProperty -Path $Path -Name $Name -Force -ErrorAction Stop | Out-Null
|
||||||
}
|
}
|
||||||
} catch [System.Security.SecurityException] {
|
} catch [System.Security.SecurityException] {
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception."
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception."
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Registry" -Message "Security exception while changing $Path\$Name to $Value`: $($psitem.Exception.Message)"
|
||||||
} catch [System.Management.Automation.ItemNotFoundException] {
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Registry" -Message "Registry item not found while changing $Path\$Name`: $($psitem.Exception.Message)"
|
||||||
} catch [System.UnauthorizedAccessException] {
|
} catch [System.UnauthorizedAccessException] {
|
||||||
Write-Warning $psitem.Exception.Message
|
Write-Warning $psitem.Exception.Message
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Registry" -Message "Unauthorized while changing $Path\$Name`: $($psitem.Exception.Message)"
|
||||||
} catch {
|
} catch {
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception."
|
Write-Warning "Unable to set $Name due to unhandled exception."
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Registry" -Message "Unhandled exception while changing $Path\$Name`: $($psitem.Exception.Message)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,21 +20,33 @@ Function Set-WinUtilService {
|
|||||||
)
|
)
|
||||||
try {
|
try {
|
||||||
Write-Host "Setting Service $Name to $StartupType"
|
Write-Host "Setting Service $Name to $StartupType"
|
||||||
|
Write-WinUtilLog -Component "Service" -Message "Setting service $Name startup type to $StartupType"
|
||||||
|
|
||||||
# Check if the service exists
|
# Check if the service exists
|
||||||
$service = Get-Service -Name $Name -ErrorAction Stop
|
$service = Get-Service -Name $Name -ErrorAction Stop
|
||||||
|
|
||||||
|
if (($service.PSObject.Properties.Name -contains "StartType") -and ([string]$service.StartType -eq [string]$StartupType) ) {
|
||||||
|
Write-Host "Service $Name is already set to $StartupType"
|
||||||
|
Write-WinUtilLog -Component "Service" -Message "Service $Name startup type is already $StartupType; no change needed."
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
# Service exists, proceed with changing properties -- while handling auto delayed start for PWSH 5
|
# Service exists, proceed with changing properties -- while handling auto delayed start for PWSH 5
|
||||||
if (($PSVersionTable.PSVersion.Major -lt 7) -and ($StartupType -eq "AutomaticDelayedStart")) {
|
if (($PSVersionTable.PSVersion.Major -lt 7) -and ($StartupType -eq "AutomaticDelayedStart")) {
|
||||||
sc.exe config $Name start=delayed-auto
|
sc.exe config $Name start=delayed-auto
|
||||||
} else {
|
} else {
|
||||||
$service | Set-Service -StartupType $StartupType -ErrorAction Stop
|
$service | Set-Service -StartupType $StartupType -ErrorAction Stop
|
||||||
}
|
}
|
||||||
} catch [System.ServiceProcess.ServiceNotFoundException] {
|
Write-WinUtilLog -Component "Service" -Message "Service $Name startup type set to $StartupType"
|
||||||
Write-Warning "Service $Name was not found."
|
|
||||||
} catch {
|
} catch {
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception."
|
if ($_.FullyQualifiedErrorId -like "NoServiceFoundForGivenName,*") {
|
||||||
Write-Warning $_.Exception.Message
|
Write-Warning "Service $Name was not found."
|
||||||
|
Write-WinUtilLog -Level "WARN" -Component "Service" -Message "Service $Name was not found."
|
||||||
|
} else {
|
||||||
|
Write-Warning "Unable to set $Name due to unhandled exception."
|
||||||
|
Write-Warning $_.Exception.Message
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Service" -Message "Unable to set service $Name to $StartupType`: $($_.Exception.Message)"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,12 +61,21 @@ function Set-WinUtilTaskbaritem {
|
|||||||
if ($overlay) {
|
if ($overlay) {
|
||||||
switch ($overlay) {
|
switch ($overlay) {
|
||||||
'logo' {
|
'logo' {
|
||||||
|
if (-not $sync["logorender"]) {
|
||||||
|
Initialize-WinUtilTaskbarOverlayAssets -IncludeLogo $true -IncludeStatusAssets $false
|
||||||
|
}
|
||||||
$sync["Form"].taskbarItemInfo.Overlay = $sync["logorender"]
|
$sync["Form"].taskbarItemInfo.Overlay = $sync["logorender"]
|
||||||
}
|
}
|
||||||
'checkmark' {
|
'checkmark' {
|
||||||
|
if (-not $sync["checkmarkrender"]) {
|
||||||
|
Initialize-WinUtilTaskbarOverlayAssets -IncludeLogo $false -IncludeStatusAssets $true
|
||||||
|
}
|
||||||
$sync["Form"].taskbarItemInfo.Overlay = $sync["checkmarkrender"]
|
$sync["Form"].taskbarItemInfo.Overlay = $sync["checkmarkrender"]
|
||||||
}
|
}
|
||||||
'warning' {
|
'warning' {
|
||||||
|
if (-not $sync["warningrender"]) {
|
||||||
|
Initialize-WinUtilTaskbarOverlayAssets -IncludeLogo $false -IncludeStatusAssets $true
|
||||||
|
}
|
||||||
$sync["Form"].taskbarItemInfo.Overlay = $sync["warningrender"]
|
$sync["Form"].taskbarItemInfo.Overlay = $sync["warningrender"]
|
||||||
}
|
}
|
||||||
'None' {
|
'None' {
|
||||||
|
|||||||
@@ -193,6 +193,7 @@ function Show-CustomDialog {
|
|||||||
# Define the Regex to find hyperlinks formatted as HTML <a> tags
|
# Define the Regex to find hyperlinks formatted as HTML <a> tags
|
||||||
$regex = [regex]::new('<a href="([^"]+)">([^<]+)</a>')
|
$regex = [regex]::new('<a href="([^"]+)">([^<]+)</a>')
|
||||||
$lastPos = 0
|
$lastPos = 0
|
||||||
|
$linkHoverBrush = $LinkHoverForegroundColor
|
||||||
|
|
||||||
# Iterate through each match and add regular text and hyperlinks
|
# Iterate through each match and add regular text and hyperlinks
|
||||||
foreach ($match in $regex.Matches($Message)) {
|
foreach ($match in $regex.Matches($Message)) {
|
||||||
@@ -210,20 +211,23 @@ function Show-CustomDialog {
|
|||||||
$hyperlink.Foreground = $LinkForegroundColor
|
$hyperlink.Foreground = $LinkForegroundColor
|
||||||
|
|
||||||
$hyperlink.Add_Click({
|
$hyperlink.Add_Click({
|
||||||
param($sender, $args)
|
param($eventSender, $routedEvent)
|
||||||
Start-Process $sender.NavigateUri.AbsoluteUri
|
$null = $routedEvent
|
||||||
|
Start-Process $eventSender.NavigateUri.AbsoluteUri
|
||||||
})
|
})
|
||||||
$hyperlink.Add_MouseEnter({
|
$hyperlink.Add_MouseEnter({
|
||||||
param($sender, $args)
|
param($eventSender, $routedEvent)
|
||||||
$sender.Foreground = $LinkHoverForegroundColor
|
$null = $routedEvent
|
||||||
$sender.FontSize = ($FontSize + ($FontSize / 4))
|
$eventSender.Foreground = $linkHoverBrush
|
||||||
$sender.FontWeight = "SemiBold"
|
$eventSender.FontSize = ($FontSize + ($FontSize / 4))
|
||||||
|
$eventSender.FontWeight = "SemiBold"
|
||||||
})
|
})
|
||||||
$hyperlink.Add_MouseLeave({
|
$hyperlink.Add_MouseLeave({
|
||||||
param($sender, $args)
|
param($eventSender, $routedEvent)
|
||||||
$sender.Foreground = $LinkForegroundColor
|
$null = $routedEvent
|
||||||
$sender.FontSize = $FontSize
|
$eventSender.Foreground = $LinkForegroundColor
|
||||||
$sender.FontWeight = "Normal"
|
$eventSender.FontSize = $FontSize
|
||||||
|
$eventSender.FontWeight = "Normal"
|
||||||
})
|
})
|
||||||
|
|
||||||
$messageTextBlock.Inlines.Add($hyperlink)
|
$messageTextBlock.Inlines.Add($hyperlink)
|
||||||
|
|||||||
@@ -10,11 +10,13 @@ function Show-WPFInstallAppBusy {
|
|||||||
param (
|
param (
|
||||||
$text = "Installing apps..."
|
$text = "Installing apps..."
|
||||||
)
|
)
|
||||||
|
$overlayText = $text
|
||||||
|
|
||||||
Invoke-WPFUIThread -ScriptBlock {
|
Invoke-WPFUIThread -ScriptBlock {
|
||||||
$sync.InstallAppAreaOverlay.Visibility = [Windows.Visibility]::Visible
|
$sync.InstallAppAreaOverlay.Visibility = [Windows.Visibility]::Visible
|
||||||
$sync.InstallAppAreaOverlay.Width = $($sync.InstallAppAreaScrollViewer.ActualWidth * 0.4)
|
$sync.InstallAppAreaOverlay.Width = $($sync.InstallAppAreaScrollViewer.ActualWidth * 0.4)
|
||||||
$sync.InstallAppAreaOverlay.Height = $($sync.InstallAppAreaScrollViewer.ActualWidth * 0.4)
|
$sync.InstallAppAreaOverlay.Height = $($sync.InstallAppAreaScrollViewer.ActualWidth * 0.4)
|
||||||
$sync.InstallAppAreaOverlayText.Text = $text
|
$sync.InstallAppAreaOverlayText.Text = $overlayText
|
||||||
$sync.InstallAppAreaBorder.IsEnabled = $false
|
$sync.InstallAppAreaBorder.IsEnabled = $false
|
||||||
$sync.InstallAppAreaScrollViewer.Effect.Radius = 5
|
$sync.InstallAppAreaScrollViewer.Effect.Radius = 5
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
function Show-WinUtilMessage {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Shows a WinUtil message box and returns the selected result.
|
||||||
|
#>
|
||||||
|
param (
|
||||||
|
[string]$Message,
|
||||||
|
[string]$Title = "Winutil",
|
||||||
|
$Button = "OK",
|
||||||
|
$Icon = "Information"
|
||||||
|
)
|
||||||
|
|
||||||
|
[System.Windows.MessageBox]::Show($Message, $Title, $Button, $Icon)
|
||||||
|
}
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
function Invoke-WinUtilInstallAppRenderBatch {
|
||||||
|
param(
|
||||||
|
[Parameter(Mandatory = $true)]
|
||||||
|
$CategoryBatch
|
||||||
|
)
|
||||||
|
|
||||||
|
foreach ($appKey in $CategoryBatch.AppKeys) {
|
||||||
|
$sync.$appKey = Initialize-InstallAppEntry -TargetElement $CategoryBatch.TargetElement -AppKey $appKey
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($sync.currentTab -eq "Install" -and $sync.SearchBar -and -not [string]::IsNullOrWhiteSpace($sync.SearchBar.Text)) {
|
||||||
|
Find-AppsByNameOrDescription -SearchString $sync.SearchBar.Text
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function Complete-WinUtilInstallAppRendering {
|
||||||
|
$sync.InstallAppEntriesRendered = $true
|
||||||
|
}
|
||||||
|
|
||||||
|
function Invoke-WinUtilInstallAppRenderNextBatch {
|
||||||
|
if ($sync.InstallAppRenderQueue.Count -gt 0) {
|
||||||
|
$categoryBatch = $sync.InstallAppRenderQueue.Dequeue()
|
||||||
|
Invoke-WinUtilInstallAppRenderBatch -CategoryBatch $categoryBatch
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($sync.InstallAppRenderQueue.Count -gt 0) {
|
||||||
|
$sync.Form.Dispatcher.BeginInvoke(
|
||||||
|
[System.Windows.Threading.DispatcherPriority]::Background,
|
||||||
|
[action]{ Invoke-WinUtilInstallAppRenderNextBatch }
|
||||||
|
) | Out-Null
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
Complete-WinUtilInstallAppRendering
|
||||||
|
}
|
||||||
|
|
||||||
|
function Start-WinUtilInstallAppRendering {
|
||||||
|
if ($null -eq $sync.InstallAppRenderQueue) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
$sync.InstallAppEntriesRendered = $false
|
||||||
|
|
||||||
|
if ($sync.Form -and $sync.Form.Dispatcher) {
|
||||||
|
$sync.Form.Dispatcher.BeginInvoke(
|
||||||
|
[System.Windows.Threading.DispatcherPriority]::Background,
|
||||||
|
[action]{ Invoke-WinUtilInstallAppRenderNextBatch }
|
||||||
|
) | Out-Null
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
while ($sync.InstallAppRenderQueue.Count -gt 0) {
|
||||||
|
$categoryBatch = $sync.InstallAppRenderQueue.Dequeue()
|
||||||
|
Invoke-WinUtilInstallAppRenderBatch -CategoryBatch $categoryBatch
|
||||||
|
}
|
||||||
|
|
||||||
|
Complete-WinUtilInstallAppRendering
|
||||||
|
}
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
function Write-WinUtilLog {
|
||||||
|
<#
|
||||||
|
|
||||||
|
.SYNOPSIS
|
||||||
|
Writes a timestamped WinUtil log entry to the active session log.
|
||||||
|
|
||||||
|
.PARAMETER Message
|
||||||
|
The message to write.
|
||||||
|
|
||||||
|
.PARAMETER Level
|
||||||
|
The severity level for the log entry.
|
||||||
|
|
||||||
|
.PARAMETER Component
|
||||||
|
The WinUtil component producing the log entry.
|
||||||
|
|
||||||
|
#>
|
||||||
|
param (
|
||||||
|
[Parameter(Mandatory = $true)]
|
||||||
|
[string]$Message,
|
||||||
|
|
||||||
|
[ValidateSet("INFO", "WARN", "ERROR", "DEBUG")]
|
||||||
|
[string]$Level = "INFO",
|
||||||
|
|
||||||
|
[string]$Component = "WinUtil"
|
||||||
|
)
|
||||||
|
|
||||||
|
try {
|
||||||
|
$logPath = $null
|
||||||
|
$transcriptPath = $null
|
||||||
|
if ($null -ne $sync -and $sync.ContainsKey("logPath")) {
|
||||||
|
$logPath = $sync.logPath
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($null -ne $sync -and $sync.ContainsKey("transcriptPath")) {
|
||||||
|
$transcriptPath = $sync.transcriptPath
|
||||||
|
}
|
||||||
|
|
||||||
|
if ([string]::IsNullOrWhiteSpace($logPath) -and -not [string]::IsNullOrWhiteSpace($transcriptPath)) {
|
||||||
|
$logPath = $transcriptPath
|
||||||
|
}
|
||||||
|
|
||||||
|
if ([string]::IsNullOrWhiteSpace($logPath) -and $null -ne $sync -and $sync.ContainsKey("winutildir")) {
|
||||||
|
$logDirectory = Join-Path $sync.winutildir "logs"
|
||||||
|
$logPath = Join-Path $logDirectory "winutil_$(Get-Date -Format "yyyy-MM-dd_HH-mm-ss").log"
|
||||||
|
$sync.logPath = $logPath
|
||||||
|
}
|
||||||
|
|
||||||
|
if ([string]::IsNullOrWhiteSpace($logPath) -and -not [string]::IsNullOrWhiteSpace($env:LocalAppData)) {
|
||||||
|
if ([string]::IsNullOrWhiteSpace($script:WinUtilLogPath)) {
|
||||||
|
$logDirectory = Join-Path (Join-Path $env:LocalAppData "winutil") "logs"
|
||||||
|
$script:WinUtilLogPath = Join-Path $logDirectory "winutil_$(Get-Date -Format "yyyy-MM-dd_HH-mm-ss").log"
|
||||||
|
}
|
||||||
|
$logPath = $script:WinUtilLogPath
|
||||||
|
}
|
||||||
|
|
||||||
|
if ([string]::IsNullOrWhiteSpace($logPath)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
$logDirectory = Split-Path -Path $logPath -Parent
|
||||||
|
if (-not (Test-Path $logDirectory)) {
|
||||||
|
New-Item -Path $logDirectory -ItemType Directory -Force | Out-Null
|
||||||
|
}
|
||||||
|
|
||||||
|
$timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss.fff"
|
||||||
|
$line = "[$timestamp] [$Level] [$Component] $Message"
|
||||||
|
|
||||||
|
if (-not [string]::IsNullOrWhiteSpace($transcriptPath) -and $logPath -eq $transcriptPath) {
|
||||||
|
Write-Host $line
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
Add-Content -Path $logPath -Value $line -Encoding UTF8 -ErrorAction Stop
|
||||||
|
} catch [System.IO.IOException] {
|
||||||
|
Write-Host $line
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
Write-Warning "Unable to write WinUtil log entry: $($_.Exception.Message)"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,36 +1,42 @@
|
|||||||
function Invoke-WPFAppxRemoval {
|
function Invoke-WPFAppxRemoval {
|
||||||
if (-not ($sync.selectedAppx)) {
|
if ($null -eq $sync.selectedAppx -or $sync.selectedAppx.Count -eq 0) {
|
||||||
[System.Windows.Forms.MessageBox]::Show("No AppX Package selected","Error","OK","Error")
|
Show-WinUtilMessage -Message "No AppX Package selected" -Title "Error" -Button "OK" -Icon "Error"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
$selected = $sync.selectedAppx
|
$selected = $sync.selectedAppx
|
||||||
$apps = $sync.configs.appxHashtable
|
$apps = $sync.configs.appxHashtable
|
||||||
|
|
||||||
$handle = Invoke-WPFRunspace -ParameterList @(("selected", $selected), ("apps", $apps)) -ScriptBlock {
|
Invoke-WPFRunspace -ParameterList @(("selected", $selected), ("apps", $apps)) -ScriptBlock {
|
||||||
param($selected, $apps)
|
param($selected, $apps)
|
||||||
|
|
||||||
$sync.ProcessRunning = $true
|
$sync.ProcessRunning = $true
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "Starting AppX removal for $(@($selected).Count) selected package(s)."
|
||||||
|
|
||||||
foreach ($key in $selected) {
|
foreach ($key in $selected) {
|
||||||
if ($key -eq "WPFAppxMicrosoft_XboxGamingOverlay") {
|
if ($key -eq "WPFAppxMicrosoft_XboxGamingOverlay") {
|
||||||
# Making sure Game Bar isn't running
|
# Making sure Game Bar isn't running
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "Stopping GameBarFTServer before removing Xbox Gaming Overlay."
|
||||||
Stop-Process -Name GameBarFTServer
|
Stop-Process -Name GameBarFTServer
|
||||||
|
|
||||||
# This stops annoying ms-gamebar popup when launching games.
|
# This stops annoying ms-gamebar popup when launching games.
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "Disabling Game DVR capture before removing Xbox Gaming Overlay."
|
||||||
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\GameDVR -Name AppCaptureEnabled -Value 0
|
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\GameDVR -Name AppCaptureEnabled -Value 0
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($key -eq "WPFAppxMicrosoft_WindowsNotepad") {
|
if ($key -eq "WPFAppxMicrosoft_WindowsNotepad") {
|
||||||
# i hope your having fun reading this
|
# i hope your having fun reading this
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "Stopping dllhost before removing Notepad."
|
||||||
Stop-Process -Name dllhost
|
Stop-Process -Name dllhost
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Host "Removing $($apps[$key].Content)"
|
Write-Host "Removing $($apps[$key].Content)"
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "Removing $($apps[$key].Content) ($($apps[$key].PackageId))."
|
||||||
Get-AppxPackage -Name $apps[$key].PackageId -AllUsers | Remove-AppxPackage -AllUsers
|
Get-AppxPackage -Name $apps[$key].PackageId -AllUsers | Remove-AppxPackage -AllUsers
|
||||||
|
|
||||||
if ($key -eq "WPFAppxMSTeams") {
|
if ($key -eq "WPFAppxMSTeams") {
|
||||||
# Uninstalls Microsoft Teams Meeting Add-in for Microsoft Office
|
# Uninstalls Microsoft Teams Meeting Add-in for Microsoft Office
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "Uninstalling Microsoft Teams meeting add-in package."
|
||||||
Get-Package -Name "Microsoft Teams*" -ErrorAction SilentlyContinue | Uninstall-Package -Force
|
Get-Package -Name "Microsoft Teams*" -ErrorAction SilentlyContinue | Uninstall-Package -Force
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -38,6 +44,7 @@ function Invoke-WPFAppxRemoval {
|
|||||||
Write-Host "================================="
|
Write-Host "================================="
|
||||||
Write-Host "-- AppX Removal Finished ---"
|
Write-Host "-- AppX Removal Finished ---"
|
||||||
Write-Host "================================="
|
Write-Host "================================="
|
||||||
|
Write-WinUtilLog -Component "AppX" -Message "AppX removal finished."
|
||||||
|
|
||||||
$sync.ProcessRunning = $false
|
$sync.ProcessRunning = $false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ function Invoke-WPFButton {
|
|||||||
if ($buttonConfig.InvokeScript -and $buttonConfig.InvokeScript.Count -gt 0) {
|
if ($buttonConfig.InvokeScript -and $buttonConfig.InvokeScript.Count -gt 0) {
|
||||||
foreach ($script in $buttonConfig.InvokeScript) {
|
foreach ($script in $buttonConfig.InvokeScript) {
|
||||||
if (-not [string]::IsNullOrWhiteSpace($script)) {
|
if (-not [string]::IsNullOrWhiteSpace($script)) {
|
||||||
Invoke-Expression $script
|
Invoke-Command -ScriptBlock ([scriptblock]::Create($script)) -ErrorAction Stop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ function Invoke-WPFFeatureInstall {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
$handle = Invoke-WPFRunspace -ScriptBlock {
|
Invoke-WPFRunspace -ScriptBlock {
|
||||||
$Features = $sync.selectedFeatures
|
$Features = $sync.selectedFeatures
|
||||||
$sync.ProcessRunning = $true
|
$sync.ProcessRunning = $true
|
||||||
if ($Features.count -eq 1) {
|
if ($Features.count -eq 1) {
|
||||||
@@ -26,7 +26,7 @@ function Invoke-WPFFeatureInstall {
|
|||||||
$Features | ForEach-Object {
|
$Features | ForEach-Object {
|
||||||
Invoke-WinUtilFeatureInstall $_
|
Invoke-WinUtilFeatureInstall $_
|
||||||
$X++
|
$X++
|
||||||
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -value ($x/$CheckBox.Count) }
|
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -value ($x/$Features.Count) }
|
||||||
}
|
}
|
||||||
|
|
||||||
$sync.ProcessRunning = $false
|
$sync.ProcessRunning = $false
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ function Invoke-WPFGetInstalled {
|
|||||||
Invoke-WPFRunspace -ParameterList @(("managerPreference", $managerPreference),("checkbox", $checkbox)) -ScriptBlock {
|
Invoke-WPFRunspace -ParameterList @(("managerPreference", $managerPreference),("checkbox", $checkbox)) -ScriptBlock {
|
||||||
param (
|
param (
|
||||||
[string]$checkbox,
|
[string]$checkbox,
|
||||||
[PackageManagers]$managerPreference
|
[string]$managerPreference
|
||||||
)
|
)
|
||||||
$sync.ProcessRunning = $true
|
$sync.ProcessRunning = $true
|
||||||
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -state "Indeterminate" }
|
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -state "Indeterminate" }
|
||||||
|
|||||||
@@ -9,25 +9,29 @@ function Invoke-WPFInstall {
|
|||||||
|
|
||||||
if($sync.ProcessRunning) {
|
if($sync.ProcessRunning) {
|
||||||
$msg = "[Invoke-WPFInstall] An Install process is currently running."
|
$msg = "[Invoke-WPFInstall] An Install process is currently running."
|
||||||
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
Show-WinUtilMessage -Message $msg -Title "Winutil" -Button "OK" -Icon "Warning"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($PackagesToInstall.Count -eq 0) {
|
if ($PackagesToInstall.Count -eq 0) {
|
||||||
$WarningMsg = "Please select the program(s) to install or upgrade."
|
$WarningMsg = "Please select the program(s) to install or upgrade."
|
||||||
[System.Windows.MessageBox]::Show($WarningMsg, $AppTitle, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Warning)
|
Show-WinUtilMessage -Message $WarningMsg -Title $AppTitle -Button "OK" -Icon "Warning"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
$ManagerPreference = $sync.preferences.packagemanager
|
$ManagerPreference = $sync.preferences.packagemanager
|
||||||
|
Write-WinUtilLog -Component "Install" -Message "Install requested for $(@($PackagesToInstall).Count) selected package(s) using preference: $ManagerPreference"
|
||||||
|
$packageSummary = Get-WinUtilPackageLogSummary -Packages $PackagesToInstall -Preference $ManagerPreference
|
||||||
|
Write-WinUtilLog -Component "Install" -Message "Install selected package(s): $($packageSummary -join '; ')"
|
||||||
|
|
||||||
$handle = Invoke-WPFRunspace -ParameterList @(("PackagesToInstall", $PackagesToInstall),("ManagerPreference", $ManagerPreference)) -ScriptBlock {
|
Invoke-WPFRunspace -ParameterList @(("PackagesToInstall", $PackagesToInstall),("ManagerPreference", $ManagerPreference)) -ScriptBlock {
|
||||||
param($PackagesToInstall, $ManagerPreference)
|
param($PackagesToInstall, $ManagerPreference)
|
||||||
|
|
||||||
$packagesSorted = Get-WinUtilSelectedPackages -PackageList $PackagesToInstall -Preference $ManagerPreference
|
$packagesSorted = Get-WinUtilSelectedPackages -PackageList $PackagesToInstall -Preference $ManagerPreference
|
||||||
|
|
||||||
$packagesWinget = $packagesSorted[[PackageManagers]::Winget]
|
$packagesWinget = $packagesSorted['Winget']
|
||||||
$packagesChoco = $packagesSorted[[PackageManagers]::Choco]
|
$packagesChoco = $packagesSorted['Choco']
|
||||||
|
Write-WinUtilLog -Component "Install" -Message "Install package manager split: winget=$(@($packagesWinget).Count), choco=$(@($packagesChoco).Count)"
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$sync.ProcessRunning = $true
|
$sync.ProcessRunning = $true
|
||||||
@@ -44,13 +48,17 @@ function Invoke-WPFInstall {
|
|||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
Write-Host "-- Installs have finished ---"
|
Write-Host "-- Installs have finished ---"
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
|
Write-WinUtilLog -Component "Install" -Message "Install workflow completed."
|
||||||
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -state "None" -overlay "checkmark" }
|
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -state "None" -overlay "checkmark" }
|
||||||
} catch {
|
} catch {
|
||||||
|
Hide-WPFInstallAppBusy
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
Write-Host "Error: $_"
|
Write-Host "Error: $_"
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
|
Write-WinUtilLog -Level "ERROR" -Component "Install" -Message "Install workflow failed: $($_.Exception.Message)"
|
||||||
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -state "Error" -overlay "warning" }
|
Invoke-WPFUIThread -ScriptBlock { Set-WinUtilTaskbaritem -state "Error" -overlay "warning" }
|
||||||
|
} finally {
|
||||||
|
$sync.ProcessRunning = $False
|
||||||
}
|
}
|
||||||
$sync.ProcessRunning = $False
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,36 +24,74 @@ function Invoke-WPFRunspace {
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
[CmdletBinding()]
|
[CmdletBinding()]
|
||||||
|
[OutputType([System.IAsyncResult])]
|
||||||
Param (
|
Param (
|
||||||
$ScriptBlock,
|
$ScriptBlock,
|
||||||
$ArgumentList,
|
$ArgumentList,
|
||||||
$ParameterList
|
$ParameterList
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (-not ("WinUtilRunspaceCleanup" -as [type])) {
|
||||||
|
Add-Type @"
|
||||||
|
using System;
|
||||||
|
using System.Management.Automation;
|
||||||
|
|
||||||
|
public sealed class WinUtilRunspaceCleanupState
|
||||||
|
{
|
||||||
|
public PowerShell PowerShell { get; set; }
|
||||||
|
public IAsyncResult Handle { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class WinUtilRunspaceCleanup
|
||||||
|
{
|
||||||
|
public static void Cleanup(object state, bool timedOut)
|
||||||
|
{
|
||||||
|
var cleanupState = state as WinUtilRunspaceCleanupState;
|
||||||
|
if (cleanupState == null || cleanupState.PowerShell == null || cleanupState.Handle == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
cleanupState.PowerShell.EndInvoke(cleanupState.Handle);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
cleanupState.PowerShell.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"@
|
||||||
|
}
|
||||||
|
|
||||||
|
Initialize-WinUtilRunspacePool | Out-Null
|
||||||
|
|
||||||
# Create a PowerShell instance
|
# Create a PowerShell instance
|
||||||
$script:powershell = [powershell]::Create()
|
$powershell = [powershell]::Create()
|
||||||
|
|
||||||
# Add Scriptblock and Arguments to runspace
|
# Add Scriptblock and Arguments to runspace
|
||||||
$script:powershell.AddScript($ScriptBlock)
|
[void]$powershell.AddScript($ScriptBlock)
|
||||||
$script:powershell.AddArgument($ArgumentList)
|
[void]$powershell.AddArgument($ArgumentList)
|
||||||
|
|
||||||
foreach ($parameter in $ParameterList) {
|
foreach ($parameter in $ParameterList) {
|
||||||
$script:powershell.AddParameter($parameter[0], $parameter[1])
|
[void]$powershell.AddParameter($parameter[0], $parameter[1])
|
||||||
}
|
}
|
||||||
|
|
||||||
$script:powershell.RunspacePool = $sync.runspace
|
$powershell.RunspacePool = $sync.runspace
|
||||||
|
|
||||||
# Execute the RunspacePool
|
# Execute the RunspacePool
|
||||||
$script:handle = $script:powershell.BeginInvoke()
|
$handle = $powershell.BeginInvoke()
|
||||||
|
|
||||||
|
$cleanupState = [WinUtilRunspaceCleanupState]::new()
|
||||||
|
$cleanupState.PowerShell = $powershell
|
||||||
|
$cleanupState.Handle = $handle
|
||||||
|
$cleanupCallback = [System.Threading.WaitOrTimerCallback][WinUtilRunspaceCleanup]::Cleanup
|
||||||
|
[System.Threading.ThreadPool]::RegisterWaitForSingleObject($handle.AsyncWaitHandle, $cleanupCallback, $cleanupState, -1, $true) | Out-Null
|
||||||
|
|
||||||
# Clean up the RunspacePool threads when they are complete, and invoke the garbage collector to clean up the memory
|
|
||||||
if ($script:handle.IsCompleted) {
|
|
||||||
$script:powershell.EndInvoke($script:handle)
|
|
||||||
$script:powershell.Dispose()
|
|
||||||
$sync.runspace.Dispose()
|
|
||||||
$sync.runspace.Close()
|
|
||||||
[System.GC]::Collect()
|
|
||||||
}
|
|
||||||
# Return the handle
|
# Return the handle
|
||||||
return $handle
|
return $handle
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ function Invoke-WPFTab {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$sync.currentTab = $sync.$tabNav.Items[$tabNumber].Header
|
$sync.currentTab = $sync.$tabNav.Items[$tabNumber].Header
|
||||||
|
Initialize-WinUtilTabContent -TabName $sync.currentTab
|
||||||
|
|
||||||
# Always reset the filter for the current tab
|
# Always reset the filter for the current tab
|
||||||
if ($sync.currentTab -eq "Install") {
|
if ($sync.currentTab -eq "Install") {
|
||||||
|
|||||||
@@ -223,6 +223,18 @@ function Invoke-WPFUIElements {
|
|||||||
$sync[$entryInfo.Name].Add_Unchecked({
|
$sync[$entryInfo.Name].Add_Unchecked({
|
||||||
$this.Content = $this.Tag.contentOff
|
$this.Content = $this.Tag.contentOff
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if ($null -eq $sync.Buttons) {
|
||||||
|
$sync.Buttons = [System.Collections.Generic.List[PSObject]]::new()
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($sync.Buttons -notcontains $toggleButton.Name) {
|
||||||
|
$toggleButton.Add_Click({
|
||||||
|
[System.Object]$Sender = $args[0]
|
||||||
|
Invoke-WPFButton $Sender.name
|
||||||
|
})
|
||||||
|
$sync.Buttons.Add($toggleButton.Name) | Out-Null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
"Combobox" {
|
"Combobox" {
|
||||||
@@ -294,6 +306,18 @@ function Invoke-WPFUIElements {
|
|||||||
$itemsControl.Items.Add($button) | Out-Null
|
$itemsControl.Items.Add($button) | Out-Null
|
||||||
|
|
||||||
$sync[$entryInfo.Name] = $button
|
$sync[$entryInfo.Name] = $button
|
||||||
|
|
||||||
|
if ($null -eq $sync.Buttons) {
|
||||||
|
$sync.Buttons = [System.Collections.Generic.List[PSObject]]::new()
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($sync.Buttons -notcontains $button.Name) {
|
||||||
|
$button.Add_Click({
|
||||||
|
[System.Object]$Sender = $args[0]
|
||||||
|
Invoke-WPFButton $Sender.name
|
||||||
|
})
|
||||||
|
$sync.Buttons.Add($button.Name) | Out-Null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
"RadioButton" {
|
"RadioButton" {
|
||||||
@@ -380,6 +404,27 @@ function Invoke-WPFUIElements {
|
|||||||
$textBlock.ToolTip = $entryInfo.Link
|
$textBlock.ToolTip = $entryInfo.Link
|
||||||
$textBlock.Style = $HoverTextBlockStyle
|
$textBlock.Style = $HoverTextBlockStyle
|
||||||
$textBlock.UseLayoutRounding = $true
|
$textBlock.UseLayoutRounding = $true
|
||||||
|
|
||||||
|
$textBlock.VerticalAlignment = "Center"
|
||||||
|
$textBlock.SetResourceReference([Windows.Controls.Control]::FontSizeProperty, "FontSize")
|
||||||
|
$textBlock.Tag = $checkBox
|
||||||
|
|
||||||
|
$updateLinkMargin = {
|
||||||
|
[System.Object]$Sender = $args[0]
|
||||||
|
$linkedCheckBox = $Sender.Tag
|
||||||
|
$MarginTopBase = if ($linkedCheckBox) { $linkedCheckBox.Margin.Top } else { 0 }
|
||||||
|
$Sender.Margin = New-Object Windows.Thickness(
|
||||||
|
[math]::Round($Sender.FontSize * 0.5),
|
||||||
|
($MarginTopBase - [math]::Round($Sender.FontSize / 2)),
|
||||||
|
0, 0
|
||||||
|
)
|
||||||
|
}
|
||||||
|
$textBlock.Add_Loaded($updateLinkMargin)
|
||||||
|
$fontSizeDescriptor = [System.ComponentModel.DependencyPropertyDescriptor]::FromProperty(
|
||||||
|
[Windows.Controls.Control]::FontSizeProperty,
|
||||||
|
[Windows.Controls.TextBlock]
|
||||||
|
)
|
||||||
|
$fontSizeDescriptor.AddValueChanged($textBlock, $updateLinkMargin)
|
||||||
|
|
||||||
$horizontalStackPanel.Children.Add($textBlock) | Out-Null
|
$horizontalStackPanel.Children.Add($textBlock) | Out-Null
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user