How to Show Seconds in System Tray Clock Windows 11?

5+ Easy Methods to display seconds in the Default System Tray Clock in Windows 11!

Have you ever been in a situation where every second counts, like timing a specific event or needing to synchronize actions down to the second? As a web app developer, I often work on multiple web applications hosted online. Recently, while updating the working algorithm for removing backgrounds using AI in one of my web apps, IMGCentury, which compresses images online without hosting them on the server, I needed to host some images temporarily on the web server. After processing, the server needed to remove these images using a cron job. I set the cron job to run every 45 seconds.

Since I use Visual Studio Code to connect with the server on my Windows 11 PC, I realized that the default clock system does not display seconds. However, I needed to see the seconds to calibrate whether the cron job was running correctly. So, I did some research and found several methods to show seconds in system tray clock on a Windows 11 PC.

1: Using Windows Settings to Display Seconds in System tray Clock:

This is the quickest and easiest method to enable seconds in the system clock. This method does not require any advanced knowledge to enable it.

Opening Windows Settings using Winkey + I
Opening Windows Settings using Winkey + I
Date & time option in Windows Settings
Date & time option in Windows Settings
Show time and date in the system tray option
Show time and date in the system tray option
Seconds enabled in the system tray clock using Windows Settings
Seconds enabled in the system tray clock using Windows Settings

As you can see in the above image, the seconds started displaying in the system tray clock after enabling the option Show seconds in the system tray clock in Windows settings. Check out the check box to disable the displaying seconds in the system tray clock.

2: Using PowerShell Command to Display Seconds in System Tray Clock:

Opening PowerShell as Admin Mode
Opening PowerShell as Admin Mode
PowerShell script to display seconds in system tray clock
PowerShell script to display seconds in system tray clock

As you can see in the above image, the seconds started displaying in the system tray clock after running the above script. If you don’t want to display the seconds then replace the -Value 1 with -Value 0 in the PowerShell script. The full command to disable the displaying of seconds in system tray clock is Set-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' -Name 'ShowSecondsInSystemClock' -Value 0

3: Display Seconds in System Tray Clock using Registry Editor:

This method requires some technical knowledge. If you are a Windows geek and ready to try the hard way, then follow the upcoming steps.

Opening Registry Editor using Run Window
Opening Registry Editor using Run Window
Navigate to Windows Registry Editor Directory
Navigate to Windows Registry Editor Directory
Modifying Registry File DWORD 32-bit Value to 1 displays seconds in system tray clock.
Modifying Registry File DWORD 32-bit Value to 1 displays seconds in system tray clock.

If your Windows misses the registry file? and then follow the steps.

4: Using Command Prompt to Display Seconds in System Tray Clock:

This is a straightforward method; you simply need to copy the command and execute it to enable seconds.

Open Command Prompt using Run as Administrator
Open Command Prompt using Run as Administrator
Command prompt command to display seconds in clock time
Command prompt command to display seconds in clock time

The above explains using both the commands to enable and disable the seconds in the clock time located in the system tray.

5: Using 3rd Party tool:

You can also use third-party applications like ElevenClock to customize the clock on your taskbar to show seconds.

ElevenClock Logo
  • Visit the official GitHub page and download the tool.
  • Install ElevenClock and customize it to show seconds on your taskbar.
  • No further steps required, just check in the box of Show Seconds in Clock option and close the application.

If you don’t like the application, i recommened you to uninstall the above application.

6: Using Task Scheduler (Most Unconventional Method):

This method is one of the most unconventional methods to display seconds in the system clock because it might contain multiple steps, and even after doing the steps, this method may not work properly. However, I mentioned this method because an uncommon method is available to do such a small task. If you are interested, proceed to the steps below.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]“ShowSecondsInSystemClock”=dword:00000001
Task Scheduler Window
Task Scheduler Window
Creating a New Task
Creating a New Task
Adding Basic Task Details
Adding Basic Task Details
Setting up Triggers function
Setting up Triggers function
Setting up Actions
Setting up Actions
Providing Essential Settings Information
Providing Essential Settings Information

Once all steps are done, you can view the created task in the Task Scheduler Library option listed on the homepage of the Task Scheduler window.

Display all currently running tasks
Display all currently running tasks

You can close the application now and restart your PC to see that the seconds have been enabled in your default system tray clock. Otherwise, simply right-click the task and click the Run option to run the task immediately, which will eventually display the seconds in the time.

Testing the Created task in Task Scheduler
Testing the Created task in Task Scheduler

Conclusion:

I have tried to cover all the methods as thoroughly as possible. From newbie to pro, this guide will help you learn new ways to display seconds in the default clock located at the right end of the system tray. All the methods are tested and attached with proper screenshots for your easy understanding. If you have any queries or issues related to the above methods or the whole topic, feel free to comment below. Find more interesting tutorials on WinSides. Happy Coding.

Exit mobile version