gitextract_6r0r9y67/ ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yaml │ │ ├── config.yml │ │ └── feature_request.yaml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.md │ ├── dependabot.yml │ ├── release-drafter.yml │ └── workflows/ │ ├── auto-merge-docs.yaml │ ├── close-discussion-on-pr.yaml │ ├── close-old-issues.yaml │ ├── compile-check.yaml │ ├── docs.yaml │ ├── issue-slash-commands.yaml │ ├── label-pr.yaml │ ├── pre-release.yaml │ ├── remove-winutil.yaml │ ├── sponsors.yaml │ └── unittests.yaml ├── .gitignore ├── Compile.ps1 ├── LICENSE ├── README.md ├── config/ │ ├── applications.json │ ├── appnavigation.json │ ├── dns.json │ ├── feature.json │ ├── preset.json │ ├── themes.json │ └── tweaks.json ├── docs/ │ ├── archetypes/ │ │ └── default.md │ ├── content/ │ │ ├── CONTRIBUTING.md │ │ ├── KnownIssues.md │ │ ├── _index.md │ │ ├── dev/ │ │ │ ├── _index.md │ │ │ ├── architecture.md │ │ │ ├── features/ │ │ │ │ ├── Features/ │ │ │ │ │ ├── DisableLegacyRecovery.md │ │ │ │ │ ├── EnableLegacyRecovery.md │ │ │ │ │ ├── RegBackup.md │ │ │ │ │ ├── Sandbox.md │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── dotnet.md │ │ │ │ │ ├── hyperv.md │ │ │ │ │ ├── legacymedia.md │ │ │ │ │ ├── nfs.md │ │ │ │ │ └── wsl.md │ │ │ │ ├── Fixes/ │ │ │ │ │ ├── Autologin.md │ │ │ │ │ ├── DISM.md │ │ │ │ │ ├── Network.md │ │ │ │ │ ├── Update.md │ │ │ │ │ ├── Winget.md │ │ │ │ │ └── _index.md │ │ │ │ ├── Legacy-Windows-Panels/ │ │ │ │ │ ├── Computer.md │ │ │ │ │ ├── Control.md │ │ │ │ │ ├── Network.md │ │ │ │ │ ├── Power.md │ │ │ │ │ ├── Printer.md │ │ │ │ │ ├── Region.md │ │ │ │ │ ├── Restore.md │ │ │ │ │ ├── Sound.md │ │ │ │ │ ├── System.md │ │ │ │ │ ├── Timedate.md │ │ │ │ │ └── _index.md │ │ │ │ ├── Powershell-Profile-Powershell-7--Only/ │ │ │ │ │ ├── InstallPSProfile.md │ │ │ │ │ ├── UninstallPSProfile.md │ │ │ │ │ └── _index.md │ │ │ │ ├── Remote-Access/ │ │ │ │ │ ├── SSHServer.md │ │ │ │ │ └── _index.md │ │ │ │ └── _index.md │ │ │ └── tweaks/ │ │ │ ├── Customize-Preferences/ │ │ │ │ ├── BingSearch.md │ │ │ │ ├── DarkMode.md │ │ │ │ ├── DetailedBSoD.md │ │ │ │ ├── DisableCrossDeviceResume.md │ │ │ │ ├── HiddenFiles.md │ │ │ │ ├── HideSettingsHome.md │ │ │ │ ├── MouseAcceleration.md │ │ │ │ ├── MultiplaneOverlay.md │ │ │ │ ├── NewOutlook.md │ │ │ │ ├── NumLock.md │ │ │ │ ├── S3Sleep.md │ │ │ │ ├── ShowExt.md │ │ │ │ ├── StandbyFix.md │ │ │ │ ├── StartMenuRecommendations.md │ │ │ │ ├── StickyKeys.md │ │ │ │ ├── TaskView.md │ │ │ │ ├── TaskbarAlignment.md │ │ │ │ ├── TaskbarSearch.md │ │ │ │ ├── VerboseLogon.md │ │ │ │ └── _index.md │ │ │ ├── Essential-Tweaks/ │ │ │ │ ├── Activity.md │ │ │ │ ├── ConsumerFeatures.md │ │ │ │ ├── DeleteTempFiles.md │ │ │ │ ├── DisableExplorerAutoDiscovery.md │ │ │ │ ├── DisableStoreSearch.md │ │ │ │ ├── DiskCleanup.md │ │ │ │ ├── EndTaskOnTaskbar.md │ │ │ │ ├── Hiber.md │ │ │ │ ├── Location.md │ │ │ │ ├── Powershell7Tele.md │ │ │ │ ├── RestorePoint.md │ │ │ │ ├── RevertStartMenu.md │ │ │ │ ├── Services.md │ │ │ │ ├── Telemetry.md │ │ │ │ ├── WPBT.md │ │ │ │ ├── Widget.md │ │ │ │ └── _index.md │ │ │ ├── Performance-Plans/ │ │ │ │ ├── AddUltPerf.md │ │ │ │ ├── RemoveUltPerf.md │ │ │ │ └── _index.md │ │ │ ├── _index.md │ │ │ └── z--Advanced-Tweaks---CAUTION/ │ │ │ ├── BlockAdobeNet.md │ │ │ ├── BraveDebloat.md │ │ │ ├── DeBloat.md │ │ │ ├── DisableBGapps.md │ │ │ ├── DisableFSO.md │ │ │ ├── DisableIPv6.md │ │ │ ├── DisableNotifications.md │ │ │ ├── Display.md │ │ │ ├── EdgeDebloat.md │ │ │ ├── IPv46.md │ │ │ ├── OOSUbutton.md │ │ │ ├── RazerBlock.md │ │ │ ├── RemoveCopilot.md │ │ │ ├── RemoveEdge.md │ │ │ ├── RemoveGallery.md │ │ │ ├── RemoveHome.md │ │ │ ├── RemoveOneDrive.md │ │ │ ├── RightClickMenu.md │ │ │ ├── Storage.md │ │ │ ├── Teredo.md │ │ │ ├── UTC.md │ │ │ ├── XboxRemoval.md │ │ │ ├── _index.md │ │ │ └── changedns.md │ │ ├── faq.md │ │ └── userguide/ │ │ ├── _index.md │ │ ├── application/ │ │ │ └── _index.md │ │ ├── automation/ │ │ │ └── _index.md │ │ ├── features/ │ │ │ └── _index.md │ │ ├── getting-started/ │ │ │ └── _index.md │ │ ├── tweaks/ │ │ │ └── _index.md │ │ ├── updates/ │ │ │ └── _index.md │ │ └── win11Creator/ │ │ └── _index.md │ ├── go.mod │ ├── go.sum │ ├── hugo.toml │ ├── i18n/ │ │ └── en.yaml │ ├── layouts/ │ │ └── shortcodes/ │ │ ├── autolinks.html │ │ └── image.html │ └── static/ │ ├── CNAME │ └── site.webmanifest ├── functions/ │ ├── private/ │ │ ├── Add-SelectedAppsMenuItem.ps1 │ │ ├── Find-AppsByNameOrDescription.ps1 │ │ ├── Find-TweaksByNameOrDescription.ps1 │ │ ├── Get-LocalizedYesNo.ps1 │ │ ├── Get-WPFObjectName.ps1 │ │ ├── Get-WinUtilInstallerProcess.ps1 │ │ ├── Get-WinUtilSelectedPackages.ps1 │ │ ├── Get-WinUtilToggleStatus.ps1 │ │ ├── Get-WinUtilVariables.ps1 │ │ ├── Hide-WPFInstallAppBusy.ps1 │ │ ├── Initialize-InstallAppArea.ps1 │ │ ├── Initialize-InstallAppEntry.ps1 │ │ ├── Initialize-InstallCategoryAppList.ps1 │ │ ├── Install-WinUtilChoco.ps1 │ │ ├── Install-WinUtilProgramChoco.ps1 │ │ ├── Install-WinUtilProgramWinget.ps1 │ │ ├── Install-WinUtilWinget.ps1 │ │ ├── Invoke-WinUtilAssets.ps1 │ │ ├── Invoke-WinUtilCurrentSystem.ps1 │ │ ├── Invoke-WinUtilExplorerUpdate.ps1 │ │ ├── Invoke-WinUtilFeatureInstall.ps1 │ │ ├── Invoke-WinUtilFontScaling.ps1 │ │ ├── Invoke-WinUtilISO.ps1 │ │ ├── Invoke-WinUtilISOScript.ps1 │ │ ├── Invoke-WinUtilISOUSB.ps1 │ │ ├── Invoke-WinUtilInstallPSProfile.ps1 │ │ ├── Invoke-WinUtilSSHServer.ps1 │ │ ├── Invoke-WinUtilScript.ps1 │ │ ├── Invoke-WinUtilSponsors.ps1 │ │ ├── Invoke-WinUtilTweaks.ps1 │ │ ├── Invoke-WinUtilUninstallPSProfile.ps1 │ │ ├── Invoke-WinutilThemeChange.ps1 │ │ ├── Remove-WinUtilAPPX.ps1 │ │ ├── Reset-WPFCheckBoxes.ps1 │ │ ├── Set-Preferences.ps1 │ │ ├── Set-WinUtilDNS.ps1 │ │ ├── Set-WinUtilProgressbar.ps1 │ │ ├── Set-WinUtilRegistry.ps1 │ │ ├── Set-WinUtilScheduledTask.ps1 │ │ ├── Set-WinUtilService.ps1 │ │ ├── Set-WinUtilTaskbarItem.ps1 │ │ ├── Show-CustomDialog.ps1 │ │ ├── Show-WPFInstallAppBusy.ps1 │ │ ├── Test-WinUtilPackageManager.ps1 │ │ ├── Update-WinUtilProgramWinget.ps1 │ │ └── Update-WinUtilSelections.ps1 │ └── public/ │ ├── Initialize-WPFUI.ps1 │ ├── Invoke-WPFButton.ps1 │ ├── Invoke-WPFFeatureInstall.ps1 │ ├── Invoke-WPFFixesNetwork.ps1 │ ├── Invoke-WPFFixesUpdate.ps1 │ ├── Invoke-WPFFixesWinget.ps1 │ ├── Invoke-WPFGetInstalled.ps1 │ ├── Invoke-WPFImpex.ps1 │ ├── Invoke-WPFInstall.ps1 │ ├── Invoke-WPFInstallUpgrade.ps1 │ ├── Invoke-WPFOOSU.ps1 │ ├── Invoke-WPFPanelAutologin.ps1 │ ├── Invoke-WPFPopup.ps1 │ ├── Invoke-WPFPresets.ps1 │ ├── Invoke-WPFRunspace.ps1 │ ├── Invoke-WPFSSHServer.ps1 │ ├── Invoke-WPFSelectedCheckboxesUpdate.ps1 │ ├── Invoke-WPFSystemRepair.ps1 │ ├── Invoke-WPFTab.ps1 │ ├── Invoke-WPFToggleAllCategories.ps1 │ ├── Invoke-WPFUIElements.ps1 │ ├── Invoke-WPFUIThread.ps1 │ ├── Invoke-WPFUltimatePerformance.ps1 │ ├── Invoke-WPFUnInstall.ps1 │ ├── Invoke-WPFUpdatesdefault.ps1 │ ├── Invoke-WPFUpdatesdisable.ps1 │ ├── Invoke-WPFUpdatessecurity.ps1 │ ├── Invoke-WPFtweaksbutton.ps1 │ ├── Invoke-WPFundoall.ps1 │ ├── Invoke-WinUtilAutoRun.ps1 │ ├── Invoke-WinUtilRemoveEdge.ps1 │ └── Show-CTTLogo.ps1 ├── lint/ │ └── PSScriptAnalyser.ps1 ├── overrides/ │ └── main.html ├── pester/ │ ├── configs.Tests.ps1 │ └── functions.Tests.ps1 ├── scripts/ │ ├── main.ps1 │ └── start.ps1 ├── sign.bat ├── tools/ │ ├── Invoke-Preprocessing.ps1 │ ├── autounattend.xml │ ├── devdocs-generator.md │ └── devdocs-generator.ps1 ├── windev.ps1 └── xaml/ └── inputXML.xaml