2022-10-18 08:08:23 -05:00
{
2023-05-09 13:14:27 -05:00
"WPFFeaturesdotnet" : {
2024-02-02 16:22:08 -06:00
"Content" : "All .Net Framework (2,3,4)" ,
"Description" : ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications." ,
"category" : "Features" ,
"panel" : "1" ,
2023-05-09 13:14:27 -05:00
"feature" : [
"NetFx4-AdvSrvs" ,
"NetFx3"
],
2024-08-07 17:55:23 +02:00
"InvokeScript" : [],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/dotnet"
2023-05-09 13:14:27 -05:00
},
2026-04-02 13:17:27 -07:00
"WPFFixesNTPPool" : {
"Content" : "Configure NTP Server" ,
"Description" : "Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability." ,
"category" : "Fixes" ,
"panel" : "1" ,
"Type" : "Button" ,
"ButtonWidth" : "300" ,
"function" : "Invoke-WPFFixesNTPPool" ,
"link" : "https://winutil.christitus.com/dev/features/fixes/ntppool"
},
2023-05-09 13:14:27 -05:00
"WPFFeatureshyperv" : {
2024-02-02 16:22:08 -06:00
"Content" : "HyperV Virtualization" ,
"Description" : "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines." ,
"category" : "Features" ,
"panel" : "1" ,
2023-05-09 13:14:27 -05:00
"feature" : [
2026-01-07 22:58:12 +02:00
"Microsoft-Hyper-V-All"
2023-05-09 13:14:27 -05:00
],
"InvokeScript" : [
2026-01-07 22:58:12 +02:00
"bcdedit /set hypervisorschedulertype classic"
2024-08-07 17:55:23 +02:00
],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/hyperv"
2023-05-09 13:14:27 -05:00
},
"WPFFeatureslegacymedia" : {
2024-02-02 16:22:08 -06:00
"Content" : "Legacy Media (WMP, DirectPlay)" ,
2026-03-02 20:07:54 +01:00
"Description" : "Enables legacy programs from previous versions of Windows." ,
2024-02-02 16:22:08 -06:00
"category" : "Features" ,
"panel" : "1" ,
2023-05-09 13:14:27 -05:00
"feature" : [
"WindowsMediaPlayer" ,
"MediaPlayback" ,
"DirectPlay" ,
"LegacyComponents"
],
2024-08-07 17:55:23 +02:00
"InvokeScript" : [],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/legacymedia"
2023-05-09 13:14:27 -05:00
},
"WPFFeaturewsl" : {
2024-02-02 16:22:08 -06:00
"Content" : "Windows Subsystem for Linux" ,
"Description" : "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting." ,
"category" : "Features" ,
"panel" : "1" ,
2023-05-09 13:14:27 -05:00
"feature" : [
"VirtualMachinePlatform" ,
"Microsoft-Windows-Subsystem-Linux"
],
2024-08-07 17:55:23 +02:00
"InvokeScript" : [],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/wsl"
2023-05-09 13:14:27 -05:00
},
"WPFFeaturenfs" : {
2024-02-02 16:22:08 -06:00
"Content" : "NFS - Network File System" ,
"Description" : "Network File System (NFS) is a mechanism for storing files on a network." ,
"category" : "Features" ,
"panel" : "1" ,
2023-05-09 13:14:27 -05:00
"feature" : [
"ServicesForNFS-ClientOnly" ,
"ClientForNFS-Infrastructure" ,
"NFS-Administration"
],
"InvokeScript" : [
2024-02-03 11:42:14 -06:00
"nfsadmin client stop" ,
"Set-ItemProperty -Path 'HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default' -Name 'AnonymousUID' -Type DWord -Value 0" ,
"Set-ItemProperty -Path 'HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default' -Name 'AnonymousGID' -Type DWord -Value 0" ,
"nfsadmin client start" ,
"nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i"
2024-08-07 17:55:23 +02:00
],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/nfs"
2024-01-15 11:32:19 -06:00
},
"WPFFeatureRegBackup" : {
2024-02-02 16:22:08 -06:00
"Content" : "Enable Daily Registry Backup Task 12.30am" ,
"Description" : "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803." ,
"category" : "Features" ,
"panel" : "1" ,
2024-08-07 17:55:23 +02:00
"feature" : [],
2024-01-15 11:32:19 -06:00
"InvokeScript" : [
"
New-ItemProperty -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager' -Name 'EnablePeriodicBackup' -Type DWord -Value 1 -Force
New-ItemProperty -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager' -Name 'BackupCount' -Type DWord -Value 2 -Force
$action = New-ScheduledTaskAction -Execute 'schtasks' -Argument '/run /i /tn \"\\Microsoft\\Windows\\Registry\\RegIdleBackup\"'
$trigger = New-ScheduledTaskTrigger -Daily -At 00:30
Register-ScheduledTask -Action $action -Trigger $trigger -TaskName 'AutoRegBackup' -Description 'Create System Registry Backups' -User 'System'
"
2024-08-07 17:55:23 +02:00
],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/regbackup"
2024-01-15 11:32:19 -06:00
},
"WPFFeatureEnableLegacyRecovery" : {
2024-02-02 16:22:08 -06:00
"Content" : "Enable Legacy F8 Boot Recovery" ,
"Description" : "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes." ,
"category" : "Features" ,
"panel" : "1" ,
2024-08-07 17:55:23 +02:00
"feature" : [],
2024-01-15 11:32:19 -06:00
"InvokeScript" : [
2026-01-08 20:34:09 +02:00
"bcdedit /set bootmenupolicy legacy"
2024-08-07 17:55:23 +02:00
],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/enablelegacyrecovery"
2024-01-15 11:32:19 -06:00
},
"WPFFeatureDisableLegacyRecovery" : {
2024-02-02 16:22:08 -06:00
"Content" : "Disable Legacy F8 Boot Recovery" ,
"Description" : "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes." ,
"category" : "Features" ,
"panel" : "1" ,
2024-08-07 17:55:23 +02:00
"feature" : [],
2024-01-15 11:32:19 -06:00
"InvokeScript" : [
2026-02-12 20:33:11 +00:00
"bcdedit /set bootmenupolicy standard"
2024-08-07 17:55:23 +02:00
],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/disablelegacyrecovery"
2024-02-02 16:22:08 -06:00
},
2024-08-07 17:55:23 +02:00
"WPFFeaturesSandbox" : {
2024-02-02 16:22:08 -06:00
"Content" : "Windows Sandbox" ,
2026-01-07 23:06:18 +02:00
"Description" : "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation." ,
2024-02-02 16:22:08 -06:00
"category" : "Features" ,
"panel" : "1" ,
2026-01-07 23:06:18 +02:00
"feature" : [
"Containers-DisposableClientVM"
],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/sandbox"
2024-02-02 16:22:08 -06:00
},
"WPFFeatureInstall" : {
"Content" : "Install Features" ,
"category" : "Features" ,
"panel" : "1" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WPFFeatureInstall" ,
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/features/install"
2024-02-02 16:22:08 -06:00
},
"WPFPanelAutologin" : {
"Content" : "Set Up Autologin" ,
"category" : "Fixes" ,
"panel" : "1" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WPFPanelAutologin" ,
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/fixes/autologin"
2024-02-02 16:22:08 -06:00
},
"WPFFixesUpdate" : {
"Content" : "Reset Windows Update" ,
"category" : "Fixes" ,
"panel" : "1" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WPFFixesUpdate" ,
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/fixes/update"
2024-02-02 16:22:08 -06:00
},
"WPFFixesNetwork" : {
"Content" : "Reset Network" ,
"category" : "Fixes" ,
"panel" : "1" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WPFFixesNetwork" ,
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/fixes/network"
2024-02-02 16:22:08 -06:00
},
"WPFPanelDISM" : {
"Content" : "System Corruption Scan" ,
"category" : "Fixes" ,
"panel" : "1" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WPFSystemRepair" ,
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/fixes/dism"
2024-02-02 16:22:08 -06:00
},
"WPFFixesWinget" : {
"Content" : "WinGet Reinstall" ,
"category" : "Fixes" ,
"panel" : "1" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WPFFixesWinget" ,
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/fixes/winget"
2024-02-02 16:22:08 -06:00
},
2025-08-01 17:40:35 +02:00
"WPFPanelControl" : {
"Content" : "Control Panel" ,
2024-02-02 16:22:08 -06:00
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"control"
],
2025-08-01 17:40:35 +02:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/control"
2024-02-02 16:22:08 -06:00
},
2025-08-01 17:40:35 +02:00
"WPFPanelComputer" : {
"Content" : "Computer Management" ,
2024-02-02 16:22:08 -06:00
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"compmgmt.msc"
],
2025-08-01 17:40:35 +02:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/computer"
2024-02-02 16:22:08 -06:00
},
2025-08-01 17:40:35 +02:00
"WPFPanelNetwork" : {
"Content" : "Network Connections" ,
2025-06-26 20:23:33 +02:00
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
"Type" : "Button" ,
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"ncpa.cpl"
],
2025-08-01 17:40:35 +02:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/network"
2025-06-26 20:23:33 +02:00
},
2025-08-01 17:40:35 +02:00
"WPFPanelPower" : {
2024-02-02 16:22:08 -06:00
"Content" : "Power Panel" ,
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"powercfg.cpl"
],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/power"
2024-02-02 16:22:08 -06:00
},
2025-08-01 17:40:35 +02:00
"WPFPanelPrinter" : {
"Content" : "Printer Panel" ,
2024-02-02 16:22:08 -06:00
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"Start-Process 'shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A}'"
],
2025-08-01 17:40:35 +02:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/printer"
2024-02-02 16:22:08 -06:00
},
2025-08-01 17:40:35 +02:00
"WPFPanelRegion" : {
"Content" : "Region" ,
2024-02-02 16:22:08 -06:00
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"intl.cpl"
],
2025-08-01 17:40:35 +02:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/region"
2024-02-02 16:22:08 -06:00
},
2025-10-06 09:51:48 -05:00
"WPFPanelRestore" : {
"Content" : "Windows Restore" ,
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
"Type" : "Button" ,
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"rstrui.exe"
],
2025-10-06 09:51:48 -05:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/restore"
},
2025-08-01 17:40:35 +02:00
"WPFPanelSound" : {
"Content" : "Sound Settings" ,
2024-09-10 03:14:22 +02:00
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
"Type" : "Button" ,
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"mmsys.cpl"
],
2026-02-12 20:33:11 +00:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/sound"
2024-09-10 03:14:22 +02:00
},
2025-08-01 17:40:35 +02:00
"WPFPanelSystem" : {
2024-02-02 16:22:08 -06:00
"Content" : "System Properties" ,
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"sysdm.cpl"
],
2025-05-05 18:21:46 +03:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/system"
2024-02-02 16:22:08 -06:00
},
2025-08-01 17:40:35 +02:00
"WPFPanelTimedate" : {
"Content" : "Time and Date" ,
2024-02-02 16:22:08 -06:00
"category" : "Legacy Windows Panels" ,
"panel" : "2" ,
2024-07-08 22:59:58 +03:00
"Type" : "Button" ,
2024-08-07 17:55:23 +02:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"InvokeScript" : [
"timedate.cpl"
],
2025-08-01 17:40:35 +02:00
"link" : "https://winutil.christitus.com/dev/features/legacy-windows-panels/timedate"
2025-03-19 20:00:30 +01:00
},
2024-11-06 16:46:56 -08:00
"WPFWinUtilInstallPSProfile" : {
2024-09-10 21:05:55 +02:00
"Content" : "Install CTT PowerShell Profile" ,
2026-02-10 22:10:04 +02:00
"category" : "Powershell Profile Powershell 7+ Only" ,
2024-09-10 21:05:55 +02:00
"panel" : "2" ,
"Type" : "Button" ,
2026-02-12 20:33:11 +00:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WinUtilInstallPSProfile" ,
2026-02-12 20:33:11 +00:00
"link" : "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/installpsprofile"
2024-11-06 16:46:56 -08:00
},
"WPFWinUtilUninstallPSProfile" : {
"Content" : "Uninstall CTT PowerShell Profile" ,
2026-02-10 22:10:04 +02:00
"category" : "Powershell Profile Powershell 7+ Only" ,
2024-11-06 16:46:56 -08:00
"panel" : "2" ,
"Type" : "Button" ,
2026-02-12 20:33:11 +00:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WinUtilUninstallPSProfile" ,
2026-02-12 20:33:11 +00:00
"link" : "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/uninstallpsprofile"
2024-10-02 00:50:45 +05:30
},
"WPFWinUtilSSHServer" : {
"Content" : "Enable OpenSSH Server" ,
"category" : "Remote Access" ,
"panel" : "2" ,
"Type" : "Button" ,
2026-02-12 20:33:11 +00:00
"ButtonWidth" : "300" ,
2026-02-22 17:19:04 -06:00
"function" : "Invoke-WPFSSHServer" ,
2026-02-12 20:33:11 +00:00
"link" : "https://winutil.christitus.com/dev/features/remote-access/sshserver"
2024-10-07 13:41:38 -07:00
}
2024-11-07 19:14:46 +01:00
}