Windows Annoyances: Difference between revisions

From MK Wiki EN
Jump to navigation Jump to search
m (2 revisions imported)
 
(+Show seconds in task bar)
Line 6: Line 6:


HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz\NoRun --> 1
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz\NoRun --> 1
== Show seconds in task bar ==
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v ShowSecondsInSystemClock /t REG_DWORD /d 1
After this operation, the session has to be logged out.
=== Credits ===
* [https://www.howtogeek.com/325096/how-to-make-windows-10s-taskbar-clock-display-seconds/ How to Make Windows 10’s Taskbar Clock Display Seconds]
* [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/reg-add reg add | Microsoft Docs]


[[Category:Windows]]
[[Category:Windows]]

Revision as of 20:08, 22 September 2021

NoLowDiskSpaceChecks

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoLowDiskSpaceChecks --> 1

Disable Desktop Cleanup Wizard

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz\NoRun --> 1

Show seconds in task bar

reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v ShowSecondsInSystemClock /t REG_DWORD /d 1

After this operation, the session has to be logged out.

Credits