美文网首页
Win10安装记录与配置记录

Win10安装记录与配置记录

作者: 简单点的笨演员 | 来源:发表于2023-06-27 16:55 被阅读0次

    一、激活

    Win10激活 - 简书 (jianshu.com)

    二、配置

    1. 修改按键,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
    
    
    1. 开启休眠: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

    相关文章

      网友评论

          本文标题:Win10安装记录与配置记录

          本文链接:https://www.haomeiwen.com/subject/tvjnydtx.html