diff --git a/Win10.psm1 b/Win10.psm1 index be8e5ac1..1a6f7ccc 100644 --- a/Win10.psm1 +++ b/Win10.psm1 @@ -1998,6 +1998,16 @@ Function EnableF1HelpKey { Remove-Item "HKCU:\Software\Classes\TypeLib\{8cec5860-07a1-11d9-b15e-000d56bfe6ee}\1.0\0" -Recurse -ErrorAction SilentlyContinue } +# Show Windows build number and Windows edition (Home/Pro/Enterprise) from bottom right of desktop +Function ShowBuildNumberOnDesktop { + Set-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "PaintDesktopVersion" -Type DWord -Value 1 +} + +# Remove Windows build number and Windows edition (Home/Pro/Enterprise) from bottom right of desktop +Function HideBuildNumberOnDesktop { + Set-ItemProperty -Path "HKCU:\Control Panel\Desktop" -Name "PaintDesktopVersion" -Type DWord -Value 0 +} + ########## #endregion UI Tweaks ##########