<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>windows &#8211; 老丁的博客</title>
	<atom:link href="https://www.laoding.me/archives/tag/windows/feed" rel="self" type="application/rss+xml" />
	<link>https://www.laoding.me</link>
	<description></description>
	<lastBuildDate>Fri, 25 Oct 2024 20:51:09 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/09/cropped-图片_20240927133356-768x768-1-32x32.jpg</url>
	<title>windows &#8211; 老丁的博客</title>
	<link>https://www.laoding.me</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Mocreak &#8211; 一键安装Office 的利器</title>
		<link>https://www.laoding.me/archives/826</link>
					<comments>https://www.laoding.me/archives/826#comments</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Fri, 25 Oct 2024 20:51:09 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=826</guid>

					<description><![CDATA[Mocreak &#8211; 一键自动化部署Office 的利器。完全免费、绿色、简约、高效、安全的办公增强 [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="kb0PBd cvP2Ce jGGQ5e" data-snf="x5WNvb" data-snhf="0">
<div class="P8ujBc v5yQqb jqWpsc">
<div class="y0NFKc XeGcx">
<div class="oewGkc OBMdqc LeUQr Va3FIb EE3Upf" role="heading" aria-level="3">
<div class="v7jaNc ynAwRc MBeuO q8U8x oewGkc LeUQr M2szs" role="link">Mocreak &#8211; 一键自动化部署Office 的利器。完全免费、绿色、简约、高效、安全的办公增强工具，支持下载、安装、注册激活最新正版Office 组件。</div>
</div>
<div role="link">下载地址：https://www.mocreak.com/</div>
</div>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/826/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>windows利用批处理命令批量添加防火墙规则</title>
		<link>https://www.laoding.me/archives/804</link>
					<comments>https://www.laoding.me/archives/804#respond</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Fri, 25 Oct 2024 06:20:47 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=804</guid>

					<description><![CDATA[1.用途 Windows中利用防火墙规则，禁止程序联网更新，可防止破解后的程序联网更新后，破解失败，如Aodb [&#8230;]]]></description>
										<content:encoded><![CDATA[<h3>1.用途</h3>
<p>Windows中利用防火墙规则，禁止程序联网更新，可防止破解后的程序联网更新后，破解失败，如Aodbe Photoshop等</p>
<h3>2.命令用法</h3>
<pre><code>netsh advfirewall firewall add rule name=&quot;Block AdobeCollabSync&quot; dir=OUT program=&quot;C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\AdobeCollabSync.exe&quot; action=block</code></pre>
<h3>3.实际效果截图</h3>
<p><img decoding="async" src="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241025061835368.jpg?x-oss-process=image/auto-orient,1/quality,q_90/format,webp" alt="" /></p>
<h3>4.批处理命令</h3>
<pre><code>@echo off
netsh advfirewall firewall add rule name=&quot;Block Acrobat Tray&quot; dir=OUT program=&quot;C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\acrotray.exe&quot; action=block
netsh advfirewall firewall add rule name=&quot;Block AcroRd32&quot; dir=OUT program=&quot;C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\AcroRd32.exe&quot; action=block
netsh advfirewall firewall add rule name=&quot;Block acrodist&quot; dir=OUT program=&quot;C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\acrodist.exe&quot; action=block
netsh advfirewall firewall add rule name=&quot;Block AcroLayoutRecognizer&quot; dir=OUT program=&quot;C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\AcroLayoutRecognizer.exe&quot; action=block
netsh advfirewall firewall add rule name=&quot;Block AdobeCollabSync&quot; dir=OUT program=&quot;C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\AdobeCollabSync.exe&quot; action=block
echo All rules added successfully!
pause</code></pre>
<p>将上面的代码复制到记事本，另存为<code>.bat</code>批处理文件，用管理中身份执行即可达到批量添加防火墙规则的目的</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/804/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>windows平台程序打包软件Inno Setup Compiler</title>
		<link>https://www.laoding.me/archives/792</link>
					<comments>https://www.laoding.me/archives/792#respond</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Thu, 24 Oct 2024 02:20:28 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=792</guid>

					<description><![CDATA[1.Inno Setup Compiler软件介绍 Inno Setup Compiler是一个.exe程序打 [&#8230;]]]></description>
										<content:encoded><![CDATA[<h3>1.Inno Setup Compiler软件介绍</h3>
<p>Inno Setup Compiler是一个.exe程序打包工具，可将程序的目录文件重新打包成exe程序，进行二次安装，并且能在执行安装后运行部分命令</p>
<h3>2.官网下载及汉化</h3>
<p>地址：https://jrsoftware.org/isdl.php</p>
<p>中文汉化文件：<a href="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241024023215559.zip">ChineseSimplified</a></p>
<h3>3.配置文件示例（npc程序打包配置文件）</h3>
<pre class="code">; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "LaoDing内网穿透"
#define MyAppVersion "1.5"
#define MyAppPublisher "laoding.me"
#define MyAppURL "https://laoding.me/"
#define MyAppExeName "npc.exe"
#define MyAppAssocName MyAppName + " File"
#define MyAppAssocExt ".myp"
#define MyAppAssocKey StringChange(MyAppAssocName, " ", "") + MyAppAssocExt

[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{EA8D119B-0037-4C5A-9DAE-B4320C0471BC}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\npc
ArchitecturesAllowed=x64compatible
ArchitecturesInstallIn64BitMode=x64compatible
ChangesAssociations=yes
DisableProgramGroupPage=yes
PrivilegesRequired=admin
OutputBaseFilename=LaoDing内网穿透(安装版)
Compression=lzma
SolidCompression=yes
WizardStyle=modern
SetupIconFile=npc.ico
UninstallDisplayName=卸载{#MyAppName}
UninstallDisplayIcon=D:\应用软件\npc打包\unnpc.ico
AppCopyright=www.laoding.me
OutputDir=D:\应用软件\npc打包\Output
[Languages]
Name: "chinesesimplified"; MessagesFile: "compiler:Languages\ChineseSimplified.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "D:\应用软件\npc打包\npc.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "D:\应用软件\npc打包\conf\npc.conf"; DestDir: "{app}\conf"; Flags: ignoreversion recursesubdirs createallsubdirs

[Registry]
Root: HKA; Subkey: "Software\Classes\{#MyAppAssocExt}\OpenWithProgids"; ValueType: string; ValueName: "{#MyAppAssocKey}"; ValueData: ""; Flags: uninsdeletevalue
Root: HKA; Subkey: "Software\Classes\{#MyAppAssocKey}"; ValueType: string; ValueName: ""; ValueData: "{#MyAppAssocName}"; Flags: uninsdeletekey
Root: HKA; Subkey: "Software\Classes\{#MyAppAssocKey}\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\{#MyAppExeName},0"
Root: HKA; Subkey: "Software\Classes\{#MyAppAssocKey}\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\{#MyAppExeName}"" ""%1"""
Root: HKA; Subkey: "Software\Classes\Applications\{#MyAppExeName}\SupportedTypes"; ValueType: string; ValueName: ".myp"; ValueData: ""

[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; 
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon; 

[Run]
; 先执行安装命令
Filename: "{app}\npc.exe"; Parameters: "install"; Flags: waituntilterminated
; 安装完成后再启动服务
Filename: "{app}\npc.exe"; Parameters: "start"; Flags: waituntilterminated

[UninstallRun]
; 卸载时停止并删除 Npc 服务
Filename: "sc.exe"; Parameters: "stop Npc"; Flags: runhidden waituntilterminated; RunOnceId: "StopNpcService"
Filename: "sc.exe"; Parameters: "delete Npc"; Flags: runhidden waituntilterminated; RunOnceId: "DeleteNpcService"


[UninstallDelete]
; 删除安装目录和所有文件
Type: filesandordirs; Name: "{app}"
</pre>
<p>示例配置文件：<a href="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241024022456823.zip">npc配置文件</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/792/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>一键开启Windows远程桌面的批处理命令</title>
		<link>https://www.laoding.me/archives/675</link>
					<comments>https://www.laoding.me/archives/675#respond</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Mon, 07 Oct 2024 05:10:39 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[远程桌面]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=675</guid>

					<description><![CDATA[@回声关闭 :: 启用远程桌面服务 reg 添加“HKLM\SYSTEM\CurrentControlSet\ [&#8230;]]]></description>
										<content:encoded><![CDATA[<pre class="code"><span style="vertical-align: inherit;"><span style="vertical-align: inherit;">@回声关闭</span></span>
:: 启用远程桌面服务<span style="vertical-align: inherit;"><span style="vertical-align: inherit;">
reg 添加“HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server”/v fDenyTSConnections /t REG_DWORD /d 0 /f</span></span>
<span style="vertical-align: inherit;"><span style="vertical-align: inherit;">
@回声关闭</span></span>
REM 启用远程桌面 - 用户模式 (TCP-In) 规则
netsh advfirewall firewall set rule name="远程桌面 - 用户模式(TCP-In)" new enable=yes

REM 启用远程桌面 - 用户模式 (UDP-In) 规则
netsh advfirewall firewall set rule name="远程桌面 - 用户模式(UDP-In)" new enable=yes

REM 启用远程桌面 - 远程监控 (TCP-In) 规则
netsh advfirewall firewall set rule name="远程桌面 - 远程监控(TCP-In)" new enable=yes


@echo 远程桌面防火墙规则已成功启用。<span style="vertical-align: inherit;"><span style="vertical-align: inherit;">
暂停</span></span>
</pre>
<ul>
<li>下载批处理运行文件：<a href="http://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241007051018455.zip">开启远程桌面连接</a></li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/675/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Github上编译Rustdesk内置中转服务器</title>
		<link>https://www.laoding.me/archives/645</link>
					<comments>https://www.laoding.me/archives/645#comments</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Fri, 04 Oct 2024 07:54:21 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[Github]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[远程桌面]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=645</guid>

					<description><![CDATA[1.修改代码文件libs/hbb_common/src/config.rs（约103行） pub const  [&#8230;]]]></description>
										<content:encoded><![CDATA[<h2>1.修改代码文件libs/hbb_common/src/config.rs（约103行）</h2>
<pre class="code">pub const RENDEZVOUS_SERVERS: &amp;[&amp;str] = &amp;["cn.e-123.cn"];
pub const PUBLIC_RS_PUB_KEY: &amp;str = "跳转服务器key";</pre>
<h2>2.修改文件.github/workflows/flutter-ci.yml（约24行）</h2>
<p>&nbsp;</p>
<pre class="code">upload-artifact: true  #将值修改为true</pre>
<h2>3.点击Actions查看修改文件后的编辑进度</h2>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-646" src="http://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075309714.jpg" alt="" width="2104" height="1183" srcset="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075309714.jpg 2104w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075309714-300x169.jpg 300w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075309714-1024x576.jpg 1024w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075309714-768x432.jpg 768w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075309714-1536x864.jpg 1536w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075309714-2048x1152.jpg 2048w" sizes="(max-width: 2104px) 100vw, 2104px" /></p>
<h2>4.编译完成后，即可下载各种平台的Rustdesk软件</h2>
<p><img decoding="async" class="alignnone size-full wp-image-647" src="http://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075312285-scaled.jpg" alt="" width="2560" height="1579" srcset="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075312285-scaled.jpg 2560w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075312285-300x185.jpg 300w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075312285-1024x632.jpg 1024w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075312285-768x474.jpg 768w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075312285-1536x948.jpg 1536w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/20241004075312285-2048x1263.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" /></p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/645/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>windows虚拟机中Ubuntu系统共享挂载</title>
		<link>https://www.laoding.me/archives/639</link>
					<comments>https://www.laoding.me/archives/639#respond</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Wed, 02 Oct 2024 06:06:40 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[虚拟机]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=639</guid>

					<description><![CDATA[1、虚拟机设置 共享目录C:\Users\sz\VirtualBox VMs\share 2、Ubuntu中运 [&#8230;]]]></description>
										<content:encoded><![CDATA[<h3>1、虚拟机设置</h3>
<p><img decoding="async" src="https://www.laoding.me/wp-content/media/202404/12_1712991523.jpg" alt="" /><br />
共享目录<code>C:\Users\sz\VirtualBox VMs\share</code></p>
<h3>2、Ubuntu中运行挂载命令</h3>
<pre><code class="language-c">sudo mkdir /media/share</code></pre>
<pre><code class="language-c">sudo mount -t vboxsf share /media/share</code></pre>
<p><img decoding="async" src="https://www.laoding.me/wp-content/media/202404/13_1712991711.jpg" alt="" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/639/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>如何解决内网穿透程序被windows系统拦截，提示 “无法成功完成操作,因为文件包含病毒或潜在垃圾软件”</title>
		<link>https://www.laoding.me/archives/336</link>
					<comments>https://www.laoding.me/archives/336#respond</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Wed, 02 Oct 2024 02:56:35 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[内网穿透]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=336</guid>

					<description><![CDATA[1.首次运行内网穿透程序的时候，会被Windows系统拦截，如下图： &#160; 2.下载将内网穿透程序的批 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<h4 class="wp-block-heading">1.首次运行内网穿透程序的时候，会被Windows系统拦截，如下图：</h4>
</blockquote>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" width="580" height="243" class="wp-image-339" src="https://www.laoding.me/wp-content/uploads/2024/10/screenshot-20241002-105115.png" alt="" srcset="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/screenshot-20241002-105115.png 580w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/screenshot-20241002-105115-300x126.png 300w" sizes="(max-width: 580px) 100vw, 580px" /></figure>
</div>


<p>&nbsp;</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<h4 class="wp-block-heading">2.下载将内网穿透程序的批处理命令，运行即可：</h4>
</blockquote>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="798" class="wp-image-340" src="https://www.laoding.me/wp-content/uploads/2024/10/screenshot-20241002-105205-1024x798.png" alt="" srcset="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/screenshot-20241002-105205-1024x798.png 1024w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/screenshot-20241002-105205-300x234.png 300w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/screenshot-20241002-105205-768x598.png 768w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/screenshot-20241002-105205.png 1127w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>&nbsp;</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<h3 class="wp-block-heading">3.文件下载：</h3>
</blockquote>



<div class="wp-block-file"><a id="wp-block-file--media-9f782d1f-4916-4013-9fc7-91da8238c827" href="https://www.laoding.me/wp-content/uploads/2024/10/将内网穿透添加进安全项.zip"><mark class="has-inline-color has-vivid-cyan-blue-color" style="background-color: rgba(0, 0, 0, 0);">将内网穿透添加进安全项.zip</mark></a><a class="wp-block-file__button wp-element-button" href="https://www.laoding.me/wp-content/uploads/2024/10/将内网穿透添加进安全项.zip" download="" aria-describedby="wp-block-file--media-9f782d1f-4916-4013-9fc7-91da8238c827">下载</a></div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<h4 class="wp-block-heading">4.内网穿透程序下载：</h4>
</blockquote>



<figure class="wp-block-embed is-type-wp-embed">
<div class="wp-block-embed__wrapper">https://www.laoding.me/archives/312</div>
</figure>



<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/336/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>windows内网穿透的绿色运行版和一键安装包</title>
		<link>https://www.laoding.me/archives/312</link>
					<comments>https://www.laoding.me/archives/312#comments</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Tue, 01 Oct 2024 06:10:58 +0000</pubDate>
				<category><![CDATA[办公网络]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[内网穿透]]></category>
		<guid isPermaLink="false">https://www.laoding.me/?p=312</guid>

					<description><![CDATA[绿色版点击后直接运行，然后就可以在外网连接内网的Windows电脑，可用于远程桌面连接和文件共享等，运行视频如 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="300" height="300" data-id="313" src="https://www.laoding.me/wp-content/uploads/2024/10/2.jpg" alt="" class="wp-image-313" srcset="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/2.jpg 300w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/2-150x150.jpg 150w" sizes="auto, (max-width: 300px) 100vw, 300px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="300" height="300" data-id="314" src="https://www.laoding.me/wp-content/uploads/2024/10/1.jpg" alt="" class="wp-image-314" srcset="https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/1.jpg 300w, https://public-123.oss-cn-guangzhou.aliyuncs.com/2024/10/1-150x150.jpg 150w" sizes="auto, (max-width: 300px) 100vw, 300px" /></figure>
</figure>



<p>绿色版点击后直接运行，然后就可以在外网连接内网的Windows电脑，可用于<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color">远程桌面连接</mark></strong>和<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-red-color">文件共享</mark></strong>等，运行视频如下：</p>



<figure class="wp-block-video"><video height="2160" style="aspect-ratio: 3840 / 2160;" width="3840" controls src="https://www.laoding.me/wp-content/uploads/2024/10/20241001_124707-1.mp4"></video></figure>


<p>内网穿透安装版，完成安装后，以系统服务的方式运行，不再需要手动启动。</p>
<div class='alert alert-primary'><span class='alert-inner--text'>内网穿透依赖于<strong><span style="color: #993300;">公网服务器</span></strong>进行桥接，下面的绿色运行包和安装包，已经配置了公网服务器桥接服务，需要试用者可以直接下载使用。</span></div>


<ul class="wp-block-list">
<li>点击下载：<a href="https://www.laoding.me/wp-content/uploads/2024/10/LaoDing内网穿透绿色版.zip">LaoDing内网穿透(绿色版)</a></li>
</ul>



<ul class="wp-block-list">
<li>点击下载：<a href="https://www.laoding.me/wp-content/uploads/2024/10/LaoDing内网穿透-安装版.zip">LaoDing内网穿透-安装版</a></li>
</ul>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/312/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		<enclosure url="https://www.laoding.me/wp-content/uploads/2024/10/20241001_124707-1.mp4" length="4369026" type="video/mp4" />

			</item>
		<item>
		<title>推荐一些好看的壁纸</title>
		<link>https://www.laoding.me/archives/136</link>
					<comments>https://www.laoding.me/archives/136#respond</comments>
		
		<dc:creator><![CDATA[laoding]]></dc:creator>
		<pubDate>Fri, 27 Sep 2024 17:12:48 +0000</pubDate>
				<category><![CDATA[生活随笔]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">https://laoding.me/?p=136</guid>

					<description><![CDATA[windows11的精选壁纸]]></description>
										<content:encoded><![CDATA[<p>windows11的精选壁纸<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-130" src="https://laoding.me/wp-content/uploads/2024/09/3.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-132" src="https://laoding.me/wp-content/uploads/2024/09/1.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-131" src="https://laoding.me/wp-content/uploads/2024/09/2.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-129" src="https://laoding.me/wp-content/uploads/2024/09/4.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-128" src="https://laoding.me/wp-content/uploads/2024/09/5.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-127" src="https://laoding.me/wp-content/uploads/2024/09/6.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-126" src="https://laoding.me/wp-content/uploads/2024/09/7.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-125" src="https://laoding.me/wp-content/uploads/2024/09/8.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-124" src="https://laoding.me/wp-content/uploads/2024/09/9.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-123" src="https://laoding.me/wp-content/uploads/2024/09/10.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-122" src="https://laoding.me/wp-content/uploads/2024/09/11.jpg" alt="" width="2560" height="1440" /> <img loading="lazy" decoding="async" class="alignnone size-full wp-image-121" src="https://laoding.me/wp-content/uploads/2024/09/12.jpg" alt="" width="2560" height="1440" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.laoding.me/archives/136/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
