<?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>系统运维 &#187; Windows</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/windows/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Wed, 01 Apr 2026 08:27:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windows系统下安装Docker环境</title>
		<link>https://www.osyunwei.com/archives/15454.html</link>
		<comments>https://www.osyunwei.com/archives/15454.html#comments</comments>
		<pubDate>Mon, 10 Mar 2025 06:57:14 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Docker]]></category>
		<category><![CDATA[docker]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15454</guid>
		<description><![CDATA[在Windows系统下运行Docker需要2个安装包 1、Docker Desktop on Windows Docker Desktop for Windows 提供了图形用户界面（GUI）以及一系列工具来简化 Docker 的使用过程。 Docker Desktop on Windows下载地址： https://docs.docker.com/desktop/setup/install/windows-install/ https://desktop.docker.com/win/main/amd64/Docker%20Desktop%20Installer.exe 2、WSL安装包 安装Windows Subsystem for Linux (WSL) 后，可以直接在 Windows上运行Docker Desktop WSL安装包下载地址： https://github.com/microsoft/WSL/releases https://github.com/microsoft/WSL/releases/download/2.4.11/Microsoft.WSL_2.4.11.0_x64_ARM64.msixbundle 安装部署 1、安装Docker Desktop Installer.exe 安装完成后会重启系统 2、安装Microsoft.WSL_2.4.11.0_x64_ARM64.msixbundle 安装完成后点关闭 3、修改docker镜像源，添加国内源 点Apply&#38;restart 4、查看docker版本信息 5、使用docker拉取镜像 6、使用图形界面部署镜像 Ports：80 表示把宿主机的80端口映射到容器的80端口 7、测试访问容器 至此，Windows系统下安装Docker环境完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/15454.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Windows系统下安装Docker环境<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15454.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15454.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 下添加Nginx 为系统服务</title>
		<link>https://www.osyunwei.com/archives/15414.html</link>
		<comments>https://www.osyunwei.com/archives/15414.html#comments</comments>
		<pubDate>Wed, 05 Mar 2025 10:44:22 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15414</guid>
		<description><![CDATA[需求：把Windows版本的nginx添加为系统服务，并且设置为开机自启动 操作步骤： 1、下载Windows Service Wrapper工具 Winsw (Windows Service Wrapper) 可以将任何可执行文件配置成为能够在Windows系统后台自动启动、停止、重启的服务。 Winsw的工作原理是读取一个XML配置文件（通常命名为winsw.xml），在这个配置文件中定义了服务的名称、可执行文件路径、启动参数、服务描述、日志配置等信息。 通过运行Winsw提供的exe文件（如winsw.exe），根据XML配置来管理对应的应用程序作为服务。 官方网站：https://github.com/winsw/winsw 下载地址：https://github.com/winsw/winsw/releases/download/v2.12.0/WinSW-x64.exe 2、编写XML配置文件 文件名nginx-service.xml，添加下面的内容，特别注意格式缩进 &#60;!-- nginx-service.xml --&#62; &#60;service&#62; &#60;id&#62;nginx&#60;/id&#62; &#60;name&#62;nginx&#60;/name&#62; &#60;description&#62;nginx&#60;/description&#62; &#60;logpath&#62;C:\nginx\server-logs\&#60;/logpath&#62; &#60;logmode&#62;roll&#60;/logmode&#62; &#60;depend&#62;&#60;/depend&#62; &#60;executable&#62;C:\nginx\nginx.exe&#60;/executable&#62; &#60;stopexecutable&#62;C:\nginx\nginx.exe -s stop&#60;/stopexecutable&#62; &#60;/service&#62; nginx安装目录：C:\nginx 上传WinSW-x64.exe和nginx-service.xml到nginx安装目录：C:\nginx下面 修改WinSW-x64.exe名称为nginx-service.exe nginx-service.xml和nginx-service.exe这2名称要一致 3、添加服务 以管理员身份运行命令提示符，切换到C:\nginx下面 .\nginx-service.exe install #注册系统服务，如果系统没有安装.net，根据提示先安装 4、查看系统服务 在Windows下查看系统服务 服务类型：自动 点启动 应用-确定 nginx相关操作命令： 注册系统服务命令 .\nginx-service.exe install 删除已注册的系统服务命令 .\nginx-service.exe uninstall 停止对应的系统服务命令 .\nginx-service.exe stop [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15414.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15414.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows-Server服务器无法安装.net freamwork 3.5解决办法</title>
		<link>https://www.osyunwei.com/archives/15408.html</link>
		<comments>https://www.osyunwei.com/archives/15408.html#comments</comments>
		<pubDate>Wed, 05 Mar 2025 09:40:18 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15408</guid>
		<description><![CDATA[遇到的问题：Windows-Server服务器安装.net报错，无法正常安装 解决办法：使用cab文件安装 下载地址： 网盘链接: https://pan.baidu.com/s/1OxfwMzeG0M1Effw6-xNXQw?pwd=qsv5 提取码: qsv5 操作步骤： 1. 复制microsoft-windows-netfx3-ondemand-package~31bf3856ad364e35~amd64~~.cab 文件到C盘根目录 2. 以管理员身份运行命令提示符 3. 输入dism /online /add-package /packagepath:C:\microsoft-windows-netfx3-ondemand-package~31bf3856ad364e35~amd64~~.cab 回车，直到操作成功完成，.net freamwork 3.5已经成功安装好了。 至此，Windows-Server服务器已经成功安装.net freamwork 3.5。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/15408.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Windows-Server服务器无法安装.net freamwork 3.5解决办法<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15408.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15408.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2025系统配置远程桌面多用户同时登录</title>
		<link>https://www.osyunwei.com/archives/15166.html</link>
		<comments>https://www.osyunwei.com/archives/15166.html#comments</comments>
		<pubDate>Fri, 07 Feb 2025 02:14:55 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[安全优化]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15166</guid>
		<description><![CDATA[Windows Server 2025系统默认只支持1个用户通过远程桌面登录服务器 现在需要多个用户使用同一个管理员账号同时登录服务器 一、Windows Server 2025系统安装 注意：这里要选择带桌面的，标准版和数据中心版都可以 二、配置远程桌面多用户同时登录 首先要开启远程桌面 默认只支持1个用户通过远程桌面登录服务器，如下图所示 2.1安装远程桌面服务 打开服务器管理器 添加角色和功能 勾选远程桌面服务 勾选 远程桌面会话主机 远程桌面授权 直到安装完成后点关闭 2.2配置本地组策略编辑器 运行 输入gpedit.msc 点确定 依次打开 本地计算机策略&#62;&#62;计算机配置 &#62;&#62; 管理模板 &#62;&#62; Windows 组件 &#62;&#62; 远程桌面服务 &#62;&#62; 远程桌面会话主机 &#62;&#62; 连接 要修改的策略如下 1、允许用户通过使用远程桌面服务进行远程连接&#62;&#62;启用 启用后就无法关闭远程桌面了，按钮会变成灰色，这一项也可以不做配置，默认即可。 2、拒绝将已经登录到控制台会话的管理员注销&#62;&#62;启用 3、将远程桌面服务用户限制到单独的远程桌面&#62;&#62;禁用 我们是多个用户使用同一个管理员账号同时登录服务器，所以要设置成禁用 启用：不同的用户使用不同的账户密码连接； 禁用：不同的用户使用同一个账户密码连接，但是会以不同的连接区分； 4、限制连接的数量&#62;&#62;启用 最大连接数：999999 表示不受限制 2.3.强制更新组策略 运行，输入：gpupdate /force 点确定 现在已经可以多个用户使用同一个管理员账号同时登录服务器了 注意：Windows必须要激活，否则还是只能支持2个用户同时连接 至此，Windows Server [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15166.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15166.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2022 IIS10.0+PHP（FastCGI）+MySQL环境搭建教程</title>
		<link>https://www.osyunwei.com/archives/11702.html</link>
		<comments>https://www.osyunwei.com/archives/11702.html#comments</comments>
		<pubDate>Thu, 07 Oct 2021 08:53:40 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=11702</guid>
		<description><![CDATA[准备篇 一、环境说明： 操作系统：Windows Server 2022 PHP版本：php 8.0.11 MySQL版本：MySQL 8.0.18.0 二、相关软件下载： 1、PHP下载地址： https://windows.php.net/downloads/releases/php-8.0.11-nts-Win32-vs16-x64.zip 2、MySQL下载地址： https://cdn.mysql.com//Downloads/MySQLInstaller/mysql-installer-community-8.0.26.0.msi 3、Visual C++ Redistributable for Visual Studio 2015-2022（安装PHP、MySQL需要此插件） https://aka.ms/vs/16/release/vc_redist.x86.exe https://aka.ms/vs/16/release/vc_redist.x64.exe 自 Visual Studio 2015 以来的 Visual Studio 版本共享相同的可再发行文件。 例如，使用 Visual Studio 2015、2017 或 2019 工具集构建的应用程序可以使用最新的 Microsoft Visual C++ Redistributable。 但是，计算机上安装的 Microsoft Visual C++ 可再发行组件的版本必须与用于创建应用程序的 Visual C++ 工具集的版本相同或更高。 4、Microsoft URL 重写模块 2.1下载地址（IIS伪静态需要此插件） https://www.iis.net/downloads/microsoft/url-rewrite [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/11702.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/11702.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2019 IIS10.0+PHP（FastCGI）+MySQL环境搭建教程</title>
		<link>https://www.osyunwei.com/archives/10359.html</link>
		<comments>https://www.osyunwei.com/archives/10359.html#comments</comments>
		<pubDate>Mon, 11 Nov 2019 06:43:26 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[FastCGI]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=10359</guid>
		<description><![CDATA[准备篇 一、环境说明： 操作系统：Windows Server 2019 PHP版本：php 7.3.11 MySQL版本：MySQL 8.0.18.0 二、相关软件下载： 1、PHP下载地址： https://windows.php.net/downloads/releases/php-7.3.11-nts-Win32-VC15-x64.zip 2、MySQL下载地址： https://cdn.mysql.com//Downloads/MySQLInstaller/mysql-installer-community-8.0.18.0.msi 3、Visual C++ Redistributable for Visual Studio 2015（安装PHP、MySQL需要此插件） https://download.visualstudio.microsoft.com/download/pr/11100229/78c1e864d806e36f6035d80a0e80399e/VC_redist.x86.exe https://download.visualstudio.microsoft.com/download/pr/11100230/15ccb3f02745c7b206ad10373cbca89b/VC_redist.x64.exe 4、Microsoft URL 重写模块 2.0下载地址（IIS伪静态需要此插件） https://download.microsoft.com/download/4/E/7/4E7ECE9A-DF55-4F90-A354-B497072BDE0A/rewrite_x64_zh-CN.msi 安装篇 一、安装IIS10.0 控制面板-系统和安全-管理工具 服务器管理器 添加角色和功能 下一步 选择：基于角色或基于功能的安装 下一步 选择：从服务器池中选择服务器 下一步 选择：Web服务器（IIS） 添加功能 下一步 下一步 下一步 确保CGI被选中，其他的角色服务根据需要选择，如果不知道如何选择，建议选择全部功能。 下一步 安装 显示安装成功，点关闭。 可以看到角色和服务器组中已经有了IIS 打开IE浏览器，输入http://127.0.0.1/会看到下面的界面 IIS10.0已经安装完成。 二、安装PHP 1、Visual C++ Redistributable for [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/10359.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/10359.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2016 IIS10.0+PHP（FastCGI）+MySQL环境搭建教程</title>
		<link>https://www.osyunwei.com/archives/9957.html</link>
		<comments>https://www.osyunwei.com/archives/9957.html#comments</comments>
		<pubDate>Mon, 26 Dec 2016 07:48:34 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Server 2016]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9957</guid>
		<description><![CDATA[准备篇 一、环境说明： 操作系统：Windows Server 2016 PHP版本：php 7.1.0 MySQL版本：MySQL 5.7.17.0 二、相关软件下载： 1、PHP下载地址： http://windows.php.net/downloads/releases/php-7.1.0-nts-Win32-VC14-x86.zip 2、MySQL下载地址： http://cdn.mysql.com//Downloads/MySQLInstaller/mysql-installer-community-5.7.17.0.msi 3、Microsoft Visual C++ 2010 可再发行组件包（安装MySQL需要此插件） https://download.microsoft.com/download/5/B/C/5BC5DBB3-652D-4DCE-B14A-475AB85EEF6E/vcredist_x86.exe https://download.microsoft.com/download/3/2/2/3224B87F-CFA0-4E70-BDA3-3DE650EFEBA5/vcredist_x64.exe 4、Visual C++ Redistributable for Visual Studio 2015（安装PHP需要此插件） https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe 5、Microsoft URL 重写模块 2.0下载地址（IIS伪静态需要此插件） https://download.microsoft.com/download/4/E/7/4E7ECE9A-DF55-4F90-A354-B497072BDE0A/rewrite_x64_zh-CN.msi 安装篇 一、安装IIS10.0 服务器管理器-添加角色和功能 下一步 选择：基于角色或基于功能的安装 下一步 选择：从服务器池中选择服务器 下一步 选择：Web服务器（IIS） 添加功能 下一步 下一步 确保CGI被选中，其他的角色服务根据需要选择，如果不知道如何选择，建议选择全部功能。 下一步 安装 正在安装中 显示安装成功，点关闭。 可以看到角色和服务器组中已经有了IIS 打开IE浏览器，输入http://127.0.0.1/会看到下面的界面 IIS10.0已经安装完成。 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9957.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9957.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>导出Windows服务器下的Oracle数据库并导入到Linux服务器下的Oracle数据库中</title>
		<link>https://www.osyunwei.com/archives/5943.html</link>
		<comments>https://www.osyunwei.com/archives/5943.html#comments</comments>
		<pubDate>Wed, 27 Mar 2013 14:34:27 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=5943</guid>
		<description><![CDATA[说明： 1、Windows Oracle数据库 操作系统：Windows Server 2008 R2 IP地址：192.168.0.128 Oracle数据库版本：Oracle11gR1 SID：orcl 端口：1521 Oracle相关账号: 账号：system 密码：123456 账号：OSYUNWEI 密码：OSYUNWEI 账号：OSYUNWEILOG 密码：OSYUNWEILOG 2、Linux Oracle数据库 操作系统：CentOS 5.9 64位 Oracle数据库版本：Oracle11gR1 Oracle数据库安装目录：/data/oracle/ IP地址：192.168.0.198 SID：orcl 端口：1521 Oracle相关账号: 账号：system 密码：123456 3、客户端 操作系统：Windows Server 2003 R2 IP地址：192.168.0.74 Oracle客户端版本：win32_11gR1_client 具体操作： 一、从客户端登录Windows Oracle数据库服务器导出Oracle数据库 导出Oracle数据库到本地D:\backup目录中 开始-运行-cmd 确定，打开命令操作界面 输入： exp OSYUNWEI/OSYUNWEI@192.168.0.128/orcl owner=OSYUNWEI grants=y file=D:\backup\OSYUNWEI.dmp log=D:\backup\OSYUNWEI.log 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容 版权所有,转载请注明出处及原文链接 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/5943.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/5943.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
