<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_kevinton</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/27493/rss</id><updated>2008-12-19T02:12:02Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/27493/rss"/><entry><id>http://www.cnblogs.com/kevinton/archive/2008/12/19/1358074.html</id><title type="text">脚本实现ADSL拨号上网</title><summary type="text">ADSL 的配置文件为：C:\Documents and Settings\All Users\application data\Microsoft\Network\Connections\Pbk&amp;#8221;目录下的 rasphone.pbk 文件脚本内容：rasdial entryname username password其中的 EntryName ，一定是要在上述 rasphone.pbk...</summary><published>2008-12-19T02:12:00Z</published><updated>2008-12-19T02:12:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2008/12/19/1358074.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2008/12/19/1358074.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/07/03/803960.html</id><title type="text">C#调用WinRAR实现压缩与解压缩</title><summary type="text">using System.Diagnostics;.............{//************ 压 缩 ************* string strF="iis6.log";string strR="newiis"; //压缩包文件名Process p = new Process();p.StartInfo.FileName="Winrar.exe";p.StartInfo.Cre...</summary><published>2007-07-03T02:36:00Z</published><updated>2007-07-03T02:36:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/07/03/803960.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/07/03/803960.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/06/28/798581.html</id><title type="text">C#使用命令行方式实现Ping简单功能</title><summary type="text">using System.Diagnostics;.......private string CmdPing(string strIP){string pingRst;Process p = new Process();p.StartInfo.FileName="cmd.exe";p.StartInfo.UseShellExecute=false;p.StartInfo.RedirectStand...</summary><published>2007-06-28T02:34:00Z</published><updated>2007-06-28T02:34:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/06/28/798581.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/06/28/798581.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/06/27/797386.html</id><title type="text">Windows Service的安装</title><summary type="text">1.添加安装程序,生成ProjectInstaller;2.将serviceProcessInstall的Account属性改为:LocalSystem;将serviceInstall中的StartType属性改为Automatic(自动启动服务)3.在命令行方式下,运行"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\InstallUtil 文件名"进行...</summary><published>2007-06-27T02:59:00Z</published><updated>2007-06-27T02:59:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797386.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797386.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/06/27/797354.html</id><title type="text">C#读写XML文件</title><summary type="text">**************************** phone.xml ****************************&amp;lt;?xml version="1.0" encoding="utf-8" ?&amp;gt; &amp;lt;PhoneBook&amp;gt;&amp;lt;phone id="001"&amp;gt;&amp;lt;Name&amp;gt;加菲尔德&amp;lt;/Name&amp;gt;&amp;lt;Number&amp;gt;55555...</summary><published>2007-06-27T02:36:00Z</published><updated>2007-06-27T02:36:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797354.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797354.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/06/27/797316.html</id><title type="text">C#连接数据库</title><summary type="text">&amp;#183;连接SQL Server2000string strConn = "server=.;database=pubs;uid=sa;pwd=sa;""."表示本地数据库,可以换成IP地址或服务器名如:"server=MAXWELL"(在.NET 2005中,只能用服务器名)&amp;#183;连接到AccessoleConn.ConnectionString = "provider=microso...</summary><published>2007-06-27T02:24:00Z</published><updated>2007-06-27T02:24:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797316.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797316.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/06/27/797235.html</id><title type="text">利用注册表禁止"查找"菜单及USB</title><summary type="text">修改注册表禁用USB打开注册表文件，依次展开&amp;#8220;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\usbehci&amp;#8221;双击右面的&amp;#8220;Start&amp;#8221;键，把编辑窗口中的&amp;#8220;数值数据&amp;#8221;改为&amp;#8220;4&amp;#8221;，把基数选择为&amp;#8220;十六进制&amp;#8221;就可以了。改好后重新启...</summary><published>2007-06-27T01:49:00Z</published><updated>2007-06-27T01:49:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797235.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797235.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/06/27/797225.html</id><title type="text">安装软件时不断提示需要重启</title><summary type="text">在安装.NET 与SQLSERVER2000时,有时会不停遇到需要重启的提示,此时需要在注册表中删除HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\pendingfilerenameoperations</summary><published>2007-06-27T01:44:00Z</published><updated>2007-06-27T01:44:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797225.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797225.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/06/27/797214.html</id><title type="text">FTP命令详解</title><summary type="text">来源：Linux知识宝库FTP命令是Internet用户使用最频繁的命令之一，不论是在DOS还是UNIX操作系统下使用 FTP，都会遇到大量的FTP内部命令。熟悉并灵活应用FTP的内部命令，可以大大方便使用者，并收到事半功倍之效。　　FTP的命令行格式为： ftp -v -d -i -n -g [主机名] ，其中　　-v 显示远程服务器的所有响应信息；　　-d 使用调试方式；　　-i 限制ftp的...</summary><published>2007-06-27T01:38:00Z</published><updated>2007-06-27T01:38:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797214.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797214.html"/></entry><entry><id>http://www.cnblogs.com/kevinton/archive/2007/06/27/797209.html</id><title type="text">windows运行命令集</title><summary type="text">winver---------检查Windows版本wmimgmt.msc----打开windows管理体系结构wupdmgr--------windows更新程序winver---------检查Windows版本wmimgmt.msc----打开windows管理体系结构wupdmgr--------windows更新程序wscript--------windows脚本宿主设置write---...</summary><published>2007-06-27T01:36:00Z</published><updated>2007-06-27T01:36:00Z</updated><author><name>无心放纵</name><uri>http://www.cnblogs.com/kevinton/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797209.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kevinton/archive/2007/06/27/797209.html"/></entry></feed>
