image frame

博客

知足常乐

49.Win10时钟显示秒

打开Win10时钟的秒显示

1
taskkill /F /IM explorer.exe & reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowSecondsInSystemClock /t REG_DWORD /d 1 /f & start %windir%\explorer.exe

关闭Win10时钟的秒显示

1
taskkill /F /IM explorer.exe & reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowSecondsInSystemClock /f & start %windir%\explorer.exe

48.去除桌面图标小箭头和盾牌

去除桌面图标小箭头和盾牌:

1
taskkill /F /IM explorer.exe & reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /t REG_SZ /d %windir%\system32\imageres.dll,197 /f & reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 77 /t REG_SZ /d %windir%\system32\imageres.dll,197 /f & attrib -s -r -h %userprofile%\AppData\Local\iconcache.db & del %userprofile%\AppData\Local\iconcache.db /f /q & start %windir%\explorer.exe

重新显示桌面图标小箭头和盾牌:

1
taskkill /F /IM explorer.exe & reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /f & attrib -s -r -h %userprofile%\AppData\Local\iconcache.db & del %userprofile%\AppData\Local\iconcache.db /f /q & start %windir%\explorer.exe

46.Win11右键改回经典样式

经典样式:

1
taskkill /F /IM explorer.exe & reg add "HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /t REG_SZ /d "" /f & start %windir%\explorer.exe

原版样式:

1
taskkill /F /IM explorer.exe & reg delete "HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f & start %windir%\explorer.exe
  • Copyrights © 2023-2024 kukusun