一、激活
二、配置
- 修改按键,Scroll Lock -> Caps Lock, Caps Lock -> Enter,将下面的代码保存为
reg
扩展名的文件,双击导入注册表:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,03,00,00,00,3A,00,46,00,1C,00,3A,00,00,00,00,00
- 开启休眠:
powercfg -h on
,并在电源里设置在关机菜单中出现。
三、安装软件
安装scoop的powershell脚本(管理员):
> Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time
> irm get.scoop.sh | iex
常用软件安装脚本:
# 安装VSCode
scoop install vscode
# 安装notepad++
scoop install notepadplusplus
# 安装notepad3
scoop install notepad3
# 安装微信
scoop install wechat
# 安装QQ
#scoop install qq
# 安装NodeJS
scoop install nodejs
# NodeJS设置国内源
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 安装TortoiseSVN
#scoop install tortoisesvn
# 安装everything
scoop install everything
安装Quicker:https://getquicker.net/
安装tortoisegit
网友评论