diff --git a/docs/content/dev/features/Fixes/NTPPool.md b/docs/content/dev/features/Fixes/NTPPool.md index fd250a2d..7da6723c 100644 --- a/docs/content/dev/features/Fixes/NTPPool.md +++ b/docs/content/dev/features/Fixes/NTPPool.md @@ -10,7 +10,7 @@ function Invoke-WPFFixesNTPPool { Configures Windows to use pool.ntp.org for NTP synchronization .DESCRIPTION - Replaces the default Windows NTP server (time.windows.com) with + Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability. #> diff --git a/functions/public/Invoke-WPFFixesNTPPool.ps1 b/functions/public/Invoke-WPFFixesNTPPool.ps1 index 64588b46..f858879f 100644 --- a/functions/public/Invoke-WPFFixesNTPPool.ps1 +++ b/functions/public/Invoke-WPFFixesNTPPool.ps1 @@ -4,7 +4,7 @@ function Invoke-WPFFixesNTPPool { Configures Windows to use pool.ntp.org for NTP synchronization .DESCRIPTION - Replaces the default Windows NTP server (time.windows.com) with + Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability. #> diff --git a/functions/public/Invoke-WinUtilRemoveEdge.ps1 b/functions/public/Invoke-WinUtilRemoveEdge.ps1 index 173afe9f..def31d7f 100644 --- a/functions/public/Invoke-WinUtilRemoveEdge.ps1 +++ b/functions/public/Invoke-WinUtilRemoveEdge.ps1 @@ -1,6 +1,6 @@ function Invoke-WinUtilRemoveEdge { $Path = Get-ChildItem -Path "$Env:ProgramFiles (x86)\Microsoft\Edge\Application\*\Installer\setup.exe" | Select-Object -First 1 - + New-Item -Path "$Env:SystemRoot\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\MicrosoftEdge.exe" -Force Start-Process -FilePath $Path -ArgumentList '--uninstall --system-level --force-uninstall --delete-profile' -Wait