<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[拍拍尘土]]></title> 
    <link>http://blog.xg98.com/</link> 
    <description><![CDATA[五月枇杷黄，太湖银鱼肥]]></description> 
    <language>zh-cn</language> 
    <copyright><![CDATA[Copyright 2026, 拍拍尘土]]></copyright> 
    <webMaster><![CDATA[cxosoft@gmail.com (Admin)]]></webMaster> 
    <generator>LBS v2.0.313</generator> 
    <pubDate>Mon, 04 May 2026 19:34:51 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[Windows server 2003安装.net framework 4.0所需的wic_x86_chs.exe下载]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3010]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 25 Nov 2025 09:05:40 +0800</pubDate> 
      <description><![CDATA[小白今天在研究如何在Windows2003或者xp上安装.net framework 4.0。发现下载完安装包后运行提示：运行此安装程序之前，必须安装 32 位 Windows 映像处理组件(WIC)。<br /><br />官方网站给的地址已经404（系统太老了，微软官方不再支持）。网上找的wic_x86_chs.exe这个程序官方下载地址已经过期。其他非官方页面咱也不敢随便用。毕竟xp/2003已经停止支持了。中毒就麻烦大了。还好在国外的网站上下载到了原版的文件。使用7zip自带的SHA1校验检测了下确实是原版文件。<br /><br />Microsoft .NET Framework 4（独立安装程序）支持xp/2003下载地址：<a href="https://www.microsoft.com/zh-cn/download/details.aspx?id=17718" title="https://www.microsoft.com/zh-cn/download/details.aspx?id=17718" target="_blank">https://www.microsoft.com/zh-cn/download/details.aspx?id=17718</a><br /><br />wic_x86_chs.exe下载地址：<a href="https://vps.p" title="https://vps.p" target="_blank">https://vps.p</a>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3010]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[老版windows服务器下，用apache做https反向代理怎么简单实现http自动跳转到https]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3003]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Fri, 29 Aug 2025 16:44:52 +0800</pubDate> 
      <description><![CDATA[windows下用aspx，apache实现https反向代理访问windows的http网站。<br />现在的需求是直接访问http，能自动跳转到https。程序中可以判断http来源ip然后跳到Https，但是不是自己的程序就没法操作。<br /><br />分析：要实现跳转，需要判断访问来源，通过apache过来的访问是不能跳转的，而其他访问都要跳转到Https，所以判断IP就可以了。<br /><br />实现：windows下用ISAPI_Rewrite 3.0实现的方法，其他伪静态也可以实现<br /><br /><div class="code">RewriteEngine On<br />RewriteCond %{REMOTE_ADDR} !^(127\.0\.0\.1|8\.8\.8\.8)$<br />RewriteCond %{HTTPS} off<br />RewriteRule ^(.*)$ https&#58;//%{HTTP_HOST}/$1 [R=301,L]</div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3003]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[IIS 7.5中神秘的应用程序池标识解析(隐藏的应用程序池账户可以配置到目录权限)]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3001]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Wed, 16 Jul 2025 19:49:16 +0800</pubDate> 
      <description><![CDATA[IIS7.5中(仅win7,win2008 SP2,win2008 R2支持)，应用程序池的运行帐号，除了指定为LocalService,LocalSystem,NetWorkService这三种基本类型外，还新增了一种<span style="color:Red">ApplicationPoolIdentify</span><br /><br /><br /> &nbsp; win7的官方帮助上是这么说的:ApplicationPoolIdentity – 默认情况下，选择“应用程序池标识”帐户。启动应用程序池时动态创建“应用程序池标识”帐户，因此，此帐户对于您的应用程序来说是最安全的。<br /> &nbsp; 也就是说”ApplicationPoolIdentity”帐号是系统动态创建的“虚拟”帐号(说它是虚拟的，是因为在用户管理里看不到该用户或用户组，在命令行下输入net user也无法显示，但该帐号又是确实存在的)<br /> &nbsp; 如何验证该帐号确实是存在的的？打开任务管理器，观察一下:<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3001]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[确认windows server 2003是32位或64位]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2998]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Wed, 14 May 2025 13:51:44 +0800</pubDate> 
      <description><![CDATA[击“开始”-“运行”，输入“winmsd.exe”并按回车键，即打开系统信息窗口，在系统摘要栏目中找到项目“系统类型”，若对应的数值为“基于x86的PC”，则系统为32位，否则为64位。]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2998]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[windows下iis在配合使用urlscan的时候，TRACE和OPTIONS直接返回403而不是200和404的方法]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2997]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Wed, 30 Apr 2025 14:35:57 +0800</pubDate> 
      <description><![CDATA[p.s. windows下面用urlscan可以方便的拦截 TRACE,OPTIONS,PUT等敏感method，只保留get和post。但是默认情况下回返回200状态再给一个404页面，这不友好，我们需要直接返回一个403状态。<br /><br />一、打开urlscan.ini，指定出现拦截时候的跳转文件 RejectResponseUrl<div class="code">RejectResponseUrl=/403</div><br />然后在根目录建立403目录，下面建立一个网站语言匹配的默认文件 index.php index.aspx 等等，访问就能返回403了<div class="code">&lt;?php<br />header(&quot;HTTP/1.1 403 Forbidden&quot;);<br />exit;<br />?&gt;</div><br /><span style="color:Red">使用curl做TRACE 验证</span><br />-v 或 --verbose：详细模式，显示请求和响应的详细信息，包括请求头、响应头和数据传输过程。<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2997]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[解决 Windows 照片查看器无法显示此图片，因为计算机上的可用内存可能不足]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2979]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Mon, 19 Aug 2024 22:32:53 +0800</pubDate> 
      <description><![CDATA[<div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202408/19_223320_15514559fccef0c2d7e8b8c2df174d27.png" target="_blank"><img src="http://blog.xg98.com/attachments/202408/19_223320_15514559fccef0c2d7e8b8c2df174d27.png" alt="http://blog.xg98.com/attachments/202408/19_223320_15514559fccef0c2d7e8b8c2df174d27.png" /></a></div><br /><br /><b>解决 Windows 照片查看器无法显示此图片，因为计算机上的可用内存可能不足</b><br /><br /><b>问题描述：</b><br />最近在使用 Windows 照片查看器打开一个 jpg 文件的时候异常<br />Windows 照片查看器无法显示此图片，因为计算机上的可用内存可能不足。请关闭一些目前没有使用的程序或者释放部分硬盘空间（如果硬盘几乎已满），然后重试<br /><br /><b>问题分析：</b><br />这时我们按 F11 或者图片下方中间的放映幻灯片按钮，可以查看图片，说明本身是没有问题的，而且一般导致该问题的图片都是照相机拍出来的，那是因为 Windows 图片查看器软件根本识别不了照片里的颜色，一直加载一直识别不了造成内存不足报警（因为报错时间极短，不像是过大的]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2979]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[安装了宝塔的win2008r2，重新IIS7.5和恢复网站]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2949]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Sat, 18 Nov 2023 14:22:56 +0800</pubDate> 
      <description><![CDATA[1、保存原applicationHost.config，在服务器管理器的角色中先删除IIS，然后重新安装IIS7.5<br />2、恢复applicationHost.config中的应用程序池和站点部分，如果需要还有fastcgi的php部分，其他内容根据实际情况手动恢复下。<br />3、下载安装iis的urlrewrite模块<br />4、重新在iis里面注册.net2和.net4，以支持.net程序和web.config配置<div class="code">&quot;%WINDIR%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe&quot; -iru -enable<br />&quot;%WINDIR%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe&quot; -iru -enable</div><b>5、做必要的后续配置 </b> <br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2949]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[BT宝塔面板问题：DLL load failed while importing panelAut]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2947]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Fri, 17 Nov 2023 09:22:58 +0800</pubDate> 
      <description><![CDATA[错误提示：<br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202311/17_092425_202303261679817814442238.png" target="_blank"><img src="http://blog.xg98.com/attachments/202311/17_092425_202303261679817814442238.png" alt="http://blog.xg98.com/attachments/202311/17_092425_202303261679817814442238.png" /></a></div><br /><br /><br />进入bt安装目录BtSoft\panel\script，cmd下运行bt.bat，选16:<br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202311/17_092444_202303261679817998464341.png" target="_blank"><img src="http://blog.xg98.com/attachments/202311/17_092444_202303261679817998464341.png" alt="http://blog.xg98.com/attachments/202311/17_092444_202303261679817998464341.png" /></a></div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2947]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[windows iis 服务器asp,aspx 会话cookie中缺少HttpOnly属性]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2945]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Mon, 06 Nov 2023 11:27:03 +0800</pubDate> 
      <description><![CDATA[方法一、按照网上打开配置编辑器 ，将httpOnlyCookies设置为true，<span style="color:Red">实际没有任何效果</span><br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202311/06_112921_20210909111026408.png" target="_blank"><img src="http://blog.xg98.com/attachments/202311/06_112921_20210909111026408.png" alt="http://blog.xg98.com/attachments/202311/06_112921_20210909111026408.png" /></a></div><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202311/06_112925_20210909111147882.png" target="_blank"><img src="http://blog.xg98.com/attachments/202311/06_112925_20210909111147882.png" alt="http://blog.xg98.com/attachments/202311/06_112925_20210909111147882.png" /></a></div><br /><br /><br />方法二、通过配置出站规则getcookie添加HttpOnly<br /><br />在Web.config的system.webServer中添加如下出站规则<div class="code">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;rewrite&gt;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &lt;outboundRules&gt;<br />&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;      &lt;rule name=&quot;Add HttpOnly&quot; preCondition=&quot;No HttpOnly&quot;&gt;</div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2945]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[win10图片打开方式 修改为 照片查看器Windows Photo Viewer]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2926]]></link> 
      <category><![CDATA[WIN服务器]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 11 Apr 2023 13:11:22 +0800</pubDate> 
      <description><![CDATA[可以把下面的内容保存为 photoviewer.reg<br /><br /><div class="code">Windows Registry Editor Version 5.00<br /><br />[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations]<br />&quot;.tif&quot;=&quot;PhotoViewer.FileAssoc.Tiff&quot;<br />&quot;.tiff&quot;=&quot;PhotoViewer.FileAssoc.Tiff&quot;<br />&quot;.jpg&quot;=&quot;PhotoViewer.FileAssoc.Tiff&quot;<br />&quot;.jpeg&quot;=&quot;PhotoViewer.FileAssoc.Tiff&quot;<br />&quot;.png&quot;=&quot;PhotoViewer.FileAssoc.Tiff&quot;<br />&quot;.bmp&quot;=&quot;PhotoViewer.FileAssoc.Tiff&quot;<br />&quot;.gif&quot;=&quot;PhotoViewer.FileAssoc.Tiff&quot;<br /><br /><br /></div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2926]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
