Author: Nico

Virtio guest tool

安装虚拟机缺失驱动可以去一下链接下载驱动 Index of /groups/virt/virtio-win/direct-downloads/archive-virtio

Nico Nico Published on 2025-06-27

Windows 多用户同时登录补丁

Disable your antivirus software Run Installer or Installer Black Add exclusion for "C:\Program Files\RDP Wrapper" folder Right-click W10Privacy.exe an

Nico Nico Published on 2025-06-26

C# 位操作

逐句讲解 Copy csharp 1if (boolValue) 2 buffer[offset] |= (byte)(1 << attr.Bit); 3else 4 buffer[offset] &= (byte)~(1 << attr.Bit); 5 详细理解 buffer[off

Nico Nico Published on 2025-06-26

Git常用指令

强制覆盖 git fetch -all git reset --hard origin/mastergit git pull 用户配置 git config --global user.name "nico" git config --global .email "nico.zhu@

Nico Nico Published on 2025-06-17

C#的LINQ写法,实现“按行列取平均”

对每一列取平均 using System; using System.Collections.Generic; using System.Linq; class Program { static void Main() { var x = new List<List

Nico Nico Published on 2025-05-23

Window 激活脚本

Windows 10 激活步骤 步骤 1:以管理员身份运行命令提示符 按下 Win + S 组合键,打开搜索栏。 输入 cmd,在搜索结果中找到命令提示符。 右键点击命令提示符图标,选择“以管理员身份运行”。 步骤 2:输入产品密钥 在命令提示符中输入以下命令,并按回车键: slmgr /ipk W

Nico Nico Published on 2025-05-23
Previous Next