windows系统

windows镜像 微软官方镜像 英文: https://www.microsoft.com/en-us/software-download/windows11 简体中文: https://www.microsoft.com/zh-cn/software-download/windows11 不要选家庭版,选 适用于 x64 设备的多版本 ISO 建议安装专业版 创建 USB 启动盘 软碟通 https://www.ultraiso.net/ Rufus[推荐] https://rufus.ie/zh/ Etcher https://etcher.balena.io/ Ventoy https://www.ventoy.net/cn/index.html 安装windows时,选择【针对个人使用设置】会强制登录微软账户。选择另一个【注册工作或学校账户】- 登录选项 - 改为域加入。跳过登录微软账户。 PE 镜像 https://www.hirensbootcd.org/ 可重置 Windows 密码 激活windows/office http://www.yishimei.cn/network/319.html 各个版本系统和 office 都能激活,激活时需要关闭防火墙 https://kms.cx/ 【推荐】 安全,官方支持的kms激活方式,激活半年,无限续 https://github.com/massgravel/Microsoft-Activation-Scripts 开源激活脚本 windows KMS 客户端激活和产品密钥【官方激活密钥】,官方支持使用 KMS 激活,公开的激活密钥 https://learn.microsoft.com/zh-cn/windows-server/get-started/kms-client-activation-keys 查询激活状态 slmgr /xpr 查询激活详细信息 slmgr /dlv office 基于 KMS的 GVLK https://learn.microsoft.com/zh-cn/office/volume-license-activation/gvlks 查看 office激活状态 cd C:\Program Files\Microsoft Office\Office16 cscript ospp.vbs /dstatus 安装office 官方镜像 office部署工具 https://www.microsoft.com/en-us/download/details.aspx?id=49117 office自定义工具 https://config.office.com/deploymentsettings 下载office部署工具 在office自定义工具页面,选择批量许可证的office【例如:Office 专业增强版 2019 - 批量许可证】导出配置,重命名为config,文件中包含官方激活密钥 新建文件夹office,运行office部署工具,安装到此文件夹,将config.xml 也放到此文件夹下 下载命令 setup /download config.xml 安装命令 setup /configure config.xml 使用kms.cx激活系统安装批量许可证的office安装完就是激活的。 ...

July 21, 2025 · 1 min · zhangxiaofeng05

RustDesk

开源远程控制软件,客户端是开源的。 https://github.com/rustdesk/rustdesk 可直接使用 rustdesk 默认中继服务器连接其它客户端。 自托管 搭建自托管服务器 官方文档: https://rustdesk.com/docs/zh-cn/self-host/rustdesk-server-oss/ 推荐直接使用 Docker Compose 部署 https://rustdesk.com/docs/zh-cn/self-host/rustdesk-server-oss/docker/ 客户端配置 官方文档: https://rustdesk.com/docs/zh-cn/self-host/client-configuration/ ID 服务器: IP:21116 中继服务器: IP:21117 API服务器: http://IP:21118 Key: ed25519公钥(自托管服务器,docker compose运行路径的相对路径 data/id_ed25519.pub) 配置一个服务器配置,可导出配置,导入到其它客户端。 局域网 可通过 IP 直接访问

July 21, 2025 · 1 min · zhangxiaofeng05

git 配置

github git https://docs.github.com/zh/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent vim ~/.ssh/config Host github.com User git Hostname ssh.github.com PreferredAuthentications publickey IdentityFile ~/.ssh/id_ed25519 Port 443 测试连接ssh -T git@github.com https://stackoverflow.com/questions/15589682/ssh-connect-to-host-github-com-port-22-connection-timed-out ssh-socket代理 访问GitHub慢,下载慢的解决办法。 创建config文件 vi ~/.ssh/config # 当然你也可以手动在 C:\Users\Username\.ssh 下创建 config 文件 文件写入如下内容 # 这里的 -a none 是 NO-AUTH 模式,参见 https://bitbucket.org/gotoh/connect/wiki/Home 中的 More detail 一节 ProxyCommand connect -S 127.0.0.1:1080 -a none %h %p Host github.com User git Port 22 Hostname github.com # 注意修改路径为你的路径 IdentityFile "C:\Users\zhang\.ssh\id_rsa" TCPKeepAlive yes Host ssh.github.com User git Port 443 Hostname ssh.github.com # 注意修改路径为你的路径 IdentityFile "C:\Users\zhang\.ssh\id_rsa" TCPKeepAlive yes 参考文章: https://upupming.site/2019/05/09/git-ssh-socks-proxy/ ...

June 1, 2020 · 1 min · zhangxiaofeng05