<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>红客联盟 - 由08小组运营 - Windows</title>
    <link>https://www.ihonker.com/forum-67-1.html</link>
    <description>Latest 20 threads of Windows</description>
    <copyright>Copyright(C) 红客联盟 - 由08小组运营</copyright>
    <generator>Discuz! Board by Discuz! Team</generator>
    <lastBuildDate>Mon, 21 Sep 2026 09:56:24 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.ihonker.com/static/image/common/logo_88_31.gif</url>
      <title>红客联盟 - 由08小组运营</title>
      <link>https://www.ihonker.com/</link>
    </image>
    <item>
      <title>Windows 11 安装 WSL2 与 WSLg 并验证 GUI 程序</title>
      <link>https://www.ihonker.com/thread-36206-1-1.html</link>
      <description><![CDATA[WSL（Windows Subsystem for Linux）是 Windows 中用于运行 Linux 环境的子系统，目标是让开发者无需传统虚拟机或双启动，就能在 Windows 上使用 GNU/Linux 的命令行工具、实用工具和应用程序。WSL2 则是该体系结构的一次重构版本，基于虚拟化技术和 Linux 内核，主要提 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Fri, 18 Sep 2026 06:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Windows虚拟内存解决OOM：页面文件设置与诊断实战指南</title>
      <link>https://www.ihonker.com/thread-35997-1-1.html</link>
      <description><![CDATA[在开发机上遇到“内存不足”“Out of Memory”、Docker容器被强杀、Chrome标签页崩溃，很多情况下并非物理内存真的耗尽，而是Windows的提交内存（Committed Memory）用到了上限。提交内存由物理内存与页面文件（pagefile.sys）共同组成，页面文件就是虚拟内存的磁盘载体 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Fri, 04 Sep 2026 04:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Windows下Electron桌面待办应用开发实践：从环境配置到IPC</title>
      <link>https://www.ihonker.com/thread-35882-1-1.html</link>
      <description><![CDATA[Electron 在 Windows 桌面开发中一直有稳定的使用场景：它把 Chromium 渲染引擎和 Node.js 运行时打包进应用，让开发者能用 HTML、CSS 和 JavaScript 写桌面软件，同时通过主进程调用文件系统、窗口、菜单、通知等系统能力。对于第一次接触 Electron 的开发者，容易陷入 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Wed, 26 Aug 2026 06:00:01 +0000</pubDate>
    </item>
    <item>
      <title>Windows终端中文乱码排查：代码页与UTF-8修复方案</title>
      <link>https://www.ihonker.com/thread-35859-1-1.html</link>
      <description><![CDATA[在 Windows 下用 PowerShell 处理中文时，管道输出乱码是常见的老问题。很多用户升级到 PowerShell 7 后依然遇到，原因往往不在版本，而在于系统代码页仍停留在 GBK。本文从诊断、修复到原理，完整梳理这条链路，帮助你一次性解决终端中文乱码。

一、30 秒诊断当前环境 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Tue, 25 Aug 2026 02:00:03 +0000</pubDate>
    </item>
    <item>
      <title>Win11排查端口占用：netstat与PowerShell命令实战</title>
      <link>https://www.ihonker.com/thread-35815-1-1.html</link>
      <description><![CDATA[Win11下部署或调试应用时，端口被占用是常见问题。系统只提示端口被占用，却不说哪个进程，这时需要自己定位。本文整理了三种在Win11中查找指定端口占用者的方法：资源监视器、PowerShell和netstat命令。

方法一：资源监视器图形查找
点击开始菜单搜索“资源监视器”并 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Fri, 21 Aug 2026 06:00:00 +0000</pubDate>
    </item>
    <item>
      <title>PowerShell 7实用技巧：共享配置、命令别名与端口排查</title>
      <link>https://www.ihonker.com/thread-35704-1-1.html</link>
      <description><![CDATA[在 Windows 上把 PowerShell 升级到 7 之后，很多习惯 Linux 命令行的开发者会发现，PowerShell 既能兼容常见的 Bash 操作，又自带一套更强大的对象管理能力。如果同时搭配 Windows Terminal 使用，多 Shell 切换和日常运维会顺手很多。这里整理一些实际开发中高频用到 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Tue, 11 Aug 2026 07:00:05 +0000</pubDate>
    </item>
    <item>
      <title>跨位数进程信息读取：Win32 API实现映像路径与命令行解析</title>
      <link>https://www.ihonker.com/thread-35623-1-1.html</link>
      <description><![CDATA[在Windows系统管理和安全审计工具的开发中，经常需要根据进程PID获取目标进程的主映像路径、命令行以及环境变量。这些信息看似简单，实际处理时却存在不少陷阱，尤其是面对32位（WOW64）与64位进程混跑的环境。本文从Win32/Native API调用的角度，梳理一条最小权限、按 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Mon, 03 Aug 2026 02:00:00 +0000</pubDate>
    </item>
    <item>
      <title>NtQuerySystemInformation进程枚举：缓冲区增长与记</title>
      <link>https://www.ihonker.com/thread-35571-1-1.html</link>
      <description><![CDATA[在Windows系统编程中，通过Native API枚举当前进程是许多系统工具和诊断程序的基础操作。NtQuerySystemInformation配合SystemProcessInformation信息类，可以获取当前可见进程的快照，但直接使用该API存在缓冲区大小不足、记录偏移验证缺失、字符串边界检查疏漏等隐患， ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Wed, 29 Jul 2026 02:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Win32注册表API枚举打印监视器Driver值实践与验</title>
      <link>https://www.ihonker.com/thread-35528-1-1.html</link>
      <description><![CDATA[在Windows打印子系统的排查与安全分析中，打印监视器（Print Monitor）作为Print Spooler加载的DLL，负责端口通信和作业状态管理。其注册表配置位于HKLM\\SYSTEM\\CurrentControlSet\\Control\\Print\\Monitors，每个子键名称代表监视器名称，子键下的Driver值存储DLL文件名 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Mon, 27 Jul 2026 02:00:00 +0000</pubDate>
    </item>
    <item>
      <title>IFEO注册表配置读取：枚举Debugger、VerifierDlls</title>
      <link>https://www.ihonker.com/thread-35527-1-1.html</link>
      <description><![CDATA[在Windows系统排查或安全分析中，经常需要检查映像文件执行选项（IFEO）和静默进程退出监视（SilentProcessExit）的注册表配置。这些配置控制了调试器重定向、应用程序验证器DLL加载以及进程退出时的监视进程启动。本文介绍如何系统性地从注册表中读取 Debugger、Verifi ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Sun, 26 Jul 2026 02:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Active Setup组件子键枚举与StubPath类型化注册表读取</title>
      <link>https://www.ihonker.com/thread-35526-1-1.html</link>
      <description><![CDATA[Active Setup是Windows操作系统用于协调用户级组件初始化的注册表机制。当用户登录时，系统依据机器级组件定义与当前用户状态记录判断是否执行某项初始化。为审计或分析这类初始化配置，常需要只读枚举注册表中的组件登记信息，尤其是StubPath命令文本。然而直接从注册 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Sat, 25 Jul 2026 07:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Windows DLL注入三种实战方法：全局钩子、远程线程与Sessio</title>
      <link>https://www.ihonker.com/thread-35492-1-1.html</link>
      <description><![CDATA[Windows平台下的DLL注入是系统安全研究和底层开发中的常见技术，涉及在目标进程中加载自定义DLL以执行特定代码。本文基于实际注入实践，介绍三种经典注入方法：全局钩子注入、远程线程注入，以及突破Session 0隔离的远线程注入。每种方法均给出Win32 API原理、关键步骤 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Thu, 23 Jul 2026 06:00:00 +0000</pubDate>
    </item>
    <item>
      <title>解析Session Manager的BootExecute/SetupE</title>
      <link>https://www.ihonker.com/thread-35460-1-1.html</link>
      <description><![CDATA[Session Manager（会话管理器）是Windows在用户登录前启动的关键系统组件，负责建立早期会话环境。它位于注册表HKLM\\System\\CurrentControlSet\\Control\\Session Manager下，包含三个重要REG_MULTI_SZ值：BootExecute、SetupExecute与Execute。这三项配置以多字符串（Mul ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Wed, 22 Jul 2026 02:00:01 +0000</pubDate>
    </item>
    <item>
      <title>C++实现Winlogon注册表精确读取：固定值与Notify子键遍历</title>
      <link>https://www.ihonker.com/thread-35436-1-1.html</link>
      <description><![CDATA[在Windows桌面开发和系统安全分析中，Winlogon注册表配置是理解登录流程的关键切入点。本文基于实际项目需求，完整解析如何用C++及Win32 API精确读取HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon下的固定值以及Notify子键中的配置，并重点处理数组截断 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Mon, 20 Jul 2026 04:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Flutter Windows安装器选型：NSIS vs MSIX实战对</title>
      <link>https://www.ihonker.com/thread-35397-1-1.html</link>
      <description><![CDATA[在Flutter Windows桌面应用开发中，构建出 release 包后，你会得到一个包含数十个DLL、data目录和exe文件的文件夹。直接复制整个目录给用户虽然可行，但真正的挑战在于安装环节：需要创建开始菜单快捷方式、桌面图标、注册卸载入口、建立文件关联、支持覆盖升级并阻止降 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Thu, 16 Jul 2026 06:00:00 +0000</pubDate>
    </item>
    <item>
      <title>PipConda混用CRT冲突 WinError1114修复</title>
      <link>https://www.ihonker.com/thread-35343-1-1.html</link>
      <description><![CDATA[在Anaconda（Miniconda）环境中混用pip和conda安装带有C扩展的Python包时，可能遇到一个典型的Windows动态链接库（DLL）初始化失败错误：OSError: [WinError 1114] 动态链接库(DLL)初始化例程失败，具体错误信息指向c10.dll或其依赖项。该问题常见于通过pip安装新版PyTo ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Sun, 12 Jul 2026 02:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Git Bash调用cmd时MSYS2路径转换与引号转义全解</title>
      <link>https://www.ihonker.com/thread-35330-1-1.html</link>
      <description><![CDATA[Git Bash 底层依赖 MSYS2 兼容层，当通过 Git Bash 调用原生 Windows 程序（如 cmd.exe）时，MSYS2 会自动对路径、引号、环境变量等特殊字符进行转换。这些转换虽然旨在打通 POSIX 和 Windows 的差异，却常常引入难以排查的陷阱。本文基于实际调试经验，梳理最常见的陷 ...]]></description>
      <category>Windows</category>
      <author>微软专家</author>
      <pubDate>Fri, 10 Jul 2026 12:00:02 +0000</pubDate>
    </item>
    <item>
      <title>RSorder-OSRS: Forge Ahead Without Setting Your Profits on Fire</title>
      <link>https://www.ihonker.com/thread-35239-1-1.html</link>
      <description><![CDATA[Tired of the repetitive grind at the anvil? Giant\'s Foundry lets you gain XP while actively playing, making the rush to level 99 much easier. But are you struggling to get in? Unsure about the right gear? Worried about messing up the process and miss ...]]></description>
      <category>Windows</category>
      <author>Seraphinang</author>
      <pubDate>Sat, 04 Jul 2026 08:20:29 +0000</pubDate>
    </item>
    <item>
      <title>MMOexp-Madden 26: Because Smart Players Don\'t Leave Free Value Unclaimed</title>
      <link>https://www.ihonker.com/thread-35238-1-1.html</link>
      <description><![CDATA[This year\'s Madden NFL 26 Super Bowl promotion introduces EA\'s most complex free-player acquisition system to date. It features \&quot;Ring Chaser\&quot; legends, Superstar upgrade tokens, and the chance to unlock multiple top-tier Champion players with 95 OVR r]]></description>
      <category>Windows</category>
      <author>Seraphinang</author>
      <pubDate>Sat, 04 Jul 2026 08:18:51 +0000</pubDate>
    </item>
    <item>
      <title>RSgoldfast-OSRS Beginner Guide: Because Anvils Don\'t Chase You Down</title>
      <link>https://www.ihonker.com/thread-35237-1-1.html</link>
      <description><![CDATA[OSRS  players aiming to rush Smithing to level 99 know that Giant\'s Foundry is currently the most efficient choice; it offers rapid XP gains and unique gear that boosts experience. However, many newcomers who have just unlocked the content struggle t ...]]></description>
      <category>Windows</category>
      <author>Seraphinang</author>
      <pubDate>Sat, 04 Jul 2026 08:14:00 +0000</pubDate>
    </item>
  </channel>
</rss>