chore: Update generated dev docs (#4301)

This commit is contained in:
Chris Titus
2026-04-02 15:17:58 -05:00
committed by GitHub
parent e0118aabe5
commit 838b0c1a1b
19 changed files with 45 additions and 18 deletions

View File

@@ -3,7 +3,7 @@ title: "Disable Legacy F8 Boot Recovery"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=100} ```json {filename="config/feature.json",linenos=inline,linenostart=110}
"WPFFeatureDisableLegacyRecovery": { "WPFFeatureDisableLegacyRecovery": {
"Content": "Disable Legacy F8 Boot Recovery", "Content": "Disable Legacy F8 Boot Recovery",
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.", "Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",

View File

@@ -3,7 +3,7 @@ title: "Enable Legacy F8 Boot Recovery"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=89} ```json {filename="config/feature.json",linenos=inline,linenostart=99}
"WPFFeatureEnableLegacyRecovery": { "WPFFeatureEnableLegacyRecovery": {
"Content": "Enable Legacy F8 Boot Recovery", "Content": "Enable Legacy F8 Boot Recovery",
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.", "Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",

View File

@@ -3,7 +3,7 @@ title: "Enable Daily Registry Backup Task 12.30am"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=72} ```json {filename="config/feature.json",linenos=inline,linenostart=82}
"WPFFeatureRegBackup": { "WPFFeatureRegBackup": {
"Content": "Enable Daily Registry Backup Task 12.30am", "Content": "Enable Daily Registry Backup Task 12.30am",
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.", "Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",

View File

@@ -3,7 +3,7 @@ title: "Windows Sandbox"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=111} ```json {filename="config/feature.json",linenos=inline,linenostart=121}
"WPFFeaturesSandbox": { "WPFFeaturesSandbox": {
"Content": "Windows Sandbox", "Content": "Windows Sandbox",
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.", "Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",

View File

@@ -3,7 +3,7 @@ title: "HyperV Virtualization"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=14} ```json {filename="config/feature.json",linenos=inline,linenostart=24}
"WPFFeatureshyperv": { "WPFFeatureshyperv": {
"Content": "HyperV Virtualization", "Content": "HyperV Virtualization",
"Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.", "Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",

View File

@@ -3,7 +3,7 @@ title: "Legacy Media (WMP, DirectPlay)"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=27} ```json {filename="config/feature.json",linenos=inline,linenostart=37}
"WPFFeatureslegacymedia": { "WPFFeatureslegacymedia": {
"Content": "Legacy Media (WMP, DirectPlay)", "Content": "Legacy Media (WMP, DirectPlay)",
"Description": "Enables legacy programs from previous versions of Windows.", "Description": "Enables legacy programs from previous versions of Windows.",

View File

@@ -3,7 +3,7 @@ title: "NFS - Network File System"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=53} ```json {filename="config/feature.json",linenos=inline,linenostart=63}
"WPFFeaturenfs": { "WPFFeaturenfs": {
"Content": "NFS - Network File System", "Content": "NFS - Network File System",
"Description": "Network File System (NFS) is a mechanism for storing files on a network.", "Description": "Network File System (NFS) is a mechanism for storing files on a network.",

View File

@@ -3,7 +3,7 @@ title: "Windows Subsystem for Linux"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=41} ```json {filename="config/feature.json",linenos=inline,linenostart=51}
"WPFFeaturewsl": { "WPFFeaturewsl": {
"Content": "Windows Subsystem for Linux", "Content": "Windows Subsystem for Linux",
"Description": "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting.", "Description": "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting.",

View File

@@ -0,0 +1,27 @@
---
title: "Configure NTP Server"
description: ""
---
```powershell {filename="functions/public/Invoke-WPFFixesNTPPool.ps1",linenos=inline,linenostart=1}
function Invoke-WPFFixesNTPPool {
<#
.SYNOPSIS
Configures Windows to use pool.ntp.org for NTP synchronization
.DESCRIPTION
Replaces the default Windows NTP server (time.windows.com) with
pool.ntp.org for improved time synchronization accuracy and reliability.
#>
Start-Service w32time
w32tm /config /update /manualpeerlist:"pool.ntp.org,0x8" /syncfromflags:MANUAL
Restart-Service w32time
w32tm /resync
Write-Host "================================="
Write-Host "-- NTP Configuration Complete ---"
Write-Host "================================="
}
```

View File

@@ -3,7 +3,7 @@ title: "Computer Management"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=186} ```json {filename="config/feature.json",linenos=inline,linenostart=196}
"WPFPanelComputer": { "WPFPanelComputer": {
"Content": "Computer Management", "Content": "Computer Management",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "Control Panel"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=175} ```json {filename="config/feature.json",linenos=inline,linenostart=185}
"WPFPanelControl": { "WPFPanelControl": {
"Content": "Control Panel", "Content": "Control Panel",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "Network Connections"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=197} ```json {filename="config/feature.json",linenos=inline,linenostart=207}
"WPFPanelNetwork": { "WPFPanelNetwork": {
"Content": "Network Connections", "Content": "Network Connections",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "Power Panel"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=208} ```json {filename="config/feature.json",linenos=inline,linenostart=218}
"WPFPanelPower": { "WPFPanelPower": {
"Content": "Power Panel", "Content": "Power Panel",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "Printer Panel"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=219} ```json {filename="config/feature.json",linenos=inline,linenostart=229}
"WPFPanelPrinter": { "WPFPanelPrinter": {
"Content": "Printer Panel", "Content": "Printer Panel",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "Region"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=230} ```json {filename="config/feature.json",linenos=inline,linenostart=240}
"WPFPanelRegion": { "WPFPanelRegion": {
"Content": "Region", "Content": "Region",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "Windows Restore"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=241} ```json {filename="config/feature.json",linenos=inline,linenostart=251}
"WPFPanelRestore": { "WPFPanelRestore": {
"Content": "Windows Restore", "Content": "Windows Restore",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "Sound Settings"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=252} ```json {filename="config/feature.json",linenos=inline,linenostart=262}
"WPFPanelSound": { "WPFPanelSound": {
"Content": "Sound Settings", "Content": "Sound Settings",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "System Properties"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=263} ```json {filename="config/feature.json",linenos=inline,linenostart=273}
"WPFPanelSystem": { "WPFPanelSystem": {
"Content": "System Properties", "Content": "System Properties",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",

View File

@@ -3,7 +3,7 @@ title: "Time and Date"
description: "" description: ""
--- ---
```json {filename="config/feature.json",linenos=inline,linenostart=274} ```json {filename="config/feature.json",linenos=inline,linenostart=284}
"WPFPanelTimedate": { "WPFPanelTimedate": {
"Content": "Time and Date", "Content": "Time and Date",
"category": "Legacy Windows Panels", "category": "Legacy Windows Panels",