[Win10] to the second clock accuracy

[Win10] to the second clock accuracy

Foreword

Want bottom right corner of the desktop clock "xx: xx: xx" accurate to the second, you can use free open source software green the Dism ++ , can also be from the software code read method: use the registry to achieve.

step

  1. Into the Registry Editor: shortcut keys "Win + R", type "regedit" and press ENTER.
  2. Find "HKEY_CURRENT_USER \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Advanced" (you can check the "address bar" in the "View", and then paste the address in the address bar and press Enter.
  3. In this new directory "DWORD Value." Named "ShowSecondsInSystemClock", the value "1."
  4. Restart Explorer: In Task Manager, right "Windows Explorer", click "Restart." Shutdown can be.
  5. Want to change back to the original can set the value to "0", the value can be deleted directly.

Section Screenshot

Registry
Task Manager Resource Manager

Follow-up

This operation can try to write a .bat file.

Reference material

GitHub open source project - the Dism ++ :

<Item Type="CheckBox" Name="#任务栏时钟精确到秒(by Luupw3d)">
    <Applicable>
        <OSVersion Compare=">=">10.0</OSVersion>
    </Applicable>
    <Current>
        <State>
        <Applicable>
            <RegExist Key="HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" Value="ShowSecondsInSystemClock" Type="REG_DWORD" Data="1"/>
        </Applicable>
        </State>
        <True>
        <Activate Restart="Explorer">
            <RegWrite Key="HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" Value="ShowSecondsInSystemClock" Type="REG_DWORD" Data="1"/>
        </Activate>
        </True>
        <False>
        <Activate Restart="Explorer">
            <RegDelete Key="HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" Value="ShowSecondsInSystemClock"/>
        </Activate>
        </False>
    </Current>
    <Default>
        <State>
        <Applicable>
            <RegExist Key="HKEY_USERS\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" Value="ShowSecondsInSystemClock" Type="REG_DWORD" Data="1"/>
        </Applicable>
        </State>
        <True>
        <Activate>
            <RegWrite Key="HKEY_USERS\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" Value="ShowSecondsInSystemClock" Type="REG_DWORD" Data="1"/>
        </Activate>
        </True>
        <False>
        <Activate>
            <RegDelete Key="HKEY_USERS\DEFAULT\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" Value="ShowSecondsInSystemClock"/>
        </Activate>
        </False>
    </Default>
</Item>

Blog layout log Markdown

This blog last reference code labeling issues because, in the garden blog platform can only use backticks * 3 * 2 to pack, not with wavy lines; and in the software SimpleNote but in both ages. I with customary wavy lines * 3 * 2 lines of code to the packet reference backticks 1 * 2 * to coat small code blocks. In these two platforms with greater than a reference number to the code are typeset disorder.

Incidentally Park found in the blog platform sticky sticky hyperlink to the full (contains " HTTP: // "), otherwise it will become like this ; SimpleNote is not the problem. After getting used to stick the whole point of it.

And do not add a space at the end of the sentence in the garden blog platform * 2 will be able to wrap, SimpleNote very strict Oh, I think I'll get used to it long and short line. After all, is not the case the first line indent and space insignificant, "p tag" (carriage return * 2) works better than "br tag" (* 2 spaces).

Blog garden and Simplenote pictures could not see the text content, but can do mouseover text, speechless, okay.

Taking into account the first line Simplenote is the title rather than the content, or the blog name as a title bar.

Guess you like

Origin www.cnblogs.com/esirn/p/11580492.html