<?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>Loster&#039;s Blog</title>
	<atom:link href="http://blog.loster.net/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.loster.net</link>
	<description>万里长征刚穿鞋</description>
	<lastBuildDate>Wed, 10 Mar 2010 06:50:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>锐起3.1蜘蛛版</title>
		<link>http://blog.loster.net/archives/29.html</link>
		<comments>http://blog.loster.net/archives/29.html#comments</comments>
		<pubDate>Wed, 10 Mar 2010 06:50:09 +0000</pubDate>
		<dc:creator>Loster</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://blog.loster.net/?p=29</guid>
		<description><![CDATA[RTRQV3.1蜘蛛版.part4RQV3.1蜘蛛版.part3RQV3.1蜘蛛版.part2RQV3.1蜘蛛版.part1
]]></description>
			<content:encoded><![CDATA[<p>RT<a href="http://blog.loster.net/wp-content/uploads/2010/03/RQV3.1蜘蛛版.part4_.zip">RQV3.1蜘蛛版.part4</a><a href="http://blog.loster.net/wp-content/uploads/2010/03/RQV3.1蜘蛛版.part3_.zip">RQV3.1蜘蛛版.part3</a><a href="http://blog.loster.net/wp-content/uploads/2010/03/RQV3.1蜘蛛版.part2_.zip">RQV3.1蜘蛛版.part2</a><a href="http://blog.loster.net/wp-content/uploads/2010/03/RQV3.1蜘蛛版.part1_.zip">RQV3.1蜘蛛版.part1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.loster.net/archives/29.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>再一次被代表</title>
		<link>http://blog.loster.net/archives/25.html</link>
		<comments>http://blog.loster.net/archives/25.html#comments</comments>
		<pubDate>Sun, 07 Mar 2010 05:02:12 +0000</pubDate>
		<dc:creator>Loster</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://blog.loster.net/?p=25</guid>
		<description><![CDATA[从18岁拥有宪法所赋予的选举与被选举权后,从来没有行使过,也不知道怎么行使,更没有任何人告诉我怎么行使.所以看现在的两会感觉简直就是在看大戏,跟本不知道那些代表啊,委员啊,怎么来的,到底代表了谁&#8230;
做为一个代表或委员,不应该提一些无关痛痒的提案,更不会歌功颂德.而是应该尽到一个代表或委员应尽的义务,不满的地方提出,进行质询,坚决维护自己代表的利益群体的权益.
为再一次被代表而感到无奈.
爱之深,希望我们的国家越来越强大富足.
]]></description>
			<content:encoded><![CDATA[<p>从18岁拥有宪法所赋予的选举与被选举权后,从来没有行使过,也不知道怎么行使,更没有任何人告诉我怎么行使.所以看现在的两会感觉简直就是在看大戏,跟本不知道那些代表啊,委员啊,怎么来的,到底代表了谁&#8230;</p>
<p>做为一个代表或委员,不应该提一些无关痛痒的提案,更不会歌功颂德.而是应该尽到一个代表或委员应尽的义务,不满的地方提出,进行质询,坚决维护自己代表的利益群体的权益.</p>
<p>为再一次被代表而感到无奈.</p>
<p>爱之深,希望我们的国家越来越强大富足.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.loster.net/archives/25.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows自动映射网络驱动器</title>
		<link>http://blog.loster.net/archives/21.html</link>
		<comments>http://blog.loster.net/archives/21.html#comments</comments>
		<pubDate>Sat, 06 Mar 2010 12:05:55 +0000</pubDate>
		<dc:creator>Loster</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[网络驱动器]]></category>

		<guid isPermaLink="false">http://blog.loster.net/?p=21</guid>
		<description><![CDATA[今天需要用把共享目录映射成网络驱动器，研究了一下，记录在此：
创建一个批处理文件，写入以下内容：
@echo off
net use h: \\x.x.x.x\xxx password /user:username /persistent:yes
net config server /autodisconnect:65535
第一行是不屏显的意思，第二行h:为网络驱动器盘符，\\x.x.x.x\xxx被映射主机的ip地址及被映射文件夹名称，password为登陆密码，/user:username其中username为登陆用户名，/persistent:yes是否保持连接。
net config server /autodisconnect:65535设置网络超时时间，最大65535，单位：分钟。
使用注册表编辑器增加默认超时期限：
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters
B、 在右窗格中，单击值 autodisconnect，将内容修改为：ffffffff
]]></description>
			<content:encoded><![CDATA[<p>今天需要用把共享目录映射成网络驱动器，研究了一下，记录在此：</p>
<p>创建一个批处理文件，写入以下内容：</p>
<p>@echo off<br />
net use h: \\x.x.x.x\xxx password /user:username /persistent:yes<br />
net config server /autodisconnect:65535</p>
<p>第一行是不屏显的意思，第二行h:为网络驱动器盘符，\\x.x.x.x\xxx被映射主机的ip地址及被映射文件夹名称，password为登陆密码，/user:username其中username为登陆用户名，/persistent:yes是否保持连接。</p>
<p>net config server /autodisconnect:65535设置网络超时时间，最大65535，单位：分钟。</p>
<p>使用注册表编辑器增加默认超时期限：</p>
<p>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters</p>
<p>B、 在右窗格中，单击值 autodisconnect，将内容修改为：ffffffff</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.loster.net/archives/21.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS4in1算号器</title>
		<link>http://blog.loster.net/archives/16.html</link>
		<comments>http://blog.loster.net/archives/16.html#comments</comments>
		<pubDate>Fri, 05 Mar 2010 07:59:52 +0000</pubDate>
		<dc:creator>Loster</dc:creator>
				<category><![CDATA[相关软件]]></category>
		<category><![CDATA[keygen]]></category>
		<category><![CDATA[windowsxp]]></category>

		<guid isPermaLink="false">http://blog.loster.net/?p=16</guid>
		<description><![CDATA[今天找了好久才找到，以前记得网上挺多地方都有下载的啊。
放在这里作为存档。
本算号器可算：
winxp pro 可通过internet激活那种
winxp pro vlk
win2003 server vlk
officexp
我记得以前还拿这个算过winxp pro table版本的序列号。
MSKey4in1
]]></description>
			<content:encoded><![CDATA[<p>今天找了好久才找到，以前记得网上挺多地方都有下载的啊。</p>
<p>放在这里作为存档。</p>
<p>本算号器可算：</p>
<p>winxp pro 可通过internet激活那种</p>
<p>winxp pro vlk</p>
<p>win2003 server vlk</p>
<p>officexp</p>
<p>我记得以前还拿这个算过winxp pro table版本的序列号。</p>
<p><a href="http://blog.loster.net/wp-content/uploads/2010/03/MSKey4in1.exe">MSKey4in1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.loster.net/archives/16.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>今天终于把博客复活了</title>
		<link>http://blog.loster.net/archives/13.html</link>
		<comments>http://blog.loster.net/archives/13.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 17:59:46 +0000</pubDate>
		<dc:creator>Loster</dc:creator>
				<category><![CDATA[生活日记]]></category>

		<guid isPermaLink="false">http://blog.loster.net/?p=13</guid>
		<description><![CDATA[好久没写博客了，草都长的快齐腰深了。
最近在研究网吧的无盘工作站，有些东西需要记录，所以把博客复活。
换了个皮肤，简单汉化了下。在此对皮肤作者表示敬意！
]]></description>
			<content:encoded><![CDATA[<p>好久没写博客了，草都长的快齐腰深了。</p>
<p>最近在研究网吧的无盘工作站，有些东西需要记录，所以把博客复活。</p>
<p>换了个皮肤，简单汉化了下。在此对皮肤作者表示敬意！</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.loster.net/archives/13.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
