<?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>lxmxn 's blog</title>
	<atom:link href="http://lxmxn.yo2.cn/feed" rel="self" type="application/rss+xml" />
	<link>http://lxmxn.yo2.cn</link>
	<description>Nothing is impossible</description>
	<lastBuildDate>Tue, 11 Mar 2008 18:13:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>perl中对URL地址进行编码</title>
		<link>http://lxmxn.yo2.cn/articles/perl%e4%b8%ad%e5%af%b9url%e5%9c%b0%e5%9d%80%e8%bf%9b%e8%a1%8c%e7%bc%96%e7%a0%81.html</link>
		<comments>http://lxmxn.yo2.cn/articles/perl%e4%b8%ad%e5%af%b9url%e5%9c%b0%e5%9d%80%e8%bf%9b%e8%a1%8c%e7%bc%96%e7%a0%81.html#comments</comments>
		<pubDate>Tue, 11 Mar 2008 15:05:50 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[encode]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://lxmxn.yo2.cn/2008/03/11/perl%e4%b8%ad%e5%af%b9url%e5%9c%b0%e5%9d%80%e8%bf%9b%e8%a1%8c%e7%bc%96%e7%a0%81/</guid>
		<description><![CDATA[URL中如果有中文的字符，要先对其进行编码才能进行下一步的处理。 用替换方法进行编码： Url encode：对 \n 不转码 perl -pe 's/([^\w\-\.\@])/$1 eq "\n" ? "\n":sprintf("%%%2.2x",ord($1))/eg' keywords.list 用替换方法进行解码： Url Decode： perl -pe 's/%(..)/pack("c", hex($1))/eg' keywords.list 用URI::URL模块进行编码 use URI::URL; my $str = "http://www.google.com/lxmxn's blog&#38;b=Hello,perl"; my $url = URI::URL-&#62;new( $str ); print $url; 用URI::Escape模块进行编码 use &#8230; <a href="http://lxmxn.yo2.cn/articles/perl%e4%b8%ad%e5%af%b9url%e5%9c%b0%e5%9d%80%e8%bf%9b%e8%a1%8c%e7%bc%96%e7%a0%81.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>URL中如果有中文的字符，要先对其进行编码才能进行下一步的处理。</p>
<ul>
<li>用替换方法进行编码：</li>
</ul>
<p>Url encode：对 \n 不转码<br>
<code>perl -pe 's/([^\w\-\.\@])/$1 eq "\n" ? "\n":sprintf("%%%2.2x",ord($1))/eg' keywords.list</code></p>
<ul>
<li>用替换方法进行解码：</li>
</ul>
<p>Url Decode：<br>
perl -pe 's/%(..)/pack("c", hex($1))/eg' keywords.list</p>
<ul>
<li>用URI::URL模块进行编码</li>
</ul>
<p><code>use URI::URL;<br>
my $str = "http://www.google.com/lxmxn's blog&amp;b=Hello,perl";<br>
my $url = URI::URL-&gt;new( $str );<br>
print $url;</code></p>
<ul>
<li>用URI::Escape模块进行编码</li>
</ul>
<p><code>use URI::Escape;<br>
my $str='北极神话';<br>
print uri_escape($str);</code></p>
<p><code>#result:%B1%B1%BC%AB%C9%F1%BB%B0</code></p>
]]></content:encoded>
			<wfw:commentRss>http://lxmxn.yo2.cn/articles/perl%e4%b8%ad%e5%af%b9url%e5%9c%b0%e5%9d%80%e8%bf%9b%e8%a1%8c%e7%bc%96%e7%a0%81.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell的小例子</title>
		<link>http://lxmxn.yo2.cn/articles/powershell%e7%9a%84%e5%b0%8f%e5%8a%9f%e8%83%bd.html</link>
		<comments>http://lxmxn.yo2.cn/articles/powershell%e7%9a%84%e5%b0%8f%e5%8a%9f%e8%83%bd.html#comments</comments>
		<pubDate>Sat, 06 Oct 2007 20:23:55 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://lxmxn.yo2.cn/2007/10/07/powershell%e7%9a%84%e5%b0%8f%e5%8a%9f%e8%83%bd/</guid>
		<description><![CDATA[获得下一分钟的时间: PS C:\&#62; get-date -DisplayHint time 4:16:33 PS C:\&#62; echo $(get-date -displayhint time).AddMinutes(1).toString() 2007-10-7 4:17:35 单位换算: PS C:\&#62; 1+1KB+1MB+1GB 1074791425 获取磁盘剩余空间: PS C:\&#62; Get-WMIObject Win32_LogicalDisk &#124; ForEach-Object {$_.name,[math]::truncate($_.freespace / 1MB)} C: 1021 D: 6276 E: 4170 F: 4330 G: 2032 &#8230; <a href="http://lxmxn.yo2.cn/articles/powershell%e7%9a%84%e5%b0%8f%e5%8a%9f%e8%83%bd.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong><span id="more-445268"></span></strong></p>
<ul>
<li><strong>获得下一分钟的时间:</strong></li>
</ul>
<p><strong><code>PS C:\&gt; get-date -DisplayHint time<br>
4:16:33<br>
PS C:\&gt; echo $(get-date -displayhint time).AddMinutes(1).toString()<br>
2007-10-7 4:17:35</code></strong><strong><!--more--></strong></p>
<ul>
<li><strong>单位换算:</strong></li>
</ul>
<p><strong><code>PS C:\&gt; 1+1KB+1MB+1GB<br>
1074791425</code><br>
<!--more--></strong></p>
<ul>
<li><strong>获取磁盘剩余空间:</strong></li>
</ul>
<p><strong><code>PS C:\&gt; Get-WMIObject Win32_LogicalDisk | ForEach-Object {$_.name,[math]::truncate($_.freespace / 1MB)}<br>
C:<br>
1021<br>
D:<br>
6276<br>
E:<br>
4170<br>
F:<br>
4330<br>
G:<br>
2032</code></strong></p>
<p><strong><!--more--></strong></p>
<ul>
<li><strong>向标准输出写警告:</strong></li>
</ul>
<p><strong><code>PS C:\&gt; Write-Warning "The folder C:\Scripts2 does not exist."<br>
警告: The folder C:\Scripts2 does not exist.</code><!--more--></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://lxmxn.yo2.cn/articles/powershell%e7%9a%84%e5%b0%8f%e5%8a%9f%e8%83%bd.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch Script处理文本文件的局限</title>
		<link>http://lxmxn.yo2.cn/articles/batch-script%e5%a4%84%e7%90%86%e6%96%87%e6%9c%ac%e6%96%87%e4%bb%b6%e7%9a%84%e5%b1%80%e9%99%90.html</link>
		<comments>http://lxmxn.yo2.cn/articles/batch-script%e5%a4%84%e7%90%86%e6%96%87%e6%9c%ac%e6%96%87%e4%bb%b6%e7%9a%84%e5%b1%80%e9%99%90.html#comments</comments>
		<pubDate>Sun, 30 Sep 2007 11:31:41 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Bat/Vbs/Html/... Script]]></category>

		<guid isPermaLink="false">http://lxmxn.yo2.cn/2007/09/30/batch-script%e5%a4%84%e7%90%86%e6%96%87%e6%9c%ac%e6%96%87%e4%bb%b6%e7%9a%84%e5%b1%80%e9%99%90/</guid>
		<description><![CDATA[在论坛碰到一个问题，大概是用bat来提取一个文本文件中的信息。 提供的文件中有一行特别的长，用cmd的for命令无法读取，最后只能给出利用awk来解决的方案。 &#160;自己又在下面测试了一下，如果文本的某行的字节数超过了8187，for命令就读不出来，这是cmd处理文件的一个局限。（对中文字符没有做测试。）]]></description>
			<content:encoded><![CDATA[<p>在论坛碰到一个问题，大概是用bat来提取一个文本文件中的信息。</p>
<p>提供的文件中有一行特别的长，用cmd的for命令无法读取，最后只能给出利用awk来解决的方案。</p>
<p>&nbsp;自己又在下面测试了一下，如果文本的某行的字节数超过了8187，for命令就读不出来，这是cmd处理文件的一个局限。（对中文字符没有做测试。）</p>
]]></content:encoded>
			<wfw:commentRss>http://lxmxn.yo2.cn/articles/batch-script%e5%a4%84%e7%90%86%e6%96%87%e6%9c%ac%e6%96%87%e4%bb%b6%e7%9a%84%e5%b1%80%e9%99%90.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>文件列表附加文件大小</title>
		<link>http://lxmxn.yo2.cn/articles/%e6%96%87%e4%bb%b6%e5%88%97%e8%a1%a8%e9%99%84%e5%8a%a0%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f.html</link>
		<comments>http://lxmxn.yo2.cn/articles/%e6%96%87%e4%bb%b6%e5%88%97%e8%a1%a8%e9%99%84%e5%8a%a0%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f.html#comments</comments>
		<pubDate>Wed, 26 Sep 2007 08:29:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Bat/Vbs/Html/... Script]]></category>

		<guid isPermaLink="false">http://lxmxn.yo2.cn/articles/%e6%96%87%e4%bb%b6%e5%88%97%e8%a1%a8%e9%99%84%e5%8a%a0%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f.html</guid>
		<description><![CDATA[利用了For /R和Tree /F遍历文件的顺序是一定的原理跑出文件结构和及其大小. 由于脚本中用了比较多的findstr、find以及for嵌套,所以跑起来很慢.建议文件比较多的不要用这个来跑。 List_with_Size.bat [code] :: Code by lxmxn @ bbs.cn-dos.net :: Date 2707-09-26 rem 关闭命令行回显并打开延迟扩展 @echo %bg% off &#38; SetLocal EnableDelayedExpansion rem 对当前目录及其子目录中的每个文件大小进行索引 set tnum=1 for /r .\ %%a in (*) do ( set "file!tnum!_%%~nxa=%%~za" set /a tnum+=1 &#8230; <a href="http://lxmxn.yo2.cn/articles/%e6%96%87%e4%bb%b6%e5%88%97%e8%a1%a8%e9%99%84%e5%8a%a0%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>利用了For /R和Tree /F遍历文件的顺序是一定的原理跑出文件结构和及其大小.</p>
<p>由于脚本中用了比较多的findstr、find以及for嵌套,所以跑起来很慢.建议文件比较多的不要用这个来跑。<br>
<img src="http://lxmxn.yo2.cn/wp-content/uploads/110/11011/2007/09/list_with_size.jpg" alt="list_with_size.jpg"></p>
<p>List_with_Size.bat<br>
[code]<br>
:: Code by lxmxn @ bbs.cn-dos.net<br>
:: Date 2707-09-26</p>
<p>rem 关闭命令行回显并打开延迟扩展</p>
<p>@echo %bg% off &amp; SetLocal EnableDelayedExpansion</p>
<p>rem 对当前目录及其子目录中的每个文件大小进行索引<br>
set tnum=1<br>
for /r .\ %%a in (*) do (<br>
set "file!tnum!_%%~nxa=%%~za"<br>
set /a tnum+=1<br>
)</p>
<p>rem 处理TREE的输入并显示结果<br>
set tnum=1</p>
<p>echo %cd%<br>
echo ************************************************<br>
for /F "delims=" %%a in ('tree /F^|more +3') do (<br>
echo %%a|findstr /R "├ └" &gt;nul &amp;&amp; (<br>
echo\%%a<br>
) || (<br>
echo %%a|findstr /R /C:"^│[ ]*$" &gt;nul 2&gt;nul &amp;&amp; (<br>
echo\%%a<br>
) || (<br>
for /f "delims=" %%c in ("%%a") do (<br>
set string=%%c<br>
set string=!string:│=!<br>
for /f "tokens=* delims= " %%d in ("!string!") do set fname=%%d<br>
if not "!fname!"=="" (<br>
call echo\%%a [%%file!tnum!_!fname!%%]<br>
set /a tnum+=1<br>
) else (echo\%%a)<br>
)<br>
)<br>
)<br>
)<br>
[/code]</p>
]]></content:encoded>
			<wfw:commentRss>http://lxmxn.yo2.cn/articles/%e6%96%87%e4%bb%b6%e5%88%97%e8%a1%a8%e9%99%84%e5%8a%a0%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>将文件中的数字按从小到大的顺序排列</title>
		<link>http://lxmxn.yo2.cn/articles/%e5%b0%86%e6%96%87%e4%bb%b6%e4%b8%ad%e7%9a%84%e6%95%b0%e5%ad%97%e6%8c%89%e4%bb%8e%e5%b0%8f%e5%88%b0%e5%a4%a7%e7%9a%84%e9%a1%ba%e5%ba%8f%e6%8e%92%e5%88%97.html</link>
		<comments>http://lxmxn.yo2.cn/articles/%e5%b0%86%e6%96%87%e4%bb%b6%e4%b8%ad%e7%9a%84%e6%95%b0%e5%ad%97%e6%8c%89%e4%bb%8e%e5%b0%8f%e5%88%b0%e5%a4%a7%e7%9a%84%e9%a1%ba%e5%ba%8f%e6%8e%92%e5%88%97.html#comments</comments>
		<pubDate>Fri, 21 Sep 2007 12:24:53 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Bat/Vbs/Html/... Script]]></category>

		<guid isPermaLink="false">http://lxmxn.yo2.cn/articles/%e5%b0%86%e6%96%87%e4%bb%b6%e4%b8%ad%e7%9a%84%e6%95%b0%e5%ad%97%e6%8c%89%e4%bb%8e%e5%b0%8f%e5%88%b0%e5%a4%a7%e7%9a%84%e9%a1%ba%e5%ba%8f%e6%8e%92%e5%88%97.html</guid>
		<description><![CDATA[主要利用了 Findstr+Sort . :: lxmxn @ cn-dos.net :: 15:58 2007-7-28 :: sort numbers in a file @echo off&#38;Setlocal EnableDelayedExpansion set sorts=. &#62;nul copy nul output.txt For /L %%a in (1,1,10) do ( findstr "^^!sorts!$" input.txt&#124;sort &#62;&#62; output.txt set sorts=!sorts!. rem &#8230; <a href="http://lxmxn.yo2.cn/articles/%e5%b0%86%e6%96%87%e4%bb%b6%e4%b8%ad%e7%9a%84%e6%95%b0%e5%ad%97%e6%8c%89%e4%bb%8e%e5%b0%8f%e5%88%b0%e5%a4%a7%e7%9a%84%e9%a1%ba%e5%ba%8f%e6%8e%92%e5%88%97.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>主要利用了 Findstr+Sort .</p>
<pre>
<strong><font color="#0000FF">:: lxmxn @ cn-dos.net</font>
<font color="#0000FF">:: </font><font color="#FF00FF">15</font><font color="#0000FF">:</font><font color="#FF00FF">58</font><font color="#0000FF"> </font><font color="#FF00FF">2007</font><font color="#0000FF">-7-28</font>
<font color="#0000FF">:: sort numbers in a file</font>
@<font color="#008080">echo</font><font color="#FF00FF"> off&amp;Setlocal EnableDelayedExpansion</font>
<font color="#008080">set</font><font color="#008080"> sorts</font><font color="#804040">=</font>.
&gt;nul <font color="#008080">copy</font> nul output.txt
<font color="#804040">For</font> <font color="#6A5ACD">/L</font> <font color="#008080">%%a</font> in (<font color="#FF00FF">1</font>,1,10) do (
    <font color="#008080">findstr</font> <font color="#FF00FF">"^^</font><font color="#008080">!sorts!</font><font color="#FF00FF">$"</font> input.txt|<font color="#008080">sort</font><font color="#804040"> &gt;&gt; </font>output.txt
    <font color="#008080">set</font><font color="#008080"> sorts</font><font color="#804040">=</font><font color="#008080">!sorts!</font>.
    <font color="#008080">rem</font><font color="#0000FF"> echo </font><font color="#008080">!sorts!</font>
)
<font color="#008080">start</font> notepad output.txt</strong>
</pre>]]></content:encoded>
			<wfw:commentRss>http://lxmxn.yo2.cn/articles/%e5%b0%86%e6%96%87%e4%bb%b6%e4%b8%ad%e7%9a%84%e6%95%b0%e5%ad%97%e6%8c%89%e4%bb%8e%e5%b0%8f%e5%88%b0%e5%a4%a7%e7%9a%84%e9%a1%ba%e5%ba%8f%e6%8e%92%e5%88%97.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>快速制作自动登录QQ的小脚本</title>
		<link>http://lxmxn.yo2.cn/articles/%e5%bf%ab%e9%80%9f%e5%88%b6%e4%bd%9cqq%e8%87%aa%e5%8a%a8%e7%99%bb%e5%bd%95%e7%9a%84%e5%b0%8f%e8%84%9a%e6%9c%ac.html</link>
		<comments>http://lxmxn.yo2.cn/articles/%e5%bf%ab%e9%80%9f%e5%88%b6%e4%bd%9cqq%e8%87%aa%e5%8a%a8%e7%99%bb%e5%bd%95%e7%9a%84%e5%b0%8f%e8%84%9a%e6%9c%ac.html#comments</comments>
		<pubDate>Tue, 18 Sep 2007 12:21:24 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Bat/Vbs/Html/... Script]]></category>

		<guid isPermaLink="false">http://lxmxn.yo2.cn/articles/%e5%bf%ab%e9%80%9f%e5%88%b6%e4%bd%9cqq%e8%87%aa%e5%8a%a8%e7%99%bb%e5%bd%95%e7%9a%84%e5%b0%8f%e8%84%9a%e6%9c%ac.html</guid>
		<description><![CDATA[　　首先用TM(Tencent Messenger)登录QQ，然后选择TM的 "文件" --&#62; "切换到QQ" ，这样就结束了TM并用QQ登录了你的号码，然后打开cmd，输入WMIC Process Where(NAME='QQ.EXE') GET CommandLine&#124;more +1&#62;AutoQQ.bat，这样就会在当前目录中生成一个名为AutoQQ.bat的批处理文件，编辑这个文件，在前面加上@start "" 这10个字节(包括最后面的空格)的字符，这样，自动登录QQ的小脚本就制作好了．你可以直接运行这个文件来登录你的QQ，也可以把它放在启动文件夹或者注册表的启动项里面，这样就可以开机自动登录你的QQ了． 　　(此方法只适合Xp以上的系统使用)]]></description>
			<content:encoded><![CDATA[<p>　　首先用TM(Tencent Messenger)登录QQ，然后选择TM的 "文件" --&gt; "切换到QQ" ，这样就结束了TM并用QQ登录了你的号码，然后打开cmd，输入<code>WMIC Process Where(NAME='QQ.EXE') GET CommandLine|more +1&gt;AutoQQ.bat</code>，这样就会在当前目录中生成一个名为AutoQQ.bat的批处理文件，编辑这个文件，在前面加上<strong>@start ""</strong> 这10个字节(包括最后面的空格)的字符，这样，自动登录QQ的小脚本就制作好了．你可以直接运行这个文件来登录你的QQ，也可以把它放在<strong>启动</strong>文件夹或者注册表的启动项里面，这样就可以开机自动登录你的QQ了．</p>
<p>　　(此方法只适合Xp以上的系统使用)</p>
]]></content:encoded>
			<wfw:commentRss>http://lxmxn.yo2.cn/articles/%e5%bf%ab%e9%80%9f%e5%88%b6%e4%bd%9cqq%e8%87%aa%e5%8a%a8%e7%99%bb%e5%bd%95%e7%9a%84%e5%b0%8f%e8%84%9a%e6%9c%ac.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>用暴风影音看电影还需要管理员权限?</title>
		<link>http://lxmxn.yo2.cn/articles/%e7%94%a8%e6%9a%b4%e9%a3%8e%e5%bd%b1%e9%9f%b3%e7%9c%8b%e7%94%b5%e5%bd%b1%e8%bf%98%e9%9c%80%e8%a6%81%e7%ae%a1%e7%90%86%e5%91%98%e6%9d%83%e9%99%90.html</link>
		<comments>http://lxmxn.yo2.cn/articles/%e7%94%a8%e6%9a%b4%e9%a3%8e%e5%bd%b1%e9%9f%b3%e7%9c%8b%e7%94%b5%e5%bd%b1%e8%bf%98%e9%9c%80%e8%a6%81%e7%ae%a1%e7%90%86%e5%91%98%e6%9d%83%e9%99%90.html#comments</comments>
		<pubDate>Tue, 18 Sep 2007 01:39:44 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://lxmxn.yo2.cn/articles/%e7%94%a8%e6%9a%b4%e9%a3%8e%e5%bd%b1%e9%9f%b3%e7%9c%8b%e7%94%b5%e5%bd%b1%e8%bf%98%e9%9c%80%e8%a6%81%e7%ae%a1%e7%90%86%e5%91%98%e6%9d%83%e9%99%90.html</guid>
		<description><![CDATA[&#160;&#160;&#160; 前几天在电脑上面新建了一个用户,结果发现用新建的用户登陆之后不能用暴风影音看电影了,感觉很奇怪. &#160;&#160;&#160; 具体的现象是:打开电影文件时,任务栏出现了暴风影音的图标,但是在桌面却看不见暴风影音的窗口,打开taskmgr.exe也看不到暴风的进程.然后用管理员用户登陆上去,却可以正常的播放,证明暴风影音程序没什么问题.自然想到权限不足,在cmd下输入net localgroup administrators newuser /add之后,再登陆新建的用户,结果能正常看电影了. &#160;&#160;&#160; 难道用暴风影音看电影真的需要管理员权限?各位如果知道原因的请告知一下,TKS.]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp; 前几天在电脑上面新建了一个用户,结果发现用新建的用户登陆之后不能用暴风影音看电影了,感觉很奇怪.<br>
&nbsp;&nbsp;&nbsp; 具体的现象是:打开电影文件时,任务栏出现了暴风影音的图标,但是在桌面却看不见暴风影音的窗口,打开taskmgr.exe也看不到暴风的进程.然后用管理员用户登陆上去,却可以正常的播放,证明暴风影音程序没什么问题.自然想到权限不足,在<a href="file:///%systemroot%/system32/cmd.exe">cmd</a>下输入<b><code>net localgroup administrators newuser /add</code></b>之后,再登陆新建的用户,结果能正常看电影了.<br>
&nbsp;&nbsp;&nbsp; 难道用暴风影音看电影真的需要管理员权限?各位如果知道原因的请告知一下,TKS.</p>
]]></content:encoded>
			<wfw:commentRss>http://lxmxn.yo2.cn/articles/%e7%94%a8%e6%9a%b4%e9%a3%8e%e5%bd%b1%e9%9f%b3%e7%9c%8b%e7%94%b5%e5%bd%b1%e8%bf%98%e9%9c%80%e8%a6%81%e7%ae%a1%e7%90%86%e5%91%98%e6%9d%83%e9%99%90.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>我的新博客开张啦</title>
		<link>http://lxmxn.yo2.cn/articles/hello-everybody.html</link>
		<comments>http://lxmxn.yo2.cn/articles/hello-everybody.html#comments</comments>
		<pubDate>Mon, 10 Sep 2007 07:53:55 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Announcement]]></category>

		<guid isPermaLink="false">http://lxmxn.yo2.cn/articles/hello-world.html</guid>
		<description><![CDATA[昨天把QQ空间关闭了，今天开了这个新博客，庆祝一下，有时间的朋友多来逛哈啊。 以后专心经营这个博客了。]]></description>
			<content:encoded><![CDATA[<p>昨天把QQ空间<a href="http://imgcache.qq.com/qzone/web/load_login_2.htm">关闭</a>了，今天开了这个<a href="http://lxmxn.yo2.cn">新博客</a>，庆祝一下，有时间的朋友多来逛哈啊。<br>
以后专心经营这个博客了。</p>
]]></content:encoded>
			<wfw:commentRss>http://lxmxn.yo2.cn/articles/hello-everybody.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

