右键添加“用 Windows Terminal 在当前位置打开”
ContextMenu4WinTerminal.reg
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\terminal] @="Terminal Here" "Icon"="C:\\Windows\\System32\\cmd.exe,0" [HKEY_CLASSES_ROOT\Directory\Background\shell\terminal\command] @="C:\\Users\\usr\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe -d \"%V%\""
windows terminal settings.json
{ "profiles": { "defaults": { "useAcrylic": false, "acrylicOpacity": 0.7, "cursorColor": "#ffff24", "cursorShape": "filledBox" }, }, }
使用试用中的 Windows10 中部分不能通过 UI 设置的设置项
; theme.reg Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize] ; 主题: 0 暗黑、1 白色,下值为暗黑: "AppsUseLightTheme"=dword:00000000 ; 启用透明: "EnableTransparency"=dword:00000001 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] ; 合并任务栏按钮: 0 始终隐藏标签, 1:占满后隐藏, 2:从不合并 "TaskbarGlomLevel"=dword:00000001 ; 使用小任务栏按钮,下值为小按钮: "TaskbarSmallIcons"=dword:00000001
【快速打开】应用程序软件
去掉鼠标右键的“屏幕分辨率”“小工具”和“个性化”
删除注册表下边这几行即可,详见/1271.html
HKEY_CLASSES_ROOT\DesktopBackground\Shell\Display HKEY_CLASSES_ROOT\DesktopBackground\Shell\Gadgets HKEY_CLASSES_ROOT\DesktopBackground\Shell\Personalize
修改锁屏背景壁纸
1、进入注册表,找到: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background 将 OEMBackground 的DWORD值由 0 改为 1。 2、将到好的壁纸改名为 backgroundDefault.jpg 后放到这里(没有目录的话自己创建): C:\Windows\System32\oobe\info\backgrounds\ 注意:图片不要大于 256K。
本地化文件夹名称(1个文件夹2个名字)
使用「右键-属性-自定义-更改图标-确定」操作生成 desktop.ini 后将内容替换为:
[.ShellClassInfo] LocalizedResourceName=第2个名字
让 Windows 显示时间的方式与 Linux 同步
Reg add HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation /v RealTimeIsUniversal /t REG_DWORD /d 1 # 上边的命令可以让 Windows 把 CMOS 中的时间认作 UTC 时间 # Windows 默认把 CMOS 里的当作本地时间,Linux 默认把 CMOS 的时间当作 UTC 时间,非 0 时区会导致时间同一样 # GMT(Greenwish Mean Time 格林威治时间)是 UTC 的民间名称。GMT=UTC。 # 协调世界时(UTC,Coordinated Universal Time)别称:世界统一时间,世界标准时间国际协调时间, 协调世界时,又称世界统一时间,世界标准时间,国际协调时间。 # 如果想让 Linux 把 CMOS 中的当作本地时间,可以: vi /etc/default/rcS UTC=no