Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的默认控制台宽度是 80,但是当我查看HKCU\Console没有具有此值的名称时。只有一个应该与它有关的是:WindowSize但它的值为 0x190050,即 dec: 1638480。它的最后两位数字是否代表我正在搜索的值?
HKCU\Console
WindowSize
在 HKCU\控制台
0x19 = 25 0x50 = 80 所以这是 25x80
在十进制中,它是行乘以 65,536 加上列。(25 * 65536) + 80 = 1638480
(25 * 65536) + 80 = 1638480
文档在这里。