<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>我的日志</title><link>https://1688fs.net/</link><description>My blog</description><item><title>/sound:sys:alsa /usb:id:054c:0268 +clipboard /cert-ignore</title><link>https://1688fs.net/index.php/post/70.html</link><description>&lt;pre style=&quot;font-style: normal; font-variant: normal; font-size-adjust: none; font-language-override: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-stretch: normal; font-size: 13px; line-height: 22px; font-family: Menlo, Monaco, Consolas, &amp;quot;Cascadia Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;JetBrains Mono&amp;quot;, &amp;quot;Fira Code&amp;quot;, Cousine, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, sans-serif, system-ui; overflow: auto; white-space: pre-wrap; word-break: break-all; padding: 16px; color: rgb(15, 17, 21); margin: 0px !important;&quot;&gt;&lt;br/&gt;&lt;/pre&gt;&lt;p&gt;可用的 /sound:sys:alsa /usb:id:054c:0268 +clipboard /cert-ignore&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;/sound:sys:alsa /cert-ignore /usb&lt;/p&gt;&lt;p&gt;/sound:sys:alsa /cert-ignore /usb:transport:ip&lt;/p&gt;&lt;p&gt;/v:192.168.0.10 /u:yinzeyi /p:000000 /f /cert:ignore /sound:sys:alsa /clipboard /drive:usb,/media /usb:auto&lt;/p&gt;&lt;p&gt;/f /cert:ignore /sound:sys:alsa /clipboard /drive:usb,/media /usb:auto +auto-reconnect&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 29 Apr 2026 00:24:46 +0800</pubDate></item><item><title>颜色名称图</title><link>https://1688fs.net/index.php/post/69.html</link><description>&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://1688fs.net/zb_users/upload/2025/09/202509211758384053424676.png&quot; title=&quot;305d2e8fdf8007b8d9537cdb42ee00db.png&quot; alt=&quot;305d2e8fdf8007b8d9537cdb42ee00db.png&quot;/&gt;&lt;/p&gt;</description><pubDate>Sun, 21 Sep 2025 00:00:25 +0800</pubDate></item><item><title>专门适合宝塔面板（BT）+ 阿里云 ECS → 家庭 DDNS 服务器 的 Nginx 反向代理配置</title><link>https://1688fs.net/index.php/post/66.html</link><description>&lt;h2 data-start=&quot;90&quot; data-end=&quot;113&quot;&gt;Nginx 配置模板（宝塔反代用）&lt;/h2&gt;&lt;p data-start=&quot;115&quot; data-end=&quot;159&quot;&gt;在宝塔面板 → 网站 → 设置 → &lt;strong data-start=&quot;133&quot; data-end=&quot;141&quot;&gt;反向代理&lt;/strong&gt; → 修改配置文件，替换为以下内容：&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-php&quot;&gt;#PROXY-START/

location&amp;nbsp;^~&amp;nbsp;/
{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;resolver&amp;nbsp;100.100.2.136&amp;nbsp;100.100.2.138&amp;nbsp;valid=10s;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set&amp;nbsp;$backend&amp;nbsp;&amp;quot;https://blog.1688fs.net:1443&amp;quot;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_pass&amp;nbsp;$backend$request_uri;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Host&amp;nbsp;$host;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Real-IP&amp;nbsp;$remote_addr;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Forwarded-For&amp;nbsp;$proxy_add_x_forwarded_for;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Forwarded-Proto&amp;nbsp;$scheme;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_http_version&amp;nbsp;1.1;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Upgrade&amp;nbsp;$http_upgrade;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Connection&amp;nbsp;&amp;quot;upgrade&amp;quot;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_read_timeout&amp;nbsp;60s;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_connect_timeout&amp;nbsp;5s;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_send_timeout&amp;nbsp;30s;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_next_upstream&amp;nbsp;error&amp;nbsp;timeout&amp;nbsp;invalid_header&amp;nbsp;http_502&amp;nbsp;http_503&amp;nbsp;http_504;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set&amp;nbsp;$static_file&amp;nbsp;0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;($uri&amp;nbsp;~*&amp;nbsp;&amp;quot;\.(gif|png|jpg|jpeg|css|js|woff|woff2)$&amp;quot;)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set&amp;nbsp;$static_file&amp;nbsp;1;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;expires&amp;nbsp;1m;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;($static_file&amp;nbsp;=&amp;nbsp;0)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;add_header&amp;nbsp;Cache-Control&amp;nbsp;no-cache;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;add_header&amp;nbsp;X-Cache&amp;nbsp;$upstream_cache_status;
}
#PROXY-END/&lt;/pre&gt;&lt;pre class=&quot;prism-highlight prism-language-php&quot;&gt;配置详细说明

#PROXY-START/

location&amp;nbsp;^~&amp;nbsp;/&amp;nbsp;&amp;nbsp;#&amp;nbsp;匹配根路径及其所有子路径，用于反向代理整个网站
{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;resolver&amp;nbsp;100.100.2.136&amp;nbsp;100.100.2.138&amp;nbsp;valid=10s;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;指定&amp;nbsp;DNS&amp;nbsp;服务器（阿里云内网&amp;nbsp;DNS），并设置缓存有效期&amp;nbsp;10&amp;nbsp;秒
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;每&amp;nbsp;10&amp;nbsp;秒刷新一次域名解析，保证&amp;nbsp;DDNS&amp;nbsp;IP&amp;nbsp;变更后能访问

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set&amp;nbsp;$backend&amp;nbsp;&amp;quot;https://blog.1688fs.net:1443&amp;quot;;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;定义变量&amp;nbsp;$backend&amp;nbsp;存储上游服务器地址（家庭服务器&amp;nbsp;HTTPS&amp;nbsp;端口）

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_pass&amp;nbsp;$backend$request_uri;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;将客户端请求转发到上游服务器，并保留原始&amp;nbsp;URI
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;使用&amp;nbsp;$request_uri&amp;nbsp;避免乱码和资源路径错误

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Host&amp;nbsp;$host;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;保持客户端访问的&amp;nbsp;Host（域名）透传到上游
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;防止网站认为是&amp;nbsp;IP&amp;nbsp;访问导致乱码或资源路径错误

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Real-IP&amp;nbsp;$remote_addr;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;透传客户端真实&amp;nbsp;IP&amp;nbsp;到上游服务器

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Forwarded-For&amp;nbsp;$proxy_add_x_forwarded_for;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;记录代理链中的客户端&amp;nbsp;IP，支持多级代理

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Forwarded-Proto&amp;nbsp;$scheme;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;透传请求协议（http&amp;nbsp;或&amp;nbsp;https），上游服务器可根据此判断

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_http_version&amp;nbsp;1.1;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;使用&amp;nbsp;HTTP/1.1&amp;nbsp;协议，必要条件才能支持&amp;nbsp;WebSocket

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Upgrade&amp;nbsp;$http_upgrade;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;WebSocket&amp;nbsp;升级头，允许&amp;nbsp;HTTP&amp;nbsp;连接升级为&amp;nbsp;WebSocket

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Connection&amp;nbsp;&amp;quot;upgrade&amp;quot;;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;WebSocket&amp;nbsp;升级标识，必须设置为&amp;nbsp;&amp;quot;upgrade&amp;quot;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_read_timeout&amp;nbsp;60s;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;等待上游服务器响应的最大时间（WebSocket&amp;nbsp;长连接），超过断开

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_connect_timeout&amp;nbsp;5s;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;连接上游服务器的超时时间

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_send_timeout&amp;nbsp;30s;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;向上游服务器发送请求数据的超时时间

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_next_upstream&amp;nbsp;error&amp;nbsp;timeout&amp;nbsp;invalid_header&amp;nbsp;http_502&amp;nbsp;http_503&amp;nbsp;http_504;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;当出现上游错误、超时或返回&amp;nbsp;502/503/504&amp;nbsp;等错误时，尝试下一个上游
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;提高代理可用性，适合家庭服务器可能&amp;nbsp;DDNS&amp;nbsp;改变的情况

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set&amp;nbsp;$static_file&amp;nbsp;0;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;初始化变量，用于判断是否是静态文件

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;($uri&amp;nbsp;~*&amp;nbsp;&amp;quot;\.(gif|png|jpg|jpeg|css|js|woff|woff2)$&amp;quot;)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set&amp;nbsp;$static_file&amp;nbsp;1;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;expires&amp;nbsp;1m;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;静态资源缓存&amp;nbsp;1&amp;nbsp;分钟，提高访问速度，减轻上游负载
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;($static_file&amp;nbsp;=&amp;nbsp;0)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;add_header&amp;nbsp;Cache-Control&amp;nbsp;no-cache;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;非静态资源不缓存，保证动态请求实时性
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;add_header&amp;nbsp;X-Cache&amp;nbsp;$upstream_cache_status;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;调试用，显示缓存状态（MISS/HIT/BYPASS），方便排查问题
}

#PROXY-END/&lt;/pre&gt;&lt;h2 data-start=&quot;879&quot; data-end=&quot;899&quot;&gt;🔹 使用方法（在宝塔面板里操作）&lt;/h2&gt;&lt;ol data-start=&quot;901&quot; data-end=&quot;1083&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;904&quot; data-end=&quot;950&quot;&gt;登录宝塔面板 → 网站 → 选择 &lt;code data-start=&quot;921&quot; data-end=&quot;933&quot;&gt;1688fs.net&lt;/code&gt; → 点击 &lt;strong data-start=&quot;939&quot; data-end=&quot;947&quot;&gt;反向代理&lt;/strong&gt;。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;954&quot; data-end=&quot;1003&quot;&gt;添加一个代理规则（目标地址写 &lt;code data-start=&quot;969&quot; data-end=&quot;999&quot;&gt;https://blog.1688fs.net:1443&lt;/code&gt;）。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1007&quot; data-end=&quot;1065&quot;&gt;添加完后，点进去 → &lt;strong data-start=&quot;1018&quot; data-end=&quot;1026&quot;&gt;配置文件&lt;/strong&gt; → 把里面的 &lt;code data-start=&quot;1034&quot; data-end=&quot;1054&quot;&gt;location / { ... }&lt;/code&gt; 替换成上面这段。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1069&quot; data-end=&quot;1083&quot;&gt;保存并重载 Nginx。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;hr data-start=&quot;1085&quot; data-end=&quot;1088&quot;/&gt;&lt;h2 data-start=&quot;1090&quot; data-end=&quot;1098&quot;&gt;🔹 说明&lt;/h2&gt;&lt;ul data-start=&quot;1100&quot; data-end=&quot;1415&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1102&quot; data-end=&quot;1153&quot;&gt;&lt;code data-start=&quot;1102&quot; data-end=&quot;1151&quot;&gt;resolver 100.100.2.136 100.100.2.138 valid=30s;&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;ul data-start=&quot;1156&quot; data-end=&quot;1234&quot; class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: square;&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1158&quot; data-end=&quot;1201&quot;&gt;指定阿里云内网的 DNS（比 8.8.8.8 快），每 30 秒重新解析一次域名。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1206&quot; data-end=&quot;1234&quot;&gt;如果家庭宽带换 IP，30 秒内 ECS 就会更新。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p data-start=&quot;1237&quot; data-end=&quot;1253&quot;&gt;&lt;code data-start=&quot;1237&quot; data-end=&quot;1251&quot;&gt;set $backend&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;ul data-start=&quot;1256&quot; data-end=&quot;1298&quot; class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: square;&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1258&quot; data-end=&quot;1298&quot;&gt;强制让 &lt;code data-start=&quot;1262&quot; data-end=&quot;1274&quot;&gt;proxy_pass&lt;/code&gt; 使用变量，这样才能触发动态 DNS 解析。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p data-start=&quot;1301&quot; data-end=&quot;1333&quot;&gt;&lt;code data-start=&quot;1301&quot; data-end=&quot;1331&quot;&gt;proxy_set_header Host $host;&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;ul data-start=&quot;1336&quot; data-end=&quot;1365&quot; class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: square;&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1338&quot; data-end=&quot;1365&quot;&gt;保持原始域名头（避免博客程序认为是 IP 访问）。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p data-start=&quot;1368&quot; data-end=&quot;1391&quot;&gt;&lt;code data-start=&quot;1368&quot; data-end=&quot;1389&quot;&gt;proxy_next_upstream&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;ul data-start=&quot;1394&quot; data-end=&quot;1415&quot; class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: square;&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1396&quot; data-end=&quot;1415&quot;&gt;出错时自动重试，不会马上 502。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;hr data-start=&quot;1417&quot; data-end=&quot;1420&quot;/&gt;&lt;h2 data-start=&quot;1422&quot; data-end=&quot;1432&quot;&gt;🔹 验证方法&lt;/h2&gt;&lt;ol data-start=&quot;1434&quot; data-end=&quot;1554&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1437&quot; data-end=&quot;1476&quot;&gt;&lt;strong data-start=&quot;1437&quot; data-end=&quot;1457&quot;&gt;先访问 &lt;code data-start=&quot;1443&quot; data-end=&quot;1455&quot;&gt;1688fs.net&lt;/code&gt;&lt;/strong&gt; → 确认能正常反代到家庭服务器。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1480&quot; data-end=&quot;1505&quot;&gt;手动让家庭宽带换一个公网 IP（断开/重拨）。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1509&quot; data-end=&quot;1554&quot;&gt;等 30 秒，再访问 &lt;code data-start=&quot;1520&quot; data-end=&quot;1532&quot;&gt;1688fs.net&lt;/code&gt; → 如果还能正常访问，就说明配置生效。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;hr data-start=&quot;1556&quot; data-end=&quot;1559&quot;/&gt;&lt;p data-start=&quot;1561&quot; data-end=&quot;1628&quot;&gt;👉 这样配置好之后，你就 &lt;strong data-start=&quot;1575&quot; data-end=&quot;1594&quot;&gt;不需要重启 PHP/Nginx&lt;/strong&gt; 了，DDNS 更新后 ECS 会自动跟上，不再频繁报 502。&lt;/p&gt;&lt;p data-start=&quot;1630&quot; data-end=&quot;1712&quot; data-is-last-node=&quot;&quot; data-is-only-node=&quot;&quot;&gt;要不要我再帮你加一份 &lt;strong data-start=&quot;1641&quot; data-end=&quot;1667&quot;&gt;支持 WebSocket（ws/wss）反代&lt;/strong&gt; 的配置？这样如果你博客里有即时通信或者后台管理面板用 WebSocket，也能直接透传。&lt;/p&gt;&lt;p data-start=&quot;1630&quot; data-end=&quot;1712&quot; data-is-last-node=&quot;&quot; data-is-only-node=&quot;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;““支持 WebSocket（ws/wss）反代 的配置”请帮我加上，

“proxy_set_header Host $host;
保持原始域名头（避免博客程序认为是 IP 访问）
”这个是客户端访问网站，IP直接透传到“&lt;a href=&quot;https://blog.1688fs.net:1443”服务器是把？”&quot; _src=&quot;https://blog.1688fs.net:1443”服务器是把？”&quot;&gt;https://blog.1688fs.net:1443”服务器是把？”&lt;/a&gt; &lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p data-start=&quot;115&quot; data-end=&quot;159&quot;&gt;🔹 完整配置（支持 HTTP + WebSocket）&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-php&quot;&gt;location&amp;nbsp;/&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;DNS&amp;nbsp;动态解析，阿里云内网&amp;nbsp;DNS，30&amp;nbsp;秒刷新一次
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;resolver&amp;nbsp;100.100.2.136&amp;nbsp;100.100.2.138&amp;nbsp;valid=30s;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;触发变量方式&amp;nbsp;proxy_pass，保证&amp;nbsp;Nginx&amp;nbsp;每次都能刷新解析
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;set&amp;nbsp;$backend&amp;nbsp;&amp;quot;https://blog.1688fs.net:1443&amp;quot;;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_pass&amp;nbsp;$backend;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;=========&amp;nbsp;请求头透传&amp;nbsp;=========
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Host&amp;nbsp;$host;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;保持用户访问的域名（1688fs.net）
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Real-IP&amp;nbsp;$remote_addr;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;传递真实客户端&amp;nbsp;IP
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Forwarded-For&amp;nbsp;$proxy_add_x_forwarded_for;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;X-Forwarded-Proto&amp;nbsp;$scheme;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;=========&amp;nbsp;WebSocket&amp;nbsp;支持&amp;nbsp;=========
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_http_version&amp;nbsp;1.1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;必须&amp;nbsp;HTTP/1.1&amp;nbsp;才能升级
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Upgrade&amp;nbsp;$http_upgrade;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;WebSocket&amp;nbsp;升级头
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_set_header&amp;nbsp;Connection&amp;nbsp;&amp;quot;upgrade&amp;quot;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;连接升级
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_read_timeout&amp;nbsp;60s;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;WebSocket&amp;nbsp;长连接超时时间

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;=========&amp;nbsp;超时控制&amp;nbsp;=========
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_connect_timeout&amp;nbsp;5s;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_send_timeout&amp;nbsp;30s;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;=========&amp;nbsp;出错时重试&amp;nbsp;=========
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_next_upstream&amp;nbsp;error&amp;nbsp;timeout&amp;nbsp;invalid_header&amp;nbsp;http_502&amp;nbsp;http_503&amp;nbsp;http_504;
}&lt;/pre&gt;&lt;h2 data-start=&quot;1132&quot; data-end=&quot;1140&quot;&gt;🔹 解释&lt;/h2&gt;&lt;ol data-start=&quot;1142&quot; data-end=&quot;2189&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1145&quot; data-end=&quot;1158&quot;&gt;&lt;strong data-start=&quot;1145&quot; data-end=&quot;1156&quot;&gt;Host 透传&lt;/strong&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-php&quot; data-start=&quot;1162&quot; data-end=&quot;1209&quot;&gt;proxy_set_header&amp;nbsp;Host&amp;nbsp;$host;&lt;/pre&gt;&lt;/li&gt;&lt;ul data-start=&quot;1213&quot; data-end=&quot;1425&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1215&quot; data-end=&quot;1287&quot;&gt;用户访问的是 &lt;code data-start=&quot;1222&quot; data-end=&quot;1242&quot;&gt;https://1688fs.net&lt;/code&gt;，Nginx 默认会把 Host 改成 &lt;code data-start=&quot;1262&quot; data-end=&quot;1284&quot;&gt;blog.1688fs.net:1443&lt;/code&gt;。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1293&quot; data-end=&quot;1348&quot;&gt;加上这一行后，Nginx 会把 &lt;strong data-start=&quot;1309&quot; data-end=&quot;1337&quot;&gt;用户原始访问的 Host（1688fs.net）&lt;/strong&gt; 传给家庭服务器。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1354&quot; data-end=&quot;1425&quot;&gt;好处：家庭服务器上的 Web 程序会认为自己就是被访问 &lt;code data-start=&quot;1382&quot; data-end=&quot;1394&quot;&gt;1688fs.net&lt;/code&gt;，不会跳转到 &lt;code data-start=&quot;1401&quot; data-end=&quot;1418&quot;&gt;blog.1688fs.net&lt;/code&gt; 或报错。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p data-start=&quot;1430&quot; data-end=&quot;1444&quot;&gt;&lt;strong data-start=&quot;1430&quot; data-end=&quot;1442&quot;&gt;真实 IP 透传&lt;/strong&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-php&quot; data-start=&quot;1448&quot; data-end=&quot;1618&quot;&gt;proxy_set_header&amp;nbsp;X-Real-IP&amp;nbsp;$remote_addr;
proxy_set_header&amp;nbsp;X-Forwarded-For&amp;nbsp;$proxy_add_x_forwarded_for;
proxy_set_header&amp;nbsp;X-Forwarded-Proto&amp;nbsp;$scheme;&lt;/pre&gt;&lt;p data-start=&quot;1749&quot; data-end=&quot;1846&quot;&gt;⚠️ 家庭服务器直接看到的来源 IP 还是 ECS（因为 TCP 源 IP 已经变了），但是应用（比如 Nginx、PHP、博客程序）可以通过 &lt;code data-start=&quot;1821&quot; data-end=&quot;1832&quot;&gt;X-Real-IP&lt;/code&gt; 获取到真正的客户端 IP。&lt;/p&gt;&lt;p data-start=&quot;1851&quot; data-end=&quot;1861&quot;&gt;👉 也就是说：&lt;/p&gt;&lt;/li&gt;&lt;ul data-start=&quot;1865&quot; data-end=&quot;1961&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1867&quot; data-end=&quot;1902&quot;&gt;&lt;strong data-start=&quot;1867&quot; data-end=&quot;1882&quot;&gt;家庭服务器操作系统层面&lt;/strong&gt;：来源 IP = ECS 公网 IP&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1908&quot; data-end=&quot;1961&quot;&gt;&lt;strong data-start=&quot;1908&quot; data-end=&quot;1927&quot;&gt;家庭服务器的 Web 应用层面&lt;/strong&gt;：来源 IP = 用户真实 IP（通过 &lt;code data-start=&quot;1947&quot; data-end=&quot;1958&quot;&gt;X-Real-IP&lt;/code&gt;）&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul data-start=&quot;1622&quot; data-end=&quot;1744&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;1624&quot; data-end=&quot;1648&quot;&gt;&lt;code data-start=&quot;1624&quot; data-end=&quot;1635&quot;&gt;X-Real-IP&lt;/code&gt; → 客户端真实 IP&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1654&quot; data-end=&quot;1693&quot;&gt;&lt;code data-start=&quot;1654&quot; data-end=&quot;1671&quot;&gt;X-Forwarded-For&lt;/code&gt; → 如果有多级代理，会追加 IP 列表&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;1699&quot; data-end=&quot;1744&quot;&gt;&lt;code data-start=&quot;1699&quot; data-end=&quot;1718&quot;&gt;X-Forwarded-Proto&lt;/code&gt; → 协议（http/https），避免应用误判&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p data-start=&quot;1966&quot; data-end=&quot;1984&quot;&gt;&lt;strong data-start=&quot;1966&quot; data-end=&quot;1982&quot;&gt;WebSocket 支持&lt;/strong&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-php&quot; data-start=&quot;1988&quot; data-end=&quot;2088&quot;&gt;proxy_set_header&amp;nbsp;Upgrade&amp;nbsp;$http_upgrade;
proxy_set_header&amp;nbsp;Connection&amp;nbsp;&amp;quot;upgrade&amp;quot;;&lt;/pre&gt;&lt;/li&gt;&lt;ul data-start=&quot;2092&quot; data-end=&quot;2189&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;2094&quot; data-end=&quot;2131&quot;&gt;必须加这两行，否则 WebSocket (ws/wss) 握手会失败。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;2137&quot; data-end=&quot;2189&quot;&gt;&lt;code data-start=&quot;2137&quot; data-end=&quot;2162&quot;&gt;proxy_read_timeout 60s;&lt;/code&gt; → 避免 WebSocket 长时间空闲被断开。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;&lt;hr data-start=&quot;2191&quot; data-end=&quot;2194&quot;/&gt;&lt;h2 data-start=&quot;2196&quot; data-end=&quot;2206&quot;&gt;🔹 使用方法&lt;/h2&gt;&lt;ol data-start=&quot;2208&quot; data-end=&quot;2456&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;2211&quot; data-end=&quot;2246&quot;&gt;在宝塔面板 → 网站 → 反向代理 → 配置文件，替换成上面这份。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;2250&quot; data-end=&quot;2266&quot;&gt;保存 → 重载 Nginx。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;2270&quot; data-end=&quot;2273&quot;&gt;测试：&lt;/p&gt;&lt;/li&gt;&lt;ul data-start=&quot;2277&quot; data-end=&quot;2456&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;2279&quot; data-end=&quot;2315&quot;&gt;打开 &lt;code data-start=&quot;2282&quot; data-end=&quot;2302&quot;&gt;https://1688fs.net&lt;/code&gt; 看网页能否正常访问。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;2321&quot; data-end=&quot;2390&quot;&gt;如果博客里有 WebSocket（如评论系统、在线聊天、后台实时更新），检查浏览器开发者工具 → Network → ws 是否成功。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;2396&quot; data-end=&quot;2456&quot;&gt;在家庭服务器 Nginx/Apache/PHP 日志里，确认 &lt;code data-start=&quot;2427&quot; data-end=&quot;2438&quot;&gt;X-Real-IP&lt;/code&gt; 是否能显示客户端的公网 IP。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;&lt;hr data-start=&quot;2458&quot; data-end=&quot;2461&quot;/&gt;&lt;p data-start=&quot;2463&quot; data-end=&quot;2485&quot;&gt;👉 这样配置以后，你的 ECS 就能：&lt;/p&gt;&lt;ul data-start=&quot;2486&quot; data-end=&quot;2568&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;2488&quot; data-end=&quot;2510&quot;&gt;自动刷新 DDNS IP（不用重启服务）&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;2513&quot; data-end=&quot;2539&quot;&gt;支持 HTTP + WebSocket 正常转发&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;2542&quot; data-end=&quot;2568&quot;&gt;日志里能看到客户端真实 IP（不是 ECS 的）&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr data-start=&quot;2570&quot; data-end=&quot;2573&quot;/&gt;&lt;p data-start=&quot;2575&quot; data-end=&quot;2656&quot; data-is-last-node=&quot;&quot; data-is-only-node=&quot;&quot;&gt;要不要我再帮你写一份 &lt;strong data-start=&quot;2586&quot; data-end=&quot;2605&quot;&gt;家庭服务器端 Nginx 配置&lt;/strong&gt;，把 &lt;code data-start=&quot;2608&quot; data-end=&quot;2619&quot;&gt;X-Real-IP&lt;/code&gt; 自动识别出来，日志里直接显示真实客户端 IP，而不是 ECS 的 IP？&lt;/p&gt;&lt;p data-start=&quot;115&quot; data-end=&quot;159&quot;&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sun, 31 Aug 2025 20:27:26 +0800</pubDate></item><item><title>Windwos10 LTSC 2021安装Winget完整教程</title><link>https://1688fs.net/index.php/post/65.html</link><description>&lt;p&gt;实测这个方法Windows10 LTSC 2019也能正常安装。&lt;/p&gt;&lt;p&gt;安装只需要下面4条命令就可以了 ，这里是离线安装方式，所以文件都是提前下载到C:\winget目录下的。&lt;br/&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;Add-AppxPackage&amp;nbsp;-Path&amp;nbsp;&amp;quot;C:\Winget\Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_x64.appx&amp;quot;&amp;nbsp;-ForceUpdateFromAnyVersion
Add-AppxPackage&amp;nbsp;-Path&amp;nbsp;&amp;quot;C:\Winget\Microsoft.UI.Xaml.2.8_8.2310.30001.0_x64.appx&amp;quot;&amp;nbsp;-ForceUpdateFromAnyVersion
Add-AppxPackage&amp;nbsp;-Path&amp;nbsp;&amp;quot;C:\Winget\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle&amp;quot;&amp;nbsp;-ForceUpdateFromAnyVersion
Add-AppxProvisionedPackage&amp;nbsp;-Online&amp;nbsp;-PackagePath&amp;nbsp;&amp;quot;C:\Winget\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle&amp;quot;&amp;nbsp;-LicensePath&amp;nbsp;&amp;quot;C:\Winget\e53e159d00e04f729cc2180cffd1c02e_License1.xml&amp;quot;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color: #953734;&quot;&gt;文件下载地址：&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap-mode: wrap;&quot;&gt;需要的文件都可以到gethub上下载到：&lt;a href=&quot;https://github.com/microsoft/winget-cli/releases/tag/v1.11.430&quot; _src=&quot;https://github.com/microsoft/winget-cli/releases/tag/v1.11.430&quot;&gt;https://github.com/microsoft/winget-cli/releases/tag/v1.11.430&lt;/a&gt; &lt;/p&gt;&lt;p style=&quot;text-wrap-mode: wrap;&quot;&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://1688fs.net/zb_users/upload/2025/08/202508301756545172373767.png&quot; title=&quot;10.png&quot; alt=&quot;10.png&quot;/&gt;&lt;/p&gt;</description><pubDate>Sat, 30 Aug 2025 16:53:59 +0800</pubDate></item><item><title>用Winget一次性安装微信、QQ、千牛、PotPlayer、Google Chrome、微信输入法、钉钉等主流程序</title><link>https://1688fs.net/index.php/post/64.html</link><description>&lt;h3 style=&quot;font-size: 18.288px; line-height: 1.5; margin: 18.288px 0px 13.716px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;方法一：一键安装所有软件（推荐）&lt;/h3&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;将以下完整命令&lt;span style=&quot;font-weight: 600;&quot;&gt;复制粘贴&lt;/span&gt;到&amp;nbsp;&lt;span style=&quot;font-weight: 600;&quot;&gt;Windows Terminal&lt;/span&gt;、&lt;span style=&quot;font-weight: 600;&quot;&gt;PowerShell&lt;/span&gt;&amp;nbsp;或&amp;nbsp;&lt;span style=&quot;font-weight: 600;&quot;&gt;CMD&lt;/span&gt;&amp;nbsp;(命令提示符) 中运行即可。&lt;/p&gt;&lt;div class=&quot;md-code-block md-code-block-light&quot; style=&quot;--ds-md-code-block-border-color: #e5e5e5; --ds-md-code-block-banner-wrap-background-color: white; --ds-md-code-banner-background-color: #f5f5f5; color: rgb(73, 73, 73); background: rgb(250, 250, 250); --ds-md-code-block-border-radius: 12px; --ds-md-code-block-font-size: calc(1.143*11px); border-radius: 12px; font-size: 12.573px; line-height: 20.1168px; margin-bottom: 11.43px; font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;div class=&quot;md-code-block-banner-wrap&quot; style=&quot;background-color: rgb(255, 255, 255); z-index: 6; position: sticky; top: 0px;&quot;&gt;&lt;div class=&quot;md-code-block-banner md-code-block-banner-lite&quot; style=&quot;background: none 0% 0% / auto repeat scroll padding-box border-box rgb(245, 245, 245); padding: 0px; line-height: 12.573px; justify-content: space-between; display: flex; border-top-left-radius: 12px; border-top-right-radius: 12px;&quot;&gt;&lt;div class=&quot;_121d384&quot; style=&quot;justify-content: space-between; align-items: center; width: 572.203px; padding: 6px 14px 6px 6px; display: flex;&quot;&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;span class=&quot;d813de27&quot; style=&quot;color: #525252; margin-left: 8px; font-size: 12px; line-height: 18px;&quot;&gt;powershell&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;div class=&quot;efa13877&quot; style=&quot;height: 28px; align-items: center; display: flex;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;pre style=&quot;font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; overflow: auto; padding: 9.144px 13.716px; text-wrap-mode: wrap; word-break: break-all; margin-top: 0px !important; margin-bottom: 0px !important;&quot;&gt;winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Tencent.WeChat&amp;nbsp;-h;&amp;nbsp;winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Tencent.QQ&amp;nbsp;-h;&amp;nbsp;winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Alibaba.Qianniu&amp;nbsp;-h;&amp;nbsp;winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;DAUM.PotPlayer&amp;nbsp;-h;&amp;nbsp;winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Google.Chrome&amp;nbsp;-h;&amp;nbsp;winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Tencent.WeChatInput&amp;nbsp;-h;&amp;nbsp;winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Alibaba.DingTalk&amp;nbsp;-h&lt;/pre&gt;&lt;/div&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;命令说明：&lt;/span&gt;&lt;/p&gt;&lt;ul style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; padding-left: 27.432px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 16.002px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget install --id &amp;lt;软件ID&amp;gt;&lt;/code&gt;: 是安装软件的核心命令。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;-h&lt;/code&gt;&amp;nbsp;或&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--silent&lt;/code&gt;: 参数表示静默安装，通常会默认接受许可协议并跳过安装界面，体验更佳。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;使用分号&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;;&lt;/code&gt;&amp;nbsp;可以将多个命令连接在一起依次执行。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr style=&quot;height: 1px; margin: 32px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 229, 229); border: none; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 16.002px; text-wrap-mode: wrap;&quot;/&gt;&lt;h3 style=&quot;font-size: 18.288px; line-height: 1.5; margin: 18.288px 0px 13.716px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;方法二：分条安装命令（方便查看和管理）&lt;/h3&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;如果您希望逐个安装或更清楚地了解每个命令，可以使用以下分条命令：&lt;/p&gt;&lt;div class=&quot;md-code-block md-code-block-light&quot; style=&quot;--ds-md-code-block-border-color: #e5e5e5; --ds-md-code-block-banner-wrap-background-color: white; --ds-md-code-banner-background-color: #f5f5f5; color: rgb(73, 73, 73); background: rgb(250, 250, 250); --ds-md-code-block-border-radius: 12px; --ds-md-code-block-font-size: calc(1.143*11px); border-radius: 12px; font-size: 12.573px; line-height: 20.1168px; margin-bottom: 11.43px; font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;div class=&quot;md-code-block-banner-wrap&quot; style=&quot;background-color: rgb(255, 255, 255); z-index: 6; position: sticky; top: 0px;&quot;&gt;&lt;div class=&quot;md-code-block-banner md-code-block-banner-lite&quot; style=&quot;background: none 0% 0% / auto repeat scroll padding-box border-box rgb(245, 245, 245); padding: 0px; line-height: 12.573px; justify-content: space-between; display: flex; border-top-left-radius: 12px; border-top-right-radius: 12px;&quot;&gt;&lt;div class=&quot;_121d384&quot; style=&quot;justify-content: space-between; align-items: center; width: 572.203px; padding: 6px 14px 6px 6px; display: flex;&quot;&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;span class=&quot;d813de27&quot; style=&quot;color: #525252; margin-left: 8px; font-size: 12px; line-height: 18px;&quot;&gt;powershell&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;div class=&quot;efa13877&quot; style=&quot;height: 28px; align-items: center; display: flex;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;pre style=&quot;font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; overflow: auto; padding: 9.144px 13.716px; text-wrap-mode: wrap; word-break: break-all; margin-top: 0px !important; margin-bottom: 0px !important;&quot;&gt;#&amp;nbsp;安装微信
winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Tencent.WeChat&amp;nbsp;-h
#&amp;nbsp;安装QQ
winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Tencent.QQ&amp;nbsp;-h
#&amp;nbsp;安装千牛
winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Alibaba.Qianniu&amp;nbsp;-h
#&amp;nbsp;安装&amp;nbsp;PotPlayer
winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;DAUM.PotPlayer&amp;nbsp;-h
#&amp;nbsp;安装&amp;nbsp;Google&amp;nbsp;Chrome
winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Google.Chrome&amp;nbsp;-h
#&amp;nbsp;安装微信输入法
winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Tencent.WeChatInput&amp;nbsp;-h
#&amp;nbsp;安装钉钉
winget&amp;nbsp;install&amp;nbsp;--id&amp;nbsp;Alibaba.DingTalk&amp;nbsp;-h&lt;/pre&gt;&lt;/div&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;您可以一次复制一条命令执行，也可以全部复制一起执行。&lt;/p&gt;&lt;hr style=&quot;height: 1px; margin: 32px 0px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(229, 229, 229); border: none; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 16.002px; text-wrap-mode: wrap;&quot;/&gt;&lt;h3 style=&quot;font-size: 18.288px; line-height: 1.5; margin: 18.288px 0px 13.716px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;重要提示和常见问题：&lt;/h3&gt;&lt;ol start=&quot;1&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; padding-left: 27.432px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 16.002px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; margin-bottom: 4px; line-height: 28.575px;&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;如何打开 PowerShell？&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;ul style=&quot;margin-top: 4px; padding-left: 27.432px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;在 Windows 开始菜单上右键，选择&amp;nbsp;&lt;span style=&quot;font-weight: 600;&quot;&gt;Windows Terminal&lt;/span&gt;&amp;nbsp;或&amp;nbsp;&lt;span style=&quot;font-weight: 600;&quot;&gt;Windows PowerShell&lt;/span&gt;。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;或者按&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;Win + R&lt;/code&gt;&amp;nbsp;键，输入&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;powershell&lt;/code&gt;&amp;nbsp;后按回车。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; margin-bottom: 4px; line-height: 28.575px;&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;首次使用 Winget？&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;ul style=&quot;margin-top: 4px; padding-left: 27.432px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;Winget 是 Windows 11 和现代 Windows 10 系统自带的包管理工具。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;如果系统提示无法识别&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget&lt;/code&gt;&amp;nbsp;命令，说明您的系统可能版本较旧，需要手动从&amp;nbsp;&lt;a href=&quot;https://aka.ms/getwinget&quot; target=&quot;_blank&quot; rel=&quot;noreferrer&quot; style=&quot;color: rgb(59, 130, 246); transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 6.858px; border-width: 2px 3px; border-style: solid; border-color: rgba(255, 255, 255, 0); margin-left: -3px; margin-right: -3px; text-decoration-line: none; position: relative;&quot;&gt;Microsoft Store&lt;/a&gt;&amp;nbsp;安装“应用安装程序”。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; margin-bottom: 4px; line-height: 28.575px;&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;-h&lt;/code&gt;&amp;nbsp;参数可能失效&lt;/span&gt;：&lt;/p&gt;&lt;/li&gt;&lt;ul style=&quot;margin-top: 4px; padding-left: 27.432px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;极少数软件的安装程序可能不支持静默参数&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;-h&lt;/code&gt;。如果某条命令执行失败，可以尝试移除&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;-h&lt;/code&gt;&amp;nbsp;参数，然后会弹出正常的安装界面，您需要手动点击“下一步”完成安装。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;示例：&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget install --id Tencent.WeChat&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; margin-bottom: 4px; line-height: 28.575px;&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;确认安装&lt;/span&gt;：&lt;/p&gt;&lt;/li&gt;&lt;ul style=&quot;margin-top: 4px; padding-left: 27.432px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;执行命令时，Winget 可能会提示您确认安装，输入&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;Y&lt;/code&gt;&amp;nbsp;并按回车即可。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); margin-bottom: 0px !important;&quot;&gt;希望这些命令能帮您快速高效地完成所有软件的安装！&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sat, 30 Aug 2025 01:24:47 +0800</pubDate></item><item><title>windows11 ltsc 2024完全离线安装winget</title><link>https://1688fs.net/index.php/post/63.html</link><description>&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;Add-AppxPackage&amp;nbsp;-Path&amp;nbsp;&amp;quot;C:\Winget\Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_x64__8wekyb3d8bbwe.Appx&amp;quot;&amp;nbsp;-ForceUpdateFromAnyVersion
Add-AppxPackage&amp;nbsp;-Path&amp;nbsp;&amp;quot;C:\Winget\Microsoft.UI.Xaml.2.8.x64.appx&amp;quot;&amp;nbsp;-ForceUpdateFromAnyVersion
Add-AppxPackage&amp;nbsp;-Path&amp;nbsp;&amp;quot;C:\Winget\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle&amp;quot;&amp;nbsp;-ForceUpdateFromAnyVersion&lt;/pre&gt;&lt;p&gt;这里的C:\Winget是下载后三个文件的存放目录。根据实际情况改变。&lt;br/&gt;&lt;/p&gt;&lt;table&gt;&lt;thead&gt;&lt;tr class=&quot;firstRow&quot;&gt;&lt;th&gt;包名&lt;/th&gt;&lt;th&gt;下载链接&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;VCLibs (x64)&lt;/td&gt;&lt;td style=&quot;word-break: break-all;&quot;&gt;&amp;nbsp;这里我提供一下这个文件下载，默认提供的 VCLibs 包是 Desktop 版本，但是 App Installer (WinGet) 需要的是 UWPDesktop 版本。&lt;p class=&quot;ue-upload&quot; style=&quot;line-height: 16px;&quot;&gt;&lt;img style=&quot;vertical-align: middle; margin-right: 2px;&quot; src=&quot;https://1688fs.net/zb_system/image/filetype/rar.png&quot;/&gt;&lt;a style=&quot;font-size:12px; color:#0066cc;&quot; href=&quot;https://1688fs.net/zb_users/upload/2025/08/202508301756486891592561.rar&quot; title=&quot;Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_x64__8wekyb3d8bbwe.rar&quot;&gt;Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_x64__8wekyb3d8bbwe.rar&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;UI.Xaml 2.8 (x64)&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.x64.appx&quot;&gt;https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.x64.appx&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;App Installer (msixbundle)&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle&quot;&gt;https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;这里还有一个比较简便的安装方法，参考这个链接：https://1688fs.net/index.php/post/62.html&lt;a href=&quot;{$zbp-&gt;host}/index.php/post/62.html&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 Aug 2025 00:56:29 +0800</pubDate></item><item><title>windows10 ltsc 2021\windows11 ltsc 2024用简单的三条命令安装winget</title><link>https://1688fs.net/index.php/post/62.html</link><description>&lt;p&gt;这一套命令，其实是微软在 &lt;strong data-start=&quot;22&quot; data-end=&quot;44&quot;&gt;PowerShell Gallery&lt;/strong&gt; 上新出的 &lt;strong data-start=&quot;50&quot; data-end=&quot;74&quot;&gt;WinGet PowerShell 模块&lt;/strong&gt;安装方式。&lt;/p&gt;&lt;hr data-start=&quot;96&quot; data-end=&quot;99&quot;/&gt;&lt;h3 data-start=&quot;101&quot; data-end=&quot;112&quot;&gt;你用的命令流程&lt;/h3&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;Install-PackageProvider&amp;nbsp;-Name&amp;nbsp;NuGet&amp;nbsp;-Force&amp;nbsp;|&amp;nbsp;Out-Null
Install-Module&amp;nbsp;-Name&amp;nbsp;Microsoft.WinGet.Client&amp;nbsp;-Force&amp;nbsp;-Repository&amp;nbsp;PSGallery&amp;nbsp;|&amp;nbsp;Out-Null
Repair-WinGetPackageManager&amp;nbsp;-Force&amp;nbsp;-Latest&lt;/pre&gt;&lt;pre class=&quot;overflow-visible!&quot; data-start=&quot;113&quot; data-end=&quot;312&quot;&gt;&lt;br/&gt;&lt;/pre&gt;&lt;ol data-start=&quot;314&quot; data-end=&quot;682&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;317&quot; data-end=&quot;393&quot;&gt;&lt;strong data-start=&quot;317&quot; data-end=&quot;334&quot;&gt;安装 NuGet 提供程序&lt;/strong&gt;&lt;br data-start=&quot;334&quot; data-end=&quot;337&quot;/&gt;&lt;code data-start=&quot;340&quot; data-end=&quot;365&quot;&gt;Install-PackageProvider&lt;/code&gt; 用来让 PowerShell 能从在线源拉取模块。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;398&quot; data-end=&quot;511&quot;&gt;&lt;strong data-start=&quot;398&quot; data-end=&quot;431&quot;&gt;安装 Microsoft.WinGet.Client 模块&lt;/strong&gt;&lt;br data-start=&quot;431&quot; data-end=&quot;434&quot;/&gt;这个模块相当于 &lt;strong data-start=&quot;445&quot; data-end=&quot;475&quot;&gt;winget 的 PowerShell API 封装&lt;/strong&gt;，而且里面自带了自动获取/修复 App Installer 的逻辑。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;516&quot; data-end=&quot;682&quot;&gt;&lt;strong data-start=&quot;516&quot; data-end=&quot;555&quot;&gt;Repair-WinGetPackageManager -Latest&lt;/strong&gt;&lt;br data-start=&quot;555&quot; data-end=&quot;558&quot;/&gt;这是关键命令 👉 它会自动检查系统里是否有 winget，如果缺少就帮你下载 &lt;strong data-start=&quot;601&quot; data-end=&quot;622&quot;&gt;最新的 App Installer&lt;/strong&gt;（也就是 winget 的核心），并修复依赖。&lt;br data-start=&quot;645&quot; data-end=&quot;648&quot;/&gt;相当于一条命令就完成了我给你写的那整套下载 + 安装逻辑。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;hr data-start=&quot;684&quot; data-end=&quot;687&quot;/&gt;&lt;h3 data-start=&quot;689&quot; data-end=&quot;700&quot;&gt;这种方式的优点&lt;/h3&gt;&lt;ul data-start=&quot;701&quot; data-end=&quot;842&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p data-start=&quot;703&quot; data-end=&quot;730&quot;&gt;&lt;strong data-start=&quot;703&quot; data-end=&quot;710&quot;&gt;更简单&lt;/strong&gt;：只要三条命令就能搞定，不用管依赖。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;733&quot; data-end=&quot;771&quot;&gt;&lt;strong data-start=&quot;733&quot; data-end=&quot;740&quot;&gt;更干净&lt;/strong&gt;：通过官方 PowerShell 模块，自动拉取最新版本。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p data-start=&quot;774&quot; data-end=&quot;842&quot;&gt;&lt;strong data-start=&quot;774&quot; data-end=&quot;781&quot;&gt;可维护&lt;/strong&gt;：以后直接再运行 &lt;code data-start=&quot;790&quot; data-end=&quot;827&quot;&gt;Repair-WinGetPackageManager -Latest&lt;/code&gt; 就能升级 winget。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sat, 30 Aug 2025 00:44:53 +0800</pubDate></item><item><title>WINGET安装程序的时候，有些程序会提示条款同意， 怎么默认同意</title><link>https://1688fs.net/index.php/post/61.html</link><description>&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); margin-top: 0px !important;&quot;&gt;要让 Winget&amp;nbsp;&lt;span style=&quot;font-weight: 600;&quot;&gt;自动同意所有许可协议&lt;/span&gt;，你需要使用一个特定的参数。&lt;/p&gt;&lt;h3 style=&quot;font-size: 18.288px; line-height: 1.5; margin: 18.288px 0px 13.716px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;核心解决方案：使用&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--accept-package-agreements&lt;/code&gt;&amp;nbsp;参数&lt;/h3&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;这个参数的作用就是告诉 Winget：“是的，所有条款我都同意了，直接继续安装，不要提示我”。&lt;/p&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;命令格式：&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;md-code-block md-code-block-light&quot; style=&quot;--ds-md-code-block-border-color: #e5e5e5; --ds-md-code-block-banner-wrap-background-color: white; --ds-md-code-banner-background-color: #f5f5f5; color: rgb(73, 73, 73); background: rgb(250, 250, 250); --ds-md-code-block-border-radius: 12px; --ds-md-code-block-font-size: calc(1.143*11px); border-radius: 12px; font-size: 12.573px; line-height: 20.1168px; margin-bottom: 11.43px; font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;div class=&quot;md-code-block-banner-wrap&quot; style=&quot;background-color: rgb(255, 255, 255); z-index: 6; position: sticky; top: 0px;&quot;&gt;&lt;div class=&quot;md-code-block-banner md-code-block-banner-lite&quot; style=&quot;background: none 0% 0% / auto repeat scroll padding-box border-box rgb(245, 245, 245); padding: 0px; line-height: 12.573px; justify-content: space-between; display: flex; border-top-left-radius: 12px; border-top-right-radius: 12px;&quot;&gt;&lt;div class=&quot;_121d384&quot; style=&quot;justify-content: space-between; align-items: center; width: 732px; padding: 6px 14px 6px 6px; display: flex;&quot;&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;span class=&quot;d813de27&quot; style=&quot;color: #525252; margin-left: 8px; font-size: 12px; line-height: 18px;&quot;&gt;powershell&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;div class=&quot;efa13877&quot; style=&quot;height: 28px; align-items: center; display: flex;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;pre style=&quot;font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; overflow: auto; padding: 9.144px 13.716px; text-wrap-mode: wrap; word-break: break-all; margin-top: 0px !important; margin-bottom: 0px !important;&quot;&gt;winget&amp;nbsp;install&amp;nbsp;&amp;lt;软件ID&amp;gt;&amp;nbsp;--accept-package-agreements&lt;/pre&gt;&lt;/div&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;实际例子：&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;md-code-block md-code-block-light&quot; style=&quot;--ds-md-code-block-border-color: #e5e5e5; --ds-md-code-block-banner-wrap-background-color: white; --ds-md-code-banner-background-color: #f5f5f5; color: rgb(73, 73, 73); background: rgb(250, 250, 250); --ds-md-code-block-border-radius: 12px; --ds-md-code-block-font-size: calc(1.143*11px); border-radius: 12px; font-size: 12.573px; line-height: 20.1168px; margin-bottom: 11.43px; font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;div class=&quot;md-code-block-banner-wrap&quot; style=&quot;background-color: rgb(255, 255, 255); z-index: 6; position: sticky; top: 0px;&quot;&gt;&lt;div class=&quot;md-code-block-banner md-code-block-banner-lite&quot; style=&quot;background: none 0% 0% / auto repeat scroll padding-box border-box rgb(245, 245, 245); padding: 0px; line-height: 12.573px; justify-content: space-between; display: flex; border-top-left-radius: 12px; border-top-right-radius: 12px;&quot;&gt;&lt;div class=&quot;_121d384&quot; style=&quot;justify-content: space-between; align-items: center; width: 732px; padding: 6px 14px 6px 6px; display: flex;&quot;&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;span class=&quot;d813de27&quot; style=&quot;color: #525252; margin-left: 8px; font-size: 12px; line-height: 18px;&quot;&gt;powershell&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;div class=&quot;efa13877&quot; style=&quot;height: 28px; align-items: center; display: flex;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;pre style=&quot;font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; overflow: auto; padding: 9.144px 13.716px; text-wrap-mode: wrap; word-break: break-all; margin-top: 0px !important; margin-bottom: 0px !important;&quot;&gt;#&amp;nbsp;安装&amp;nbsp;Java&amp;nbsp;运行时并自动接受其协议
winget&amp;nbsp;install&amp;nbsp;Oracle.JavaRuntimeEnvironment&amp;nbsp;--accept-package-agreements

#&amp;nbsp;安装更常用的&amp;nbsp;Adoptium&amp;nbsp;Temurin&amp;nbsp;JDK&amp;nbsp;并自动接受协议
winget&amp;nbsp;install&amp;nbsp;EclipseAdoptium.Temurin.17.JDK&amp;nbsp;--accept-package-agreements&lt;/pre&gt;&lt;/div&gt;&lt;h3 style=&quot;font-size: 18.288px; line-height: 1.5; margin: 18.288px 0px 13.716px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;进阶用法：组合其他参数实现完全静默安装&lt;/h3&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;通常，你会希望安装过程完全无人值守，还可以结合其他参数：&lt;/p&gt;&lt;div class=&quot;md-code-block md-code-block-light&quot; style=&quot;--ds-md-code-block-border-color: #e5e5e5; --ds-md-code-block-banner-wrap-background-color: white; --ds-md-code-banner-background-color: #f5f5f5; color: rgb(73, 73, 73); background: rgb(250, 250, 250); --ds-md-code-block-border-radius: 12px; --ds-md-code-block-font-size: calc(1.143*11px); border-radius: 12px; font-size: 12.573px; line-height: 20.1168px; margin-bottom: 11.43px; font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;div class=&quot;md-code-block-banner-wrap&quot; style=&quot;background-color: rgb(255, 255, 255); z-index: 6; position: sticky; top: 0px;&quot;&gt;&lt;div class=&quot;md-code-block-banner md-code-block-banner-lite&quot; style=&quot;background: none 0% 0% / auto repeat scroll padding-box border-box rgb(245, 245, 245); padding: 0px; line-height: 12.573px; justify-content: space-between; display: flex; border-top-left-radius: 12px; border-top-right-radius: 12px;&quot;&gt;&lt;div class=&quot;_121d384&quot; style=&quot;justify-content: space-between; align-items: center; width: 732px; padding: 6px 14px 6px 6px; display: flex;&quot;&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;span class=&quot;d813de27&quot; style=&quot;color: #525252; margin-left: 8px; font-size: 12px; line-height: 18px;&quot;&gt;powershell&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;div class=&quot;efa13877&quot; style=&quot;height: 28px; align-items: center; display: flex;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;pre style=&quot;font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; overflow: auto; padding: 9.144px 13.716px; text-wrap-mode: wrap; word-break: break-all; margin-top: 0px !important; margin-bottom: 0px !important;&quot;&gt;winget&amp;nbsp;install&amp;nbsp;&amp;lt;软件ID&amp;gt;&amp;nbsp;--accept-package-agreements&amp;nbsp;--silent
#&amp;nbsp;或者更简短的写法winget&amp;nbsp;install&amp;nbsp;&amp;lt;软件ID&amp;gt;&amp;nbsp;-h&amp;nbsp;--accept-package-agreements&lt;/pre&gt;&lt;/div&gt;&lt;ul style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; padding-left: 27.432px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 16.002px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--silent&lt;/code&gt;&amp;nbsp;或&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;-h&lt;/code&gt;&amp;nbsp;参数用于&lt;span style=&quot;font-weight: 600;&quot;&gt;静默安装&lt;/span&gt;，不显示安装程序的图形界面。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--accept-package-agreements&lt;/code&gt;&amp;nbsp;用于&lt;span style=&quot;font-weight: 600;&quot;&gt;自动接受许可协议&lt;/span&gt;。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;一个完整的例子：&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;md-code-block md-code-block-light&quot; style=&quot;--ds-md-code-block-border-color: #e5e5e5; --ds-md-code-block-banner-wrap-background-color: white; --ds-md-code-banner-background-color: #f5f5f5; color: rgb(73, 73, 73); background: rgb(250, 250, 250); --ds-md-code-block-border-radius: 12px; --ds-md-code-block-font-size: calc(1.143*11px); border-radius: 12px; font-size: 12.573px; line-height: 20.1168px; margin-bottom: 11.43px; font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;div class=&quot;md-code-block-banner-wrap&quot; style=&quot;background-color: rgb(255, 255, 255); z-index: 6; position: sticky; top: 0px;&quot;&gt;&lt;div class=&quot;md-code-block-banner md-code-block-banner-lite&quot; style=&quot;background: none 0% 0% / auto repeat scroll padding-box border-box rgb(245, 245, 245); padding: 0px; line-height: 12.573px; justify-content: space-between; display: flex; border-top-left-radius: 12px; border-top-right-radius: 12px;&quot;&gt;&lt;div class=&quot;_121d384&quot; style=&quot;justify-content: space-between; align-items: center; width: 732px; padding: 6px 14px 6px 6px; display: flex;&quot;&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;span class=&quot;d813de27&quot; style=&quot;color: #525252; margin-left: 8px; font-size: 12px; line-height: 18px;&quot;&gt;powershell&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;d2a24f03&quot; style=&quot;flex-shrink: 0;&quot;&gt;&lt;div class=&quot;efa13877&quot; style=&quot;height: 28px; align-items: center; display: flex;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;pre style=&quot;font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; overflow: auto; padding: 9.144px 13.716px; text-wrap-mode: wrap; word-break: break-all; margin-top: 0px !important; margin-bottom: 0px !important;&quot;&gt;#&amp;nbsp;完全静默地安装&amp;nbsp;Java，自动接受所有协议
winget&amp;nbsp;install&amp;nbsp;EclipseAdoptium.Temurin.17.JDK&amp;nbsp;--accept-package-agreements&amp;nbsp;--silent&lt;/pre&gt;&lt;/div&gt;&lt;h3 style=&quot;font-size: 18.288px; line-height: 1.5; margin: 18.288px 0px 13.716px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;重要提醒和注意事项&lt;/h3&gt;&lt;ol start=&quot;1&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; padding-left: 27.432px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 16.002px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;参数的作用对象&lt;/span&gt;：&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--accept-package-agreements&lt;/code&gt;&amp;nbsp;参数&lt;span style=&quot;font-weight: 600;&quot;&gt;只对当前执行的这一条&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget install&lt;/code&gt;&amp;nbsp;命令有效&lt;/span&gt;，不会影响你之后安装其他软件。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;负责任地使用&lt;/span&gt;：虽然自动化很方便，但请确保你了解并确实同意所安装软件的许可条款。这个参数相当于你替自己点击了“我同意”。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;并非所有软件都需要&lt;/span&gt;：只有那些安装器明确包含了需要交互确认的许可协议的软件才需要这个参数。大部分软件不需要。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 0px; line-height: 28.575px; margin-bottom: 0px !important;&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;查找需要许可协议的软件&lt;/span&gt;：你可以使用&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget show &amp;lt;软件ID&amp;gt;&lt;/code&gt;&amp;nbsp;命令来提前了解某个软件包的信息。如果输出内容中包含&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;License:&lt;/code&gt;&amp;nbsp;或者&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;Agreements:&lt;/code&gt;&amp;nbsp;字段，通常就意味着安装时需要这个参数。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h3 style=&quot;font-size: 18.288px; line-height: 1.5; margin: 18.288px 0px 13.716px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;其他常见的自动化参数&lt;/h3&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;为了让你的安装体验更加无缝，这里还有两个常用的参数：&lt;/p&gt;&lt;div class=&quot;markdown-table-wrapper&quot; style=&quot;overflow-x: auto; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 16.002px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;table width=&quot;NaN&quot;&gt;&lt;thead&gt;&lt;tr class=&quot;firstRow&quot;&gt;&lt;th style=&quot;padding-top: 10px; padding-bottom: 10px; padding-left: 0px; border-bottom-color: rgb(187, 187, 187); border-top: none; font-size: 15px; line-height: 1.72; border-right-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); text-align: left;&quot;&gt;参数&lt;/th&gt;&lt;th style=&quot;padding-top: 10px; padding-bottom: 10px; border-bottom-color: rgb(187, 187, 187); border-top: none; font-size: 15px; line-height: 1.72; border-right-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); text-align: left;&quot;&gt;全称&lt;/th&gt;&lt;th style=&quot;padding-top: 10px; padding-bottom: 10px; border-bottom-color: rgb(187, 187, 187); border-top: none; font-size: 15px; line-height: 1.72; border-right-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); text-align: left;&quot;&gt;作用&lt;/th&gt;&lt;th style=&quot;padding-top: 10px; padding-bottom: 10px; border-bottom-color: rgb(187, 187, 187); border-top: none; font-size: 15px; line-height: 1.72; border-right-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); text-align: left;&quot;&gt;例子&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; padding-left: 0px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--silent&lt;/code&gt;&lt;/span&gt;&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--silent&lt;/code&gt;&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;静默安装，不显示任何安装界面。&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget install 7zip.7zip --silent&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; padding-left: 0px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;-s&lt;/code&gt;&lt;/span&gt;&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--source&lt;/code&gt;&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;指定安装源（如&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget&lt;/code&gt;&amp;nbsp;或&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;msstore&lt;/code&gt;）。&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget install Microsoft.PowerToys -s winget&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; padding-left: 0px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;-v&lt;/code&gt;&lt;/span&gt;&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--version&lt;/code&gt;&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;安装特定版本。&lt;/td&gt;&lt;td style=&quot;padding-top: 10px; padding-bottom: 10px; border-color: rgb(229, 229, 229); font-size: 15px; line-height: 1.72; min-width: 100px; max-width: max(30vw, 320px);&quot;&gt;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;winget install Google.Chrome -v 115.0.5790.110&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; margin-bottom: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;总结一下：&lt;/span&gt;&lt;br/&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;记住&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--accept-package-agreements&lt;/code&gt;&amp;nbsp;这个参数&lt;/span&gt;，它在安装像 Java、Node.js 或其他有明确弹出许可协议提示的软件时是必需的。结合&amp;nbsp;&lt;code style=&quot;font-size: 0.875em; font-weight: 600; font-family: Menlo, &amp;quot;Roboto Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace, Inter, sans-serif; background-color: rgb(236, 236, 236); border-radius: 4px; padding: 0.15rem 0.3rem;&quot;&gt;--silent&lt;/code&gt;&amp;nbsp;参数，你就可以实现真正的“一键自动安装”。&lt;/p&gt;&lt;p class=&quot;ds-markdown-paragraph&quot; style=&quot;margin-top: 13.716px; font-size: 16.002px; line-height: 28.575px; color: rgb(64, 64, 64); font-family: quote-cjk-patch, Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Noto Sans&amp;quot;, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, Oxygen, &amp;quot;Open Sans&amp;quot;, sans-serif; text-wrap-mode: wrap; background-color: rgb(255, 255, 255); margin-bottom: 0px !important;&quot;&gt;以后遇到安装卡住，提示需要接受协议的情况，就知道该怎么处理了吧？&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Fri, 29 Aug 2025 23:59:00 +0800</pubDate></item><item><title>windows10自动识别版本批量KMS激活命令，批处理程序代码</title><link>https://1688fs.net/index.php/post/60.html</link><description>&lt;p&gt;把下面的代码复制下来，保存为&amp;quot;.bat&amp;quot;格式的文件，&lt;br/&gt;比如在桌面保存为“激活.bat”,右键-管理员身份运行。&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;@echo&amp;nbsp;off
echo&amp;nbsp;==============================================
echo&amp;nbsp;Windows&amp;nbsp;批量授权版&amp;nbsp;KMS&amp;nbsp;自动激活脚本
echo&amp;nbsp;请确保已获得合法授权，非授权使用将违反软件协议
echo&amp;nbsp;==============================================

::&amp;nbsp;检查管理员权限
net&amp;nbsp;session&amp;nbsp;&amp;gt;nul&amp;nbsp;2&amp;gt;&amp;amp;1
if&amp;nbsp;%errorlevel%&amp;nbsp;neq&amp;nbsp;0&amp;nbsp;(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo&amp;nbsp;错误：请右键选择&amp;quot;以管理员身份运行&amp;quot;此脚本！
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pause
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;exit&amp;nbsp;/b&amp;nbsp;1
)&amp;nbsp;else&amp;nbsp;(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo&amp;nbsp;已确认管理员权限，继续执行...
)

::&amp;nbsp;获取系统版本信息
for&amp;nbsp;/f&amp;nbsp;&amp;quot;tokens=3*&amp;quot;&amp;nbsp;%%a&amp;nbsp;in&amp;nbsp;(&amp;#39;reg&amp;nbsp;query&amp;nbsp;&amp;quot;HKLM\SOFTWARE\Microsoft\Windows&amp;nbsp;NT\CurrentVersion&amp;quot;&amp;nbsp;/v&amp;nbsp;ProductName&amp;nbsp;2^&amp;gt;nul&amp;#39;)&amp;nbsp;do&amp;nbsp;set&amp;nbsp;&amp;quot;WinProduct=%%a&amp;nbsp;%%b&amp;quot;

echo.
echo&amp;nbsp;当前系统版本：%WinProduct%

::&amp;nbsp;根据系统版本选择对应&amp;nbsp;KMS&amp;nbsp;GVLK
set&amp;nbsp;&amp;quot;GVLK=&amp;quot;
if&amp;nbsp;/i&amp;nbsp;&amp;quot;%WinProduct%&amp;quot;==&amp;quot;Windows&amp;nbsp;10&amp;nbsp;Enterprise&amp;nbsp;LTSC&amp;nbsp;2019&amp;quot;&amp;nbsp;set&amp;nbsp;&amp;quot;GVLK=M7XTQ-FN8P6-TTKYV-9D4CC-J462D&amp;quot;
if&amp;nbsp;/i&amp;nbsp;&amp;quot;%WinProduct%&amp;quot;==&amp;quot;Windows&amp;nbsp;10&amp;nbsp;Enterprise&amp;nbsp;LTSC&amp;nbsp;2021&amp;quot;&amp;nbsp;set&amp;nbsp;&amp;quot;GVLK=NPPR9-FWDCX-D2C8J-H872K-2YT43&amp;quot;
if&amp;nbsp;/i&amp;nbsp;&amp;quot;%WinProduct%&amp;quot;==&amp;quot;Windows&amp;nbsp;10&amp;nbsp;Enterprise&amp;quot;&amp;nbsp;set&amp;nbsp;&amp;quot;GVLK=NPPR9-FWDCX-D2C8J-H872K-2YT43&amp;quot;
if&amp;nbsp;/i&amp;nbsp;&amp;quot;%WinProduct%&amp;quot;==&amp;quot;Windows&amp;nbsp;10&amp;nbsp;Education&amp;quot;&amp;nbsp;set&amp;nbsp;&amp;quot;GVLK=NW6C2-QMPVW-D7KKK-3GKT6-VCFB2&amp;quot;
if&amp;nbsp;/i&amp;nbsp;&amp;quot;%WinProduct%&amp;quot;==&amp;quot;Windows&amp;nbsp;10&amp;nbsp;Pro&amp;quot;&amp;nbsp;set&amp;nbsp;&amp;quot;GVLK=W269N-WFGWX-YVC9B-4J6C9-T83GX&amp;quot;

if&amp;nbsp;&amp;quot;%GVLK%&amp;quot;==&amp;quot;&amp;quot;&amp;nbsp;(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo&amp;nbsp;未找到适配的&amp;nbsp;GVLK，请手动填写对应密钥！
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pause
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;exit&amp;nbsp;/b&amp;nbsp;1
)

echo.
echo&amp;nbsp;正在安装对应的&amp;nbsp;KMS&amp;nbsp;客户端密钥：%GVLK%
cscript&amp;nbsp;//nologo&amp;nbsp;slmgr.vbs&amp;nbsp;/ipk&amp;nbsp;%GVLK%
if&amp;nbsp;%errorlevel%&amp;nbsp;neq&amp;nbsp;0&amp;nbsp;(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo&amp;nbsp;安装密钥失败，请检查系统版本是否支持&amp;nbsp;KMS！
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pause
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;exit&amp;nbsp;/b&amp;nbsp;1
)

::&amp;nbsp;设置&amp;nbsp;KMS&amp;nbsp;服务器（请修改为你的&amp;nbsp;KMS&amp;nbsp;地址）
echo.
echo&amp;nbsp;正在设置&amp;nbsp;KMS&amp;nbsp;服务器地址...
cscript&amp;nbsp;//nologo&amp;nbsp;slmgr.vbs&amp;nbsp;/skms&amp;nbsp;192.168.2.4

::&amp;nbsp;执行激活
echo.
echo&amp;nbsp;正在向&amp;nbsp;KMS&amp;nbsp;服务器发送激活请求...
cscript&amp;nbsp;//nologo&amp;nbsp;slmgr.vbs&amp;nbsp;/ato

::&amp;nbsp;等待片刻再查询状态
timeout&amp;nbsp;/t&amp;nbsp;5&amp;nbsp;/nobreak&amp;nbsp;&amp;gt;nul

::&amp;nbsp;显示激活状态
echo.
echo&amp;nbsp;激活完成，当前状态如下：
cscript&amp;nbsp;//nologo&amp;nbsp;slmgr.vbs&amp;nbsp;/xpr

echo.
echo&amp;nbsp;操作结束，按任意键退出...
pause&lt;/pre&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Thu, 28 Aug 2025 22:52:12 +0800</pubDate></item><item><title>用于基于 KMS 和 Active Directory 的 Office、Project 和 Visio 激活的 GVLK</title><link>https://1688fs.net/index.php/post/59.html</link><description>&lt;p style=&quot;box-sizing: inherit; outline-color: inherit; margin-top: 1rem; margin-bottom: 0px; padding: 0px; overflow-wrap: break-word;&quot;&gt;&lt;em style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit; font-weight: 600;&quot;&gt;适用于：&lt;/span&gt;&lt;/em&gt;&lt;em style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;Office LTSC 2024、Office LTSC 2021、Office 2019 和 Office 2016 的批量许可版本，包括 Project 和 Visio&lt;/em&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; outline-color: inherit; margin-top: 1rem; margin-bottom: 0px; padding: 0px; overflow-wrap: break-word;&quot;&gt;默认情况下，批量许可版本的 Office（如 Office LTSC 2024）随通用批量许可证密钥 (GVLK) 一起安装。 GVLK 使 Office 能够针对密钥管理服务 (KMS 自动发现并激活) 主计算机或 Active Directory 基础结构。&lt;/p&gt;&lt;div class=&quot;alert is-primary&quot; style=&quot;box-sizing: inherit; outline-color: rgb(22, 22, 22); background-color: rgb(235, 243, 252); color: rgb(22, 22, 22); overflow-wrap: break-word; word-break: break-word; border-color: rgb(17, 94, 163); border-style: solid; border-width: 1px; border-image: none 100% / 1 / 0 stretch; border-radius: 0.375rem; margin-top: 1rem; padding: 1rem; font-size: 1rem; transition: height 0.5s ease-in, opacity 0.5s ease-in; position: relative;&quot;&gt;&lt;p class=&quot;alert-title&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; overflow-wrap: break-word; color: rgb(17, 94, 163); font-weight: 600;&quot;&gt;&lt;span class=&quot;docon docon-status-info-outline&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: inherit; outline-color: inherit; font-family: docons; font-size: inherit; speak: none; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-align: center; direction: ltr; -webkit-font-smoothing: antialiased; font-weight: 400; line-height: 16px; display: inline-block;&quot;&gt;&lt;/span&gt;&amp;nbsp;重要&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; outline-color: inherit; margin-top: 1rem; margin-bottom: 0px; padding: 0px; max-width: 100%; overflow-wrap: break-word;&quot;&gt;这些许可证密钥不能用于在家激活 Office 的个人副本。 有关 Office 个人副本的产品密钥的信息，请参阅&amp;nbsp;&lt;a href=&quot;https://support.microsoft.com/office/12a5763a-d45c-4685-8c95-a44500213759&quot; data-linktype=&quot;external&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(17, 94, 163); cursor: pointer; overflow-wrap: break-word; background-color: rgba(0, 0, 0, 0); outline-style: initial; outline-width: 0px; font-weight: 600;&quot;&gt;将产品密钥与 Office 配合使用&lt;/a&gt;。&lt;/p&gt;&lt;/div&gt;&lt;a class=&quot;anchor-link docon docon-link&quot; href=&quot;https://learn.microsoft.com/zh-cn/office/volume-license-activation/gvlks#gvlks-for-office-ltsc-2024&quot; aria-label=&quot;节标题：GVLK for Office LTSC 2024&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(0, 101, 179); cursor: pointer; overflow-wrap: normal; text-decoration-line: none; background-color: rgb(255, 255, 255); outline-style: initial; outline-width: 0px; font-family: docons; font-size: 16px; speak: none; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-align: center; direction: ltr; -webkit-font-smoothing: antialiased; line-height: 16px; display: inline-block; width: 1px; transition: opacity 0.1s linear; position: absolute; inset-inline-start: -1.875rem; transform: translateY(-50%) scale(1); inset-block-start: 1.38125rem; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; opacity: 0; border: 0px; margin: -1px; padding: 0px; overflow: hidden; text-wrap-mode: wrap;&quot;&gt;&lt;/a&gt;&lt;div class=&quot;heading-wrapper&quot; data-heading-level=&quot;h2&quot; style=&quot;box-sizing: inherit; outline-color: inherit; position: relative; color: rgb(22, 22, 22); font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;h2 id=&quot;gvlks-for-office-ltsc-2024&quot; class=&quot;heading-anchor&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin: 32px 0px 12px; padding: 0px; font-size: clamp(1.59375rem, 18.7895px + 1.39803vw, 2.125rem); line-height: 1.3; margin-inline-start: -1.875rem; padding-inline-start: 1.875rem;&quot;&gt;GVLK for Office LTSC 2024&lt;/h2&gt;&lt;/div&gt;&lt;div class=&quot;alert is-info&quot; style=&quot;box-sizing: inherit; outline-color: rgb(22, 22, 22); background-color: rgb(239, 217, 253); color: rgb(22, 22, 22); overflow-wrap: break-word; word-break: break-word; border-color: rgb(59, 46, 88); border-style: solid; border-width: 1px; border-image: none 100% / 1 / 0 stretch; border-radius: 0.375rem; margin-top: 1rem; padding: 1rem; font-size: 16px; transition: height 0.5s ease-in, opacity 0.5s ease-in; position: relative; font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;p class=&quot;alert-title&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; overflow-wrap: break-word; color: rgb(59, 46, 88); font-weight: 600;&quot;&gt;&lt;span class=&quot;docon docon-status-error-outline&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: inherit; outline-color: inherit; font-family: docons; font-size: inherit; speak: none; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-align: center; direction: ltr; -webkit-font-smoothing: antialiased; font-weight: 400; line-height: 16px; display: inline-block;&quot;&gt;&lt;/span&gt;&amp;nbsp;备注&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; outline-color: inherit; margin-top: 1rem; margin-bottom: 0px; padding: 0px; max-width: 100%; overflow-wrap: break-word;&quot;&gt;Microsoft Publisher 未包含在 Office LTSC 2024 中。 此更改是由于发布服务器的计划停用，在 2026 年 10 月之后将不再支持该版本。 有关详细信息，请参阅&amp;nbsp;&lt;a href=&quot;https://support.microsoft.com/office/microsoft-publisher-will-no-longer-be-supported-after-october-2026-ee6302a2-4bc7-4841-babf-8e9be3acbfd7&quot; data-linktype=&quot;external&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(59, 46, 88); cursor: pointer; overflow-wrap: break-word; background-color: rgba(0, 0, 0, 0); outline-style: initial; outline-width: 0px; font-weight: 600;&quot;&gt;Microsoft发布服务器在 2026 年 10 月之后不再受支持&lt;/a&gt;。&lt;/p&gt;&lt;/div&gt;&lt;button class=&quot;button button-clear button-sm display-flex gap-xxs&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin: 0px; font-family: inherit; font-size: 0.875rem; line-height: 1.5; overflow: visible; appearance: none; cursor: pointer; user-select: none; min-height: 2.25em; box-shadow: none; vertical-align: top; border-width: 1px; border-style: solid; border-color: rgba(0, 0, 0, 0); border-radius: 0.25rem; justify-content: center; align-items: center; padding-block: calc(0.375em - 1px); padding-inline: 0.75em; position: relative; font-weight: 600; margin-block-end: 0.5rem; margin-inline-end: 0px; display: flex !important; gap: 0.5rem !important;&quot;&gt;&lt;span class=&quot;icon&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: inherit; outline-color: inherit; justify-content: center; align-items: center; display: inline-flex; width: 1em; height: 1em; font-size: 0.875em; margin-inline-end: 0.375em;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;/span&gt;&lt;/button&gt;&lt;div class=&quot;has-inner-focus&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(22, 22, 22); font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;table aria-label=&quot;GVLK for Office LTSC 2024&quot; class=&quot;table table-sm margin-top-none&quot; width=&quot;809&quot;&gt;&lt;thead style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5; text-align: left;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;产品&lt;/span&gt;&lt;/th&gt;&lt;th style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5; text-align: left;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;GVLK&lt;/span&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Office LTSC 专业增强版 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;XJ2XN-FW8RK-P4HMP-DKDBV-GCVGB&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Office LTSC 标准版 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;V28N4-JG22K-W66P8-VTMGK-H6HGR&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Project Professional 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;FQQ23-N4YCY-73HQ3-FM9WC-76HF4&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Project Standard 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;PD3TT-NTHQQ-VC7CY-MFXK3-G87F8&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Visio LTSC Professional 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;B7TN8-FJ8V3-7QYCP-HQPMV-YY89G&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Visio LTSC Standard 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;JMMVY-XFNQC-KK4HK-9H7R3-WQQTV&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Access LTSC 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;82FTR-NCHR7-W3944-MGRHM-JMCWD&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Excel LTSC 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;F4DYN-89BP2-WQTWJ-GR8YC-CKGJG&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Outlook LTSC 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;D2F8D-N3Q3B-J28PV-X27HD-RJWB9&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;PowerPoint LTSC 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;CW94N-K6GJH-9CTXY-MG2VC-FYCWP&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Skype for Business LTSC 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;4NKHF-9HBQF-Q3B6C-7YV34-F64P3&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Word LTSC 2024&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;MQ84N-7VYDM-FXV7C-6K7CC-VFW9J&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;heading-wrapper&quot; data-heading-level=&quot;h2&quot; style=&quot;box-sizing: inherit; outline-color: inherit; position: relative; color: rgb(22, 22, 22); font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;anchor-link docon docon-link&quot; href=&quot;https://learn.microsoft.com/zh-cn/office/volume-license-activation/gvlks#gvlks-for-office-ltsc-2021&quot; aria-label=&quot;节标题：GVLK for Office LTSC 2021&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(0, 101, 179); cursor: pointer; overflow-wrap: normal; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); outline-style: initial; outline-width: 0px; font-family: docons; font-size: 1rem; speak: none; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-align: center; direction: ltr; -webkit-font-smoothing: antialiased; line-height: 16px; display: inline-block; width: 1px; transition: opacity 0.1s linear; position: absolute; inset-inline-start: -1.875rem; transform: translateY(-50%) scale(1); inset-block-start: 1.38125rem; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; opacity: 0; border: 0px; margin: -1px; padding: 0px; overflow: hidden;&quot;&gt;&lt;/a&gt;&lt;h2 id=&quot;gvlks-for-office-ltsc-2021&quot; class=&quot;heading-anchor&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin: 32px 0px 12px; padding: 0px; font-size: clamp(1.59375rem, 18.7895px + 1.39803vw, 2.125rem); line-height: 1.3; margin-inline-start: -1.875rem; padding-inline-start: 1.875rem;&quot;&gt;GVLK for Office LTSC 2021&lt;/h2&gt;&lt;/div&gt;&lt;button class=&quot;button button-clear button-sm display-flex gap-xxs&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin: 0px; font-family: inherit; font-size: 0.875rem; line-height: 1.5; overflow: visible; appearance: none; cursor: pointer; user-select: none; min-height: 2.25em; box-shadow: none; vertical-align: top; border-width: 1px; border-style: solid; border-color: rgba(0, 0, 0, 0); border-radius: 0.25rem; justify-content: center; align-items: center; padding-block: calc(0.375em - 1px); padding-inline: 0.75em; position: relative; font-weight: 600; margin-block-end: 0.5rem; margin-inline-end: 0px; display: flex !important; gap: 0.5rem !important;&quot;&gt;&lt;span class=&quot;icon&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: inherit; outline-color: inherit; justify-content: center; align-items: center; display: inline-flex; width: 1em; height: 1em; font-size: 0.875em; margin-inline-end: 0.375em;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;/span&gt;&lt;/button&gt;&lt;div class=&quot;has-inner-focus&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(22, 22, 22); font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;table aria-label=&quot;GVLK for Office LTSC 2021&quot; class=&quot;table table-sm margin-top-none&quot; width=&quot;809&quot;&gt;&lt;thead style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5; text-align: left;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;产品&lt;/span&gt;&lt;/th&gt;&lt;th style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5; text-align: left;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;GVLK&lt;/span&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Office LTSC Professional Plus 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;FXYTK-NJJ8C-GB6DW-3DYQT-6F7TH&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Office LTSC Standard 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;KDX7X-BNVR8-TXXGX-4Q7Y8-78VT3&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Project Professional 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;FTNWT-C6WBT-8HMGF-K9PRX-QV9H8&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Project Standard 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;J2JDC-NJCYY-9RGQ4-YXWMH-T3D4T&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Visio LTSC Professional 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;KNH8D-FGHT4-T8RK3-CTDYJ-K2HT4&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Visio LTSC Standard 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;MJVNY-BYWPY-CWV6J-2RKRT-4M8QG&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Access LTSC 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;WM8YG-YNGDD-4JHDC-PG3F4-FC4T4&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Excel LTSC 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;NWG3X-87C9K-TC7YY-BC2G7-G6RVC&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Outlook LTSC 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;C9FM6-3N72F-HFJXB-TM3V9-T86R9&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;PowerPoint LTSC 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;TY7XF-NFRBR-KJ44C-G83KF-GX27K&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Publisher LTSC 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;2MW9D-N4BXM-9VBPG-Q7W6M-KFBGQ&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Skype for Business LTSC 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;HWCXN-K3WBT-WJBKY-R8BD9-XK29P&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Word LTSC 2021&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;TN8H9-M34D3-Y64V9-TR72V-X79KV&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;heading-wrapper&quot; data-heading-level=&quot;h2&quot; style=&quot;box-sizing: inherit; outline-color: inherit; position: relative; color: rgb(22, 22, 22); font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;anchor-link docon docon-link&quot; href=&quot;https://learn.microsoft.com/zh-cn/office/volume-license-activation/gvlks#gvlks-for-office-2019&quot; aria-label=&quot;节标题：Office 2019 的 GVLK&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(0, 101, 179); cursor: pointer; overflow-wrap: normal; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); outline-style: initial; outline-width: 0px; font-family: docons; font-size: 1rem; speak: none; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-align: center; direction: ltr; -webkit-font-smoothing: antialiased; line-height: 16px; display: inline-block; width: 1px; transition: opacity 0.1s linear; position: absolute; inset-inline-start: -1.875rem; transform: translateY(-50%) scale(1); inset-block-start: 1.38125rem; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; opacity: 0; border: 0px; margin: -1px; padding: 0px; overflow: hidden;&quot;&gt;&lt;/a&gt;&lt;h2 id=&quot;gvlks-for-office-2019&quot; class=&quot;heading-anchor&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin: 32px 0px 12px; padding: 0px; font-size: clamp(1.59375rem, 18.7895px + 1.39803vw, 2.125rem); line-height: 1.3; margin-inline-start: -1.875rem; padding-inline-start: 1.875rem;&quot;&gt;Office 2019 的 GVLK&lt;/h2&gt;&lt;/div&gt;&lt;button class=&quot;button button-clear button-sm display-flex gap-xxs&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin: 0px; font-family: inherit; font-size: 0.875rem; line-height: 1.5; overflow: visible; appearance: none; cursor: pointer; user-select: none; min-height: 2.25em; box-shadow: none; vertical-align: top; border-width: 1px; border-style: solid; border-color: rgba(0, 0, 0, 0); border-radius: 0.25rem; justify-content: center; align-items: center; padding-block: calc(0.375em - 1px); padding-inline: 0.75em; position: relative; font-weight: 600; margin-block-end: 0.5rem; margin-inline-end: 0px; display: flex !important; gap: 0.5rem !important;&quot;&gt;&lt;span class=&quot;icon&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: inherit; outline-color: inherit; justify-content: center; align-items: center; display: inline-flex; width: 1em; height: 1em; font-size: 0.875em; margin-inline-end: 0.375em;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;/span&gt;&lt;/button&gt;&lt;div class=&quot;has-inner-focus&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(22, 22, 22); font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;table aria-label=&quot;Office 2019 的 GVLK&quot; class=&quot;table table-sm margin-top-none&quot; width=&quot;809&quot;&gt;&lt;thead style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5; text-align: left;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;产品&lt;/span&gt;&lt;/th&gt;&lt;th style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5; text-align: left;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;GVLK&lt;/span&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Office 专业增强版 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;2019 Office Standard&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;6NWWJ-YQWMR-QKGCB-6TMB3-9D9HK&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Project Professional 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;B4NPR-3FKK7-T2MBV-FRQ4W-PKD2B&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;2019 Project Standard&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;C4F7P-NCP8C-6CQPT-MQHV9-JXD2M&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;2019 Visio Professional&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;9BGNQ-K37YR-RQHF2-38RQ3-7VCBB&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;2019 Visio Standard&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;7TQNQ-K3YQQ-3PFH7-CCPPM-X4VQ2&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Access 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;9N9PT-27V4Y-VJ2PD-YXFMF-YTFQT&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Excel 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;TMJWT-YYNMB-3BKTF-644FC-RVXBD&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Outlook 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;7HD7K-N4PVK-BHBCQ-YWQRW-XW4VK&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;PowerPoint 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;RRNCX-C64HY-W2MM7-MCH9G-TJHMQ&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Publisher 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;G2KWX-3NW6P-PY93R-JXK2T-C9Y9V&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Skype for Business 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;NCJ33-JHBBY-HTK98-MYCV8-HMKHJ&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Word 2019&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;PBX3G-NWMT6-Q7XBW-PYJGG-WXD33&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=&quot;alert is-info&quot; style=&quot;box-sizing: inherit; outline-color: rgb(22, 22, 22); background-color: rgb(239, 217, 253); color: rgb(22, 22, 22); overflow-wrap: break-word; word-break: break-word; border-color: rgb(59, 46, 88); border-style: solid; border-width: 1px; border-image: none 100% / 1 / 0 stretch; border-radius: 0.375rem; margin-top: 1rem; padding: 1rem; font-size: 16px; transition: height 0.5s ease-in, opacity 0.5s ease-in; position: relative; font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;p class=&quot;alert-title&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; overflow-wrap: break-word; color: rgb(59, 46, 88); font-weight: 600;&quot;&gt;&lt;span class=&quot;docon docon-status-error-outline&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: inherit; outline-color: inherit; font-family: docons; font-size: inherit; speak: none; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-align: center; direction: ltr; -webkit-font-smoothing: antialiased; font-weight: 400; line-height: 16px; display: inline-block;&quot;&gt;&lt;/span&gt;&amp;nbsp;备注&lt;/p&gt;&lt;p style=&quot;box-sizing: inherit; outline-color: inherit; margin-top: 1rem; margin-bottom: 0px; padding: 0px; max-width: 100%; overflow-wrap: break-word;&quot;&gt;没有新的 2019 版 OneNote，但 OneNote 版本随 Office 2019 一起安装。 有关详细信息，请参阅&amp;nbsp;&lt;a href=&quot;https://learn.microsoft.com/zh-cn/microsoft-365-apps/deploy/deployment-guide-onenote&quot; data-linktype=&quot;absolute-path&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(59, 46, 88); cursor: pointer; overflow-wrap: break-word; background-color: rgba(0, 0, 0, 0); outline-style: initial; outline-width: 0px; font-weight: 600;&quot;&gt;OneNote 的部署指南&lt;/a&gt;。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;heading-wrapper&quot; data-heading-level=&quot;h2&quot; style=&quot;box-sizing: inherit; outline-color: inherit; position: relative; color: rgb(22, 22, 22); font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;anchor-link docon docon-link&quot; href=&quot;https://learn.microsoft.com/zh-cn/office/volume-license-activation/gvlks#gvlks-for-office-2016&quot; aria-label=&quot;节标题：Office 2016 的 GVLK&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(0, 101, 179); cursor: pointer; overflow-wrap: normal; text-decoration-line: none; background-color: rgba(0, 0, 0, 0); outline-style: initial; outline-width: 0px; font-family: docons; font-size: 1rem; speak: none; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; text-align: center; direction: ltr; -webkit-font-smoothing: antialiased; line-height: 16px; display: inline-block; width: 1px; transition: opacity 0.1s linear; position: absolute; inset-inline-start: -1.875rem; transform: translateY(-50%) scale(1); inset-block-start: 1.38125rem; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; opacity: 0; border: 0px; margin: -1px; padding: 0px; overflow: hidden;&quot;&gt;&lt;/a&gt;&lt;h2 id=&quot;gvlks-for-office-2016&quot; class=&quot;heading-anchor&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin: 32px 0px 12px; padding: 0px; font-size: clamp(1.59375rem, 18.7895px + 1.39803vw, 2.125rem); line-height: 1.3; margin-inline-start: -1.875rem; padding-inline-start: 1.875rem;&quot;&gt;Office 2016 的 GVLK&lt;/h2&gt;&lt;/div&gt;&lt;button class=&quot;button button-clear button-sm display-flex gap-xxs&quot; style=&quot;box-sizing: inherit; outline-color: inherit; margin: 0px; font-family: inherit; font-size: 0.875rem; line-height: 1.5; overflow: visible; appearance: none; cursor: pointer; user-select: none; min-height: 2.25em; box-shadow: none; vertical-align: top; border-width: 1px; border-style: solid; border-color: rgba(0, 0, 0, 0); border-radius: 0.25rem; justify-content: center; align-items: center; padding-block: calc(0.375em - 1px); padding-inline: 0.75em; position: relative; font-weight: 600; margin-block-end: 0.5rem; margin-inline-end: 0px; display: flex !important; gap: 0.5rem !important;&quot;&gt;&lt;span class=&quot;icon&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: inherit; outline-color: inherit; justify-content: center; align-items: center; display: inline-flex; width: 1em; height: 1em; font-size: 0.875em; margin-inline-end: 0.375em;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;/span&gt;&lt;/button&gt;&lt;div class=&quot;has-inner-focus&quot; style=&quot;box-sizing: inherit; outline-color: inherit; color: rgb(22, 22, 22); font-family: &amp;quot;Segoe UI&amp;quot;, &amp;quot;Segoe UI Variable Text&amp;quot;, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;table aria-label=&quot;Office 2016 的 GVLK&quot; class=&quot;table table-sm margin-top-none&quot; width=&quot;809&quot;&gt;&lt;thead style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5; text-align: left;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;产品&lt;/span&gt;&lt;/th&gt;&lt;th style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5; text-align: left;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;GVLK&lt;/span&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Office Professional Plus 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Office Standard 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;JNRGM-WHDWX-FJJG3-K47QV-DRTFM&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Project Professional 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;YG9NW-3K39V-2T3HJ-93F3Q-G83KT&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Project Standard 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;GNFHQ-F6YQM-KQDGJ-327XX-KQBVC&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Visio Professional 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;PD3PC-RHNGV-FXJ29-8JK7D-RJRJK&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Visio Standard 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;7WHWN-4T7MP-G96JF-G33KR-W8GF4&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Access 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;GNH9Y-D2J4T-FJHGG-QRVH7-QPFDW&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Excel 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;9C2PK-NWTVB-JMPW8-BFT28-7FTBF&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;OneNote 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;DR92N-9HTF2-97XKM-XW2WJ-XW3J6&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Outlook 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;R69KK-NTPKF-7M3Q4-QYBHW-6MT9B&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;PowerPoint 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;J7MQP-HNJ4Y-WJ7YM-PFYGF-BY6C6&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Publisher 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;F47MM-N3XJP-TQXJ9-BP99D-8 837 K&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Skype for Business 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;869NQ-FJ69K-466HW-QYCP2-DDBV6&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;box-sizing: inherit; outline-color: inherit;&quot;&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;Word 2016&lt;br style=&quot;box-sizing: inherit; outline-color: inherit;&quot;/&gt;&lt;/td&gt;&lt;td style=&quot;box-sizing: inherit; outline-color: inherit; padding: 0.5rem; overflow-wrap: break-word; border-block-start: 1px solid rgb(209, 209, 209); vertical-align: top; line-height: 1.5;&quot;&gt;WXY84-JN2Q9-RBCCQ-3Q3J3-3PFJ6&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p&gt;文章转载于：https://learn.microsoft.com/zh-cn/office/volume-license-activation/gvlks&lt;/p&gt;</description><pubDate>Thu, 28 Aug 2025 22:18:28 +0800</pubDate></item></channel></rss>