Skip to content

Docs, notes & scripts on tweaks I often like to apply to my machines

Notifications You must be signed in to change notification settings

Anomalyzero/schwach-tweaks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

schwach-tweaks

Docs, notes & scripts on tweaks I often apply to machines

Windows 10 Only

Show Seconds on System Clock

NOTE: This does not take effect until the user fully signs out and back in

$RegPath='HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
$RegPropName='ShowSecondsInSystemClock'
$RegPropValue='1'

# Create the key if it does not exist
If (-NOT (Test-Path $RegPath)) {
    New-Item -Path $RegPath -Force | Out-Null
}

# Now set the value
New-ItemProperty -Path $RegPath -Name $RegPropName -Value $RegPropValue -PropertyType DWORD -Force

About

Docs, notes & scripts on tweaks I often like to apply to my machines

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published