Windows TIME_WAIT端口未释放
从系统启动,Windows Vista 中、 在 Windows 7 中,Windows Server 2008 中和在 Windows Server 2008 R2 中的 497 天后未关闭 TIME_WAIT 状态的所有 TCP/IP 端口。 受影响的操作 … 阅读全文
从系统启动,Windows Vista 中、 在 Windows 7 中,Windows Server 2008 中和在 Windows Server 2008 R2 中的 497 天后未关闭 TIME_WAIT 状态的所有 TCP/IP 端口。 受影响的操作 … 阅读全文
在Windows server2019修改密码时,提示密码不满足密码策略的要求。检查最小密码长度,密码复杂性和密码历史的要求。如图所示 关闭策略方法,理论适用于其它Windows server系统: 开始→运行→gpedit.msc→计算机配置→Windows … 阅读全文
在安装Windows Server 2019的HPE服务器上,尝试通过HPE官方提供的BIOS更新包进行更新时,出现提示“该软件不支持当前系统。Channel Interface driver is not loaded. 请按“关闭”按钮退出。” 这是因为当 … 阅读全文
在Windows Server2019之后的版本系统更新,最长暂停更新时间为35天,那么如何彻底关闭系统更新呢,我们无需借助外部工具,其实默认系统提供了关闭更新的方法,具体操作如下。 打开cmd命令提示符,输入sconfig,输入数字5 输入M,选择手动更新回 … 阅读全文
所有的操作系统都有着一定的生命周期,在我们实际使用操作系统时,应了解操作系统官方停止维护的时间节点,以便我们可以提早的进行版本升级迁移工作,本文列举了一些常见的操作系统版本以及官方停止维护时间。 Rocky Linux系统 AlmaLinux系统 CentOS … 阅读全文
本文基于Dell PowerEdge R340服务器,RAID阵列卡使用S140(这里S表示软件)为例。 一、win2012r2系统安装找不到硬盘 通过S140配置好RAID后,在R340服务器安装windows2012r2版本时,看不到磁盘,这是由于缺少驱动 … 阅读全文
本文基于windows 2012r2版本来配置AD域管理账号 网上有教程说需要先配置服务器的DNS为127.0.0.1,在Windows2012r2版本中无需此配置(其他版本未测),因为在安装完成后,系统会自动配置DNS为127.0.0.1,还有的教程说要先安 … 阅读全文
本文基于Windows2012r2版本验证,理论适用于其他版本。 在创建好的AD域中删除组织单位,提示你没有足够的权限删除whsir,或者该对象受保护,以防止意外删除。 这是由于你之前创建组织单位时,默认勾选了“防止容器被意外删除按钮”,所以在删除时提示被保护 … 阅读全文
windows远程桌面时,不能从本地复制粘贴到远程服务器,主要是因为rdpclib.exe程序导致,只要重启下该服务就可以了。 1、在远程server任务管理器中找到RDP服务,结束该服务 2、win+r运行rdpclip.exe即可 ~微信打赏~ 赏
在windows2008下配置II7 web.config 当通过手机访问www域名时,自动跳转到对应的移动域名下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <!-- http://www.whsir.com 替换为对应的网站,带www--> <httpRedirect enabled="false" destination="http://www.whsir.com" exactDestination="false" childOnly="false" httpResponseStatus="Permanent" /> <!--启用Gzip压缩--> <urlCompression doStaticCompression="true" doDynamicCompression="false" /> <defaultDocument> <files> <clear /> <add value="Default.htm" /> <add value="Default.asp" /> <add value="index.htm" /> <add value="index.html" /> <add value="index.php" /> <add value="default.aspx" /> </files> </defaultDocument> </system.webServer> <system.webServer> <rewrite> <rules> <rule name="WWW Redirect" stopProcessing="true"> <match url=".*" /> <conditions> <!--xxx.com,替换为对应的网站,不带www--> <add input="{HTTP_HOST}" pattern="^whsir.com$" /> </conditions> <!-- http://www.whsir.com 替换为对应的网站,带www--> <action type="Redirect" url="http://www.whsir.com/{R:0}" redirectType="Permanent" /> </rule> <rule name="Mobile Jump" stopProcessing="true"> <match url="^(.*)$" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_USER_AGENT}" pattern="(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino" /> </conditions> <!-- 输入要跳转的手机站点 --> <action type="Redirect" url="http://m.whsir.com/" redirectType="Found" /> </rule> </rules> </rewrite> </system.webServer> </configuration> |
~微信打赏~ 赏